From a4d095d9f84b50a6717b150179562fdd68a77113 Mon Sep 17 00:00:00 2001 From: richard Date: Fri, 5 Dec 2003 03:38:47 +0000 Subject: [PATCH] fix #white in cgitb git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2015 57a73879-2fb5-44c3-a270-3262357dd7e2 --- BUILD.txt | 7 ++++--- CHANGES.txt | 2 ++ doc/index.txt | 1 + roundup/cgi/cgitb.py | 4 ++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/BUILD.txt b/BUILD.txt index 427d9c8..aeaf23c 100644 --- 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" diff --git a/CHANGES.txt b/CHANGES.txt index 5a8d645..fd2a449 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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: diff --git a/doc/index.txt b/doc/index.txt index 819dd9e..fac1c91 100644 --- a/doc/index.txt +++ b/doc/index.txt @@ -74,6 +74,7 @@ Sheila King, Bastian Kleineidam, Detlef Lannert, Andrey Lebedev, +Henrik Levkowetz, Gordon McMillan, Patrick Ohly, Luke Opperman, diff --git a/roundup/cgi/cgitb.py b/roundup/cgi/cgitb.py index d74426b..7435eea 100644 --- a/roundup/cgi/cgitb.py +++ b/roundup/cgi/cgitb.py @@ -1,7 +1,7 @@ # # This module was written by Ka-Ping Yee, . # -# $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, . @@ -163,7 +163,7 @@ def html(context=5): line = '%s %s' % (number, pydoc.html.preformat(line)) if i == lnum: line = ''' - +
%s
''' % line excerpt.append('\n' + line) if i == lnum: -- 2.30.2