- Timestamp:
- 02/03/08 19:04:26 (17 years ago)
- Location:
- pykota/trunk/cgi-bin
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/cgi-bin/dumpykota.cgi
r3295 r3333 28 28 import cgi 29 29 import urllib 30 from xml.sax import saxutils 30 31 31 32 import pykota.appinit … … 136 137 content.append(u"<br />") 137 138 content.append(self.htmlSumCheckbox(self.options.get("sum", ""))) 138 content.append(footer % (_("Dump"), version.__doc__, version.__years__, version.__author__, version.__gplblurb__)) 139 content.append(footer % (_("Dump"), 140 version.__doc__, 141 version.__years__, 142 version.__author__, 143 saxutils.escape(version.__gplblurb__))) 139 144 for c in content : 140 145 sys.stdout.write(c.encode(self.charset, "replace")) -
pykota/trunk/cgi-bin/printquota.cgi
r3295 r3333 28 28 import cgi 29 29 import urllib 30 from xml.sax import saxutils 30 31 31 32 from mx import DateTime … … 104 105 _("Report")) ] 105 106 content.append(self.body) 106 content.append(footer % (_("Report"), version.__doc__, version.__years__, version.__author__, version.__gplblurb__)) 107 content.append(footer % (_("Report"), 108 version.__doc__, 109 version.__years__, 110 version.__author__, 111 saxutils.escape(version.__gplblurb__))) 107 112 for c in content : 108 113 sys.stdout.write(c.encode(self.charset, "replace")) -
pykota/trunk/cgi-bin/pykotme.cgi
r3295 r3333 29 29 import urllib 30 30 import cStringIO 31 from xml.sax import saxutils 31 32 32 33 import pykota.appinit … … 105 106 _("Quote")) ] 106 107 content.append(self.body) 107 content.append(footer % (_("Quote"), version.__doc__, version.__years__, version.__author__, version.__gplblurb__)) 108 content.append(footer % (_("Quote"), 109 version.__doc__, 110 version.__years__, 111 version.__author__, 112 saxutils.escape(version.__gplblurb__))) 108 113 for c in content : 109 114 sys.stdout.write(c.encode(self.charset, "replace"))