Code

fix #white in cgitb
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 5 Dec 2003 03:38:47 +0000 (03:38 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 5 Dec 2003 03:38:47 +0000 (03:38 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2015 57a73879-2fb5-44c3-a270-3262357dd7e2

BUILD.txt
CHANGES.txt
doc/index.txt
roundup/cgi/cgitb.py

index 427d9c83004377b4e7981e3a2c0ed359da056032..aeaf23c760ec970f11213da4e0ba5121dcfc6f41 100644 (file)
--- a/BUILD.txt
+++ b/BUILD.txt
@@ -21,9 +21,10 @@ running:
 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"
 
index 5a8d645af427a020cc3b8b90338359378ad5c093..fd2a449d930ca88d833dfb7a1c95a2a01a3358dc 100644 (file)
@@ -62,6 +62,8 @@ Fixed:
 - hard-coded python2.3-ism (socket.timeout) fixed
 - fixed activity displaying as future because of Date arithmetic fix in 0.6.3
   (sf bug 842027).
+- fixed #white in cgitb (thanks Henrik Levkowetz)
+
 
 2003-11-14 0.6.3
 Fixed:
index 819dd9e826064dfeaa8901666b09dcfd8d32172b..fac1c91c84424afecac01d4ede346178116d5506 100644 (file)
@@ -74,6 +74,7 @@ Sheila King,
 Bastian Kleineidam,
 Detlef Lannert,
 Andrey Lebedev,
+Henrik Levkowetz,
 Gordon McMillan,
 Patrick Ohly,
 Luke Opperman,
index d74426b1bed4105c2a0fbe08debd0d1d7ed5eefe..7435eea40ed5a1acdb3ebff78eb343dcb58436ea 100644 (file)
@@ -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.9 2003-12-05 03:36:34 richard Exp $
 
 __doc__ = """
 Extended CGI traceback handler by Ka-Ping Yee, <ping@lfw.org>.
@@ -163,7 +163,7 @@ def html(context=5):
             line = '<tt>%s&nbsp;%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: