summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-05-22 15:49:23 (GMT)
committerGuido van Rossum <guido@python.org>1997-05-22 15:49:23 (GMT)
commit64099e955d60c761a438fa8bc634390c6598d904 (patch)
tree89411d8f0ab59c45ef1214387ca2c16a2d76254c /Tools
parented531fd9df252b93d75593e5977cfd49eb36ae24 (diff)
downloadcpython-64099e955d60c761a438fa8bc634390c6598d904.zip
cpython-64099e955d60c761a438fa8bc634390c6598d904.tar.gz
cpython-64099e955d60c761a438fa8bc634390c6598d904.tar.bz2
HTML formatting nits.
Added "Reload this entry" link to edit complete screen.
Diffstat (limited to 'Tools')
-rw-r--r--Tools/faqwiz/faqmain.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/Tools/faqwiz/faqmain.py b/Tools/faqwiz/faqmain.py
index a202e30..9fddb9d 100644
--- a/Tools/faqwiz/faqmain.py
+++ b/Tools/faqwiz/faqmain.py
@@ -465,6 +465,8 @@ class FAQServer:
""" % sts
if output:
print "<PRE>%s</PRE>" % cgi.escape(output)
+ print '<HR>'
+ print '<A HREF="faq.py?req=show&name=%s">Reload this entry.</A>' % name
def showedit(self, name, title, text):
print """
@@ -556,14 +558,14 @@ class FAQServer:
except KeyError:
pass
else:
- s = '(last changed on %s by <A HREF="%s">%s</A>)'
+ s = '/ Last changed on %s by <A HREF="%s">%s</A>'
print s % (date, email, author)
print '<P>'
print "<HR>"
def getversion(self, name):
p = os.popen("/depot/gnu/plat/bin/rlog -h %s </dev/null 2>&1" % name)
- head = ""
+ head = "*new*"
while 1:
line = p.readline()
if not line:
@@ -594,7 +596,7 @@ class FAQServer:
<HR>
<A HREF="http://www.python.org">Python home</A> /
<A HREF="faq.py">FAQ home</A> /
- <A HREF="mailto:guido@python.org">GvR</A>
+ Feedback to <A HREF="mailto:guido@python.org">GvR</A>
</BODY>
</HTML>
'''