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