Mercurial > p > roundup > code
changeset 1948:15a7aae3f34c maint-0.6
fix #white in cgitb
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 05 Dec 2003 03:38:47 +0000 |
| parents | 27b9292a2fe6 |
| children | 267e4ba89b54 |
| files | BUILD.txt CHANGES.txt roundup/cgi/cgitb.py |
| diffstat | 3 files changed, 7 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/BUILD.txt Thu Dec 04 23:10:41 2003 +0000 +++ b/BUILD.txt Fri Dec 05 03:38:47 2003 +0000 @@ -21,9 +21,10 @@ 7. python setup.py sdist (if you find sdist a little verbose, add "--quiet" to the end of the command) -8. unpack the new dist file in /tmp and a) run_test, and b) demo.py -9. Generate gpg signature with "gpg -a --detach-sign" and upload to - mechanicalcat.net +8. unpack the new dist file in /tmp then a) run_test.py and b) demo.py + with all available Python versions. +9. generate gpg signature with "gpg -a --detach-sign" and upload to + Sourceforge. 10. PyPI registration 11. tag the CVS for the release, eg. "cvs tag -R release-0-6-3"
--- a/CHANGES.txt Thu Dec 04 23:10:41 2003 +0000 +++ b/CHANGES.txt Fri Dec 05 03:38:47 2003 +0000 @@ -9,6 +9,7 @@ - fixed activity displaying as future because of Date arithmetic fix in 0.6.3 (sf bug 842027). - fix Windows service mode for roundup-server (sf bug 819890) +- fixed #white in cgitb (thanks Henrik Levkowetz) 2003-11-14 0.6.3
--- a/roundup/cgi/cgitb.py Thu Dec 04 23:10:41 2003 +0000 +++ b/roundup/cgi/cgitb.py Fri Dec 05 03:38:47 2003 +0000 @@ -1,7 +1,7 @@ # # This module was written by Ka-Ping Yee, <ping@lfw.org>. # -# $Id: cgitb.py,v 1.8 2003-01-21 23:54:28 richard Exp $ +# $Id: cgitb.py,v 1.8.2.1 2003-12-05 03:38:47 richard Exp $ __doc__ = """ Extended CGI traceback handler by Ka-Ping Yee, <ping@lfw.org>. @@ -163,7 +163,7 @@ line = '<tt>%s %s</tt>' % (number, pydoc.html.preformat(line)) if i == lnum: line = ''' -<table width="100%%" bgcolor="#white" cellspacing=0 cellpadding=0 border=0> +<table width="100%%" bgcolor="white" cellspacing=0 cellpadding=0 border=0> <tr><td>%s</td></tr></table>''' % line excerpt.append('\n' + line) if i == lnum:
