Code

Checklist was using wrong name.
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 1 Aug 2001 03:52:23 +0000 (03:52 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 1 Aug 2001 03:52:23 +0000 (03:52 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@177 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/htmltemplate.py

index 34c031bb52ed6beb748b6f3856dc4c01c33bf4ce..3d28d117aaff7acad697b58d77071a43f12b86b8 100644 (file)
@@ -8,11 +8,11 @@ Features:
  . Added time logging and file uploading to the templates.
 
 Fixed:
- . Fixed the agument handling for the roundup-admin find command.
- . Fixed handling of summary when no note supplied for newblah. Again.
- . Fixed detection of no form in htmltemplate Field display.
- . Fixed the 2.1-specific gmtime() (no arg) call in roundup.date.
  (thanks Paul Wright)
+ . Argument handling for the roundup-admin find command.
+ . Handling of summary when no note supplied for newblah. Again.
+ . Detection of no form in htmltemplate Field display.
+ . Checklist html template command was setting wrong name.
. 2.1-specific gmtime() (no arg) call in roundup.date. (thanks Paul Wright)
 
 
 2001-07-30 - 0.2.3
index 1ce86ca759890ee3297bce19362493ed7122a69d..ed0fefff9b5ae62f6a6cac876c86aca879395b78 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: htmltemplate.py,v 1.15 2001-07-30 08:12:17 richard Exp $
+# $Id: htmltemplate.py,v 1.16 2001-08-01 03:52:23 richard Exp $
 
 import os, re, StringIO, urllib, cgi, errno
 
@@ -291,7 +291,7 @@ class Checklist(Base):
                 else:
                     checked = ''
                 l.append('%s:<input type="checkbox" %s name="%s" value="%s">'%(
-                    option, checked, propclass.classname, option))
+                    option, checked, property, option))
             return '\n'.join(l)
         return '[Checklist: not a link]'
 
@@ -723,6 +723,9 @@ def newitem(client, templates, db, classname, form, replace=re.compile(
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.15  2001/07/30 08:12:17  richard
+# Added time logging and file uploading to the templates.
+#
 # Revision 1.14  2001/07/30 06:17:45  richard
 # Features:
 #  . Added ability for cgi newblah forms to indicate that the new node