From 4888c7ece5ce2a674819141bcdc0ae284e435c56 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 23 May 1997 15:55:19 +0000 Subject: Added section titles (for now, hardcoded in the file). --- Tools/faqwiz/faqmain.py | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/Tools/faqwiz/faqmain.py b/Tools/faqwiz/faqmain.py index d105d2c..82c4657 100644 --- a/Tools/faqwiz/faqmain.py +++ b/Tools/faqwiz/faqmain.py @@ -7,7 +7,6 @@ this file as a string constant. XXX TO DO - next/prev/index links in do_show? -- should have files containing section headers - customize rcs command pathnames - explanation of editing somewhere - various embellishments, GIFs, crosslinks, hints, etc. @@ -28,6 +27,16 @@ XXX TO DO NAMEPAT = "faq??.???.htp" NAMEREG = "^faq\([0-9][0-9]\)\.\([0-9][0-9][0-9]\)\.htp$" +SECTIONS = { + "1": "General information and availability", + "2": "Python in the real world", + "3": "Building Python and Other Known Bugs", + "4": "Programming in Python", + "5": "Extending Python", + "6": "Python's design", + "7": "Using Python on non-UNIX platforms", +} + class FAQServer: def __init__(self): @@ -46,7 +55,7 @@ class FAQServer: KEYS = ['req', 'query', 'name', 'text', 'commit', 'title', 'author', 'email', 'log', 'section', 'number', 'add', - 'version'] + 'version', 'edit'] def __getattr__(self, key): if key not in self.KEYS: @@ -108,7 +117,11 @@ class FAQServer: """ % section section = nsec - print "

Section %s

" % section + if SECTIONS.has_key(section): + stitle = SECTIONS[section] + else: + stitle = "" + print "

Section %s. %s

" % (section, stitle) print "