blob: d972f61e058ecdf978cf4371bcb198fa64e3900b [file] [log] [blame]
Guido van Rossum72fdef01997-05-26 05:43:37 +00001#! /usr/local/bin/python
Guido van Rossumf1ead1a1997-08-28 02:38:01 +00002
3"""FAQ wizard bootstrap."""
4
5# This is a longer version of the bootstrap script given at the end of
6# faqwin.py; it prints timing statistics at the end of the regular CGI
7# script's output (so you can monitor how it is doing).
8
9# This script should be placed in your cgi-bin directory and made
10# executable.
11
12# You need to edit the first line and the lines that define FAQDIR and
13# SRCDIR, below: change /usr/local/bin/python to where your Python
14# interpreter lives, change the value for FAQDIR to where your FAQ
15# lives, and change the value for SRCDIR to where your faqwiz.py
16# module lives. The faqconf.py and faqcust.py files live there, too.
17
Guido van Rossum88c6bdf1998-04-03 22:27:04 +000018import os
19t1 = os.times() # If this doesn't work, just get rid of the timing code!
Guido van Rossum72fdef01997-05-26 05:43:37 +000020try:
Guido van Rossum00494bf1997-05-30 11:50:36 +000021 FAQDIR = "/usr/people/guido/python/FAQ"
Guido van Rossumf1ead1a1997-08-28 02:38:01 +000022 SRCDIR = "/usr/people/guido/python/src/Tools/faqwiz"
Christian Heimes05e8be12008-02-23 18:30:17 +000023 import os, sys
Guido van Rossum00494bf1997-05-30 11:50:36 +000024 os.chdir(FAQDIR)
Guido van Rossum193a11e1997-08-14 20:18:18 +000025 sys.path.insert(0, SRCDIR)
Guido van Rossum72fdef01997-05-26 05:43:37 +000026 import faqwiz
Guido van Rossumb940e112007-01-10 16:19:56 +000027except SystemExit as n:
Guido van Rossum72fdef01997-05-26 05:43:37 +000028 sys.exit(n)
29except:
Neal Norwitzac3625f2006-03-17 05:49:33 +000030 t, v, tb = sys.exc_info()
Collin Winter6afaeb72007-08-03 17:06:41 +000031 print()
Guido van Rossum72fdef01997-05-26 05:43:37 +000032 import cgi
33 cgi.print_exception(t, v, tb)