Skip to content

Commit d2a8bfd

Browse files
author
Richard Jones
committed
*** empty log message ***
1 parent e8f0e6a commit d2a8bfd

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

TODO.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ This file contains items that need doing before the next release:
33
Required:
44
- documentation of i18n: TAL tags for translation
55
- translation databases in trackers
6-
- implementing of logging for roundup-server, including command-line
7-
switches
6+
- implementing logging for roundup-server, including command-line switches
7+
- per-property permission spec
88

99

1010
Optionally:

doc/index.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ Frank Gibbons,
8888
Johannes Gijsbers,
8989
Gus Gollings,
9090
Dan Grassi,
91+
Robin Green,
9192
Engelbert Gruber,
9293
Juergen Hermann,
9394
Uwe Hoffmann,

roundup/cgi/templating.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1163,7 +1163,11 @@ def plain(self, escape=0, hyperlink=0):
11631163
- "hyperlink" turns on/off in-text hyperlinking of URLs, email
11641164
addresses and designators
11651165
'''
1166-
self.view_check()
1166+
if self._name == 'id':
1167+
pass
1168+
elif self._class
1169+
else:
1170+
self.view_check()
11671171

11681172
if self._value is None:
11691173
return ''

0 commit comments

Comments
 (0)