Skip to content

Commit fdaf766

Browse files
author
Richard Jones
committed
oops
1 parent e1672f1 commit fdaf766

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

doc/customizing.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Customising Roundup
33
===================
44

5-
:Version: $Revision: 1.104 $
5+
:Version: $Revision: 1.105 $
66

77
.. This document borrows from the ZopeBook section on ZPT. The original is at:
88
http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -1023,7 +1023,7 @@ Two special form values are supported for backwards compatibility:
10231023
This is equivalent to::
10241024

10251025
@link@messages=msg-1
1026-
@msg-1@content=value
1026+
msg-1@content=value
10271027

10281028
except that in addition, the "author" and "date" properties of
10291029
"msg-1" are set to the userid of the submitter, and the current
@@ -1033,7 +1033,7 @@ Two special form values are supported for backwards compatibility:
10331033
This is equivalent to::
10341034

10351035
@link@files=file-1
1036-
@file-1@content=value
1036+
file-1@content=value
10371037

10381038
The String content value is handled as described above for file
10391039
uploads.

roundup/cgi/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: client.py,v 1.145 2003-11-12 01:00:59 richard Exp $
1+
# $Id: client.py,v 1.146 2003-11-13 05:56:48 richard Exp $
22

33
__doc__ = """
44
WWW request handler (also used in the stand-alone server).
@@ -1471,7 +1471,7 @@ def parsePropsFromForm(self, num_re=re.compile('^\d+$')):
14711471
This is equivalent to::
14721472
14731473
@link@messages=msg-1
1474-
@msg-1@content=value
1474+
msg-1@content=value
14751475
14761476
except that in addition, the "author" and "date"
14771477
properties of "msg-1" are set to the userid of the
@@ -1481,7 +1481,7 @@ def parsePropsFromForm(self, num_re=re.compile('^\d+$')):
14811481
This is equivalent to::
14821482
14831483
@link@files=file-1
1484-
@file-1@content=value
1484+
file-1@content=value
14851485
14861486
The String content value is handled as described above for
14871487
file uploads.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: setup.py,v 1.57 2003-10-25 22:53:26 richard Exp $
19+
# $Id: setup.py,v 1.58 2003-11-13 05:56:48 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -158,7 +158,7 @@ def main():
158158
'doc/roundup-mailgw.1', 'doc/roundup-server.1']))
159159

160160
# add the templates to the data files lists
161-
from roundup.admin import listTemplates
161+
from roundup.init import listTemplates
162162
templates = [t['path'] for t in listTemplates('templates').values()]
163163
for tdir in templates:
164164
# scan for data files

0 commit comments

Comments
 (0)