From 1dcc24404bd0414d44ae6e0d216f003d7b6c7af5 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 23 May 1997 18:53:06 +0000 Subject: Reorg TO DO list. Run rlog commands as pipe so we can cgi.escape(output). Added self.escape(), like cgi.escape() but also escapes " -- for use as double-quoted attribute values inside HTML tags. Fix complains from Mark Lutz: HTTP_HOST is not always set. --- Tools/faqwiz/faqmain.py | 62 ++++++++++++++++++++++++++++++++++++------------- 1 file changed, 46 insertions(+), 16 deletions(-) diff --git a/Tools/faqwiz/faqmain.py b/Tools/faqwiz/faqmain.py index 5c7d8b2..03f0a24 100644 --- a/Tools/faqwiz/faqmain.py +++ b/Tools/faqwiz/faqmain.py @@ -6,19 +6,29 @@ this file as a string constant. XXX TO DO +XXX User Features TO DO + - next/prev/index links in do_show? -- customize rcs command pathnames - explanation of editing somewhere -- various embellishments, GIFs, crosslinks, hints, etc. +- embellishments, GIFs, crosslinks, hints, etc. +- make references to other Q's and whole sections into links +- support adding annotations, too + +XXX Management Features TO DO + - create new sections - rearrange entries - delete entries -- send email on changes +- send email on changes? +- send email on ERRORS! - optional staging of entries until reviewed? - freeze entries -- username/password for editors -- Change references to other Q's and whole sections -- support adding annotations, too +- username/password for authors +- read section titles from a file (could be a Python file: import faqcustom) + +XXX Code organization TO DO + +- customize rcs command pathnames (and everything else) - make it more generic (so you can create your own FAQ) - more OO structure, e.g. add a class representing one FAQ entry @@ -27,7 +37,6 @@ XXX TO DO NAMEPAT = "faq??.???.htp" NAMEREG = "^faq\([0-9][0-9]\)\.\([0-9][0-9][0-9]\)\.htp$" -# Like so many other things, this should come from a file. SECTIONS = { "1": "General information and availability", "2": "Python in the real world", @@ -377,8 +386,11 @@ class FAQServer: return self.prologue("Info for %s" % name) print '
'
-	sys.stdout.flush()
-	os.system("/depot/gnu/plat/bin/rlog -r %s &1" % self.name)
+	p = os.popen("/depot/gnu/plat/bin/rlog -r %s &1" %
+		     self.name)
+	output = p.read()
+	p.close()
+	print cgi.escape(output)
 	print '
' print 'View full rcs log' % name @@ -390,8 +402,10 @@ class FAQServer: return self.prologue("RCS log for %s" % name) print '
'
-	sys.stdout.flush()
-	os.system("/depot/gnu/plat/bin/rlog %s &1" % self.name)
+	p = os.popen("/depot/gnu/plat/bin/rlog %s &1" % self.name)
+	output = p.read()
+	p.close()
+	print cgi.escape(output)
 	print '
' def checkin(self): @@ -508,8 +522,12 @@ class FAQServer: value = "%s;%s" % (author, email) import urllib value = urllib.quote(value) + try: + hostname = os.environ['HTTP_HOST'] + except KeyError: + hostname = os.environ['SERVER_NAME'] print "Set-Cookie: %s=%s; path=/cgi-bin/;" % (name, value), - print "domain=%s;" % os.environ['HTTP_HOST'], + print "domain=%s;" % hostname, print "expires=Sat, 01-Jan-2000 00:00:00 GMT" def get_cookie(self): @@ -541,7 +559,7 @@ class FAQServer: email = email or e print """ Title:
-
@@ -553,7 +571,19 @@ class FAQServer:
Log message (reason for the change):
- """ % (author, email, self.log) + """ % (self.escape(author), self.escape(email), self.escape(self.log)) + + def escape(self, s): + import regsub + if '&' in s: + s = regsub.gsub("&", "&", s) # Must be done first! + if '<' in s: + s = regsub.gsub("<", "<", s) + if '>' in s: + s = regsub.gsub(">", ">", s) + if '"' in s: + s = regsub.gsub('"', """, s) + return s def showheaders(self, headers): print "