blob: d03894ede5d0f9632183772f346b6a841b550bc7 [file] [log] [blame]
Guido van Rossum132e1891997-05-26 20:15:09 +00001FAQ Wizard
2----------
3
4Author: Guido van Rossum <guido@python.org>
5Version: 0.4
6Date: 26 May 1997
7
8
9This is a CGI program that maintains a user-editable FAQ. It uses RCS
10to keep track of changes to individual FAQ entries. It is fully
11configurable; everything you might want to change when using this
12program to maintain some other FAQ than the Python FAQ is contained in
13the configuration module, faqconf.py.
14
15Note that this is not an executable script; it's an importable module.
16The actual script in cgi-bin minimal.
17
18Files:
19
20faqw.py executable script to be edited and installed in cgi-bin
21faqwin.py main module, lives in same directory as FAQ entry files
22faqconf.py main configuration module
23faqcust.py additional local customization module (optional)
24
25--Guido van Rossum (home page: http://www.python.org/~guido/)