Mercurial > moin > 1.9
view wiki/server/moin.cgi @ 4280:31f221fe7460
Cosmetical changes (PEP8, file perms)
author | Florian Krupicka <florian.krupicka@googlemail.com> |
---|---|
date | Thu, 07 Aug 2008 20:46:33 +0200 |
parents | 65af466e6df0 |
children | d1be5f6846ca |
line wrap: on
line source
#!/usr/bin/env python # -*- coding: iso-8859-1 -*- """ MoinMoin - CGI/FCGI Driver script @copyright: 2000-2005 by Juergen Hermann <jh@web.de>, 2008 by MoinMoin:ThomasWaldmann, 2008 by MoinMoin:FlorianKrupicka @license: GNU GPL, see COPYING for details. """ import sys, os # a) Configuration of Python's code search path # If you already have set up the PYTHONPATH environment variable for the # stuff you see below, you don't need to do a1) and a2). # a1) Path of the directory where the MoinMoin code package is located. # Needed if you installed with --prefix=PREFIX or you didn't use setup.py. #sys.path.insert(0, 'PREFIX/lib/python2.3/site-packages') # a2) Path of the directory where wikiconfig.py / farmconfig.py is located. # See wiki/config/... for some sample config files. #sys.path.insert(0, '/path/to/wikiconfigdir') #sys.path.insert(0, '/path/to/farmconfigdir') # b) Configuration of moin's logging # If you have set up MOINLOGGINGCONF environment variable, you don't need this! # You also don't need this if you are happy with the builtin defaults. # See wiki/config/logging/... for some sample config files. #from MoinMoin import log #log.load_config('/path/to/logging_configuration_file') from MoinMoin.web.cgi_interface import run run()