-
-
Notifications
You must be signed in to change notification settings - Fork 34.5k
Expand file tree
/
Copy pathREADME
More file actions
29 lines (21 loc) · 972 Bytes
/
README
File metadata and controls
29 lines (21 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
FAQ Wizard
----------
Author: Guido van Rossum <[email protected]>
Version: 0.4
Date: 26 May 1997
This is a CGI program that maintains a user-editable FAQ. It uses RCS
to keep track of changes to individual FAQ entries. It is fully
configurable; everything you might want to change when using this
program to maintain some other FAQ than the Python FAQ is contained in
the configuration module, faqconf.py.
Note that this is not an executable script; it's an importable module.
The actual script in cgi-bin is minimal.
Files:
faqw.py executable script to be edited and installed in cgi-bin
faqwin.py main module, lives in same directory as FAQ entry files
faqconf.py main configuration module
faqcust.py additional local customization module (optional)
The most important setup consideration is that the directory and the
RCS subdirectory must be world-writable, since the CGI script runs as
nobody!
--Guido van Rossum (home page: http://www.python.org/~guido/)