summaryrefslogtreecommitdiffstats
path: root/Tools/faqwiz
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-05-26 20:15:09 (GMT)
committerGuido van Rossum <guido@python.org>1997-05-26 20:15:09 (GMT)
commit132e1892e138b9405ca1be1cb255434da452f4ce (patch)
treefca1df244b64641079de103f9063ecb8581cdea8 /Tools/faqwiz
parent7a241071d4bb62663010369395bcdb03ed7d8a6f (diff)
downloadcpython-132e1892e138b9405ca1be1cb255434da452f4ce.zip
cpython-132e1892e138b9405ca1be1cb255434da452f4ce.tar.gz
cpython-132e1892e138b9405ca1be1cb255434da452f4ce.tar.bz2
Initial revision
Diffstat (limited to 'Tools/faqwiz')
-rw-r--r--Tools/faqwiz/README25
1 files changed, 25 insertions, 0 deletions
diff --git a/Tools/faqwiz/README b/Tools/faqwiz/README
new file mode 100644
index 0000000..d03894e
--- /dev/null
+++ b/Tools/faqwiz/README
@@ -0,0 +1,25 @@
+FAQ Wizard
+----------
+
+Author: Guido van Rossum <guido@python.org>
+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 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)
+
+--Guido van Rossum (home page: http://www.python.org/~guido/)