From 5183206882d802f4cb3bff855d0afadbd6a4ccf3 Mon Sep 17 00:00:00 2001 From: richard Date: Wed, 1 Aug 2001 03:52:23 +0000 Subject: [PATCH] Checklist was using wrong name. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@177 57a73879-2fb5-44c3-a270-3262357dd7e2 --- CHANGES.txt | 10 +++++----- roundup/htmltemplate.py | 7 +++++-- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 34c031b..3d28d11 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 diff --git a/roundup/htmltemplate.py b/roundup/htmltemplate.py index 1ce86ca..ed0feff 100644 --- a/roundup/htmltemplate.py +++ b/roundup/htmltemplate.py @@ -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:'%( - 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 -- 2.30.2