From c6447527aaea20527a57c0953ff4078418ff7177 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 23 May 1997 00:50:01 +0000 Subject: [PATCH] Minor change: add prologue() calls to do_info and do_rlog; in do_recent, don't display entries without a last-changed-date. --- Tools/faqwiz/faqmain.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Tools/faqwiz/faqmain.py b/Tools/faqwiz/faqmain.py index bb89cca3ae9..6e00acf48a2 100644 --- a/Tools/faqwiz/faqmain.py +++ b/Tools/faqwiz/faqmain.py @@ -21,10 +21,9 @@ - freeze entries - username/password for editors - Change references to other Q's and whole sections -- Browse should display menu of 7 sections & let you pick - (or frontpage should have the option to browse a section or all) - support adding annotations, too - make it more generic (so you can create your own FAQ) +- more OO structure, e.g. add a class representing one FAQ entry """ @@ -198,7 +197,7 @@ def do_recent(self): n = 0 for (mtime, name) in list: headers, text = self.read(name) - if headers: + if headers and headers.has_key('last-changed-date'): self.show(name, headers['title'], text) n = n+1 if not n: @@ -356,6 +355,7 @@ def do_info(self): if not headers: self.error("Invalid file name", name) return + self.prologue("Info for %s" % name) print '
'
 	sys.stdout.flush()
 	os.system("/depot/gnu/plat/bin/rlog -r %s &1" % self.name)
@@ -368,6 +368,7 @@ def do_rlog(self):
 	if not headers:
 	    self.error("Invalid file name", name)
 	    return
+	self.prologue("RCS log for %s" % name)
 	print '
'
 	sys.stdout.flush()
 	os.system("/depot/gnu/plat/bin/rlog %s &1" % self.name)