We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9abf43a commit f5e0ecdCopy full SHA for f5e0ecd
CHANGES.txt
@@ -5,6 +5,7 @@ are given with the most recent entry first.
5
Fixed:
6
- mailgw handling of subject-line errors
7
- allow serving of non-"file"-Class file content (eg. paper_file)
8
+- allow negative (new) ids in getItem
9
10
11
2003-12-17 0.6.4
roundup/cgi/templating.py
@@ -347,7 +347,7 @@ def designator(self):
347
''' Return this class' designator (classname) '''
348
return self._classname
349
350
- def getItem(self, itemid, num_re=re.compile('\d+')):
+ def getItem(self, itemid, num_re=re.compile('-?\d+')):
351
''' Get an item of this class by its item id.
352
'''
353
# make sure we're looking at an itemid
0 commit comments