diff --git a/Tools/faqwiz/faqmain.py b/Tools/faqwiz/faqmain.py index 5c7d8b2713f..03f0a241e36 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: