summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c9071f8)
raw | patch | inline | side by side (parent: c9071f8)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 31 Mar 2004 23:45:28 +0000 (23:45 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 31 Mar 2004 23:45:28 +0000 (23:45 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2240 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
roundup/cgi/templating.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index b48d2d246969686b71af9d33414634b46d9fa82b..7ed151b6055ac769831eb4bbb9048610ee5f24fb 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
places (thanks Toby Sargeant)
- MySQL and Postgresql use BOOL/BOOLEAN for Boolean types
- OTK generation was busted (thanks Stuart D. Gathman)
+- handle Boolean values in history HTML display
2004-03-27 0.7.0b2
index 372b8fea2a63eb9d0023a55af6041ea8364a536b..50f612a0e6c3e0162136c5f541943f92b91c710c 100644 (file)
timezone = self._db.getUserTimezone()
if direction == 'descending':
history.reverse()
+ # pre-load the history with the current state
for prop_n in self._props.keys():
prop = self[prop_n]
- if isinstance(prop, HTMLProperty):
- current[prop_n] = prop.plain()
- # make link if hrefable
- if (self._props.has_key(prop_n) and
- isinstance(self._props[prop_n], hyperdb.Link)):
- classname = self._props[prop_n].classname
- try:
- template = find_template(self._db.config.TEMPLATES,
- classname, 'item')
- if template[1].startswith('_generic'):
- raise NoTemplate, 'not really...'
- except NoTemplate:
- pass
- else:
- id = self._klass.get(self._nodeid, prop_n, None)
- current[prop_n] = '<a href="%s%s">%s</a>'%(
- classname, id, current[prop_n])
+ if not isinstance(prop, HTMLProperty):
+ continue
+ current[prop_n] = prop.plain()
+ # make link if hrefable
+ if (self._props.has_key(prop_n) and
+ isinstance(self._props[prop_n], hyperdb.Link)):
+ classname = self._props[prop_n].classname
+ try:
+ template = find_template(self._db.config.TEMPLATES,
+ classname, 'item')
+ if template[1].startswith('_generic'):
+ raise NoTemplate, 'not really...'
+ except NoTemplate:
+ pass
+ else:
+ id = self._klass.get(self._nodeid, prop_n, None)
+ current[prop_n] = '<a href="%s%s">%s</a>'%(
+ classname, id, current[prop_n])
for id, evt_date, user, action, args in history:
date_s = str(evt_date.local(timezone)).replace("."," ")
current[k] = str(d)
elif isinstance(prop, hyperdb.Interval) and args[k]:
- d = date.Interval(args[k])
- cell.append('%s: %s'%(k, str(d)))
+ val = str(date.Interval(args[k]))
+ cell.append('%s: %s'%(k, val))
if current.has_key(k):
cell[-1] += ' -> %s'%current[k]
- current[k] = str(d)
+ current[k] = val
elif isinstance(prop, hyperdb.String) and args[k]:
- cell.append('%s: %s'%(k, cgi.escape(args[k])))
+ val = cgi.escape(args[k])
+ cell.append('%s: %s'%(k, val))
+ if current.has_key(k):
+ cell[-1] += ' -> %s'%current[k]
+ current[k] = val
+
+ elif isinstance(prop, hyperdb.Boolean) and args[k] is not None:
+ val = args[k] and 'Yes' or 'No'
+ cell.append('%s: %s'%(k, val))
if current.has_key(k):
cell[-1] += ' -> %s'%current[k]
- current[k] = cgi.escape(args[k])
+ current[k] = val
elif not args[k]:
if current.has_key(k):