From: Guido van Rossum Date: Thu, 22 May 1997 15:49:23 +0000 (+0000) Subject: HTML formatting nits. X-Git-Tag: v1.5a3~492 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=64099e955d60c761a438fa8bc634390c6598d904;p=python HTML formatting nits. Added "Reload this entry" link to edit complete screen. --- diff --git a/Tools/faqwiz/faqmain.py b/Tools/faqwiz/faqmain.py index a202e30e09..9fddb9d567 100644 --- a/Tools/faqwiz/faqmain.py +++ b/Tools/faqwiz/faqmain.py @@ -465,6 +465,8 @@ class FAQServer: """ % sts if output: print "
%s
" % cgi.escape(output) + print '
' + print 'Reload this entry.' % name def showedit(self, name, title, text): print """ @@ -556,14 +558,14 @@ class FAQServer: except KeyError: pass else: - s = '(last changed on %s by %s)' + s = '/ Last changed on %s by %s' print s % (date, email, author) print '

' print "


" def getversion(self, name): p = os.popen("/depot/gnu/plat/bin/rlog -h %s &1" % name) - head = "" + head = "*new*" while 1: line = p.readline() if not line: @@ -594,7 +596,7 @@ class FAQServer:
Python home / FAQ home / - GvR + Feedback to GvR '''