~ubuntu-branches/ubuntu/natty/moin/natty-updates

« back to all changes in this revision

Viewing changes to wikiserver.py

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-06-22 21:17:13 UTC
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20080622211713-inlv5k4eifxckelr
ImportĀ upstreamĀ versionĀ 1.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
# a1) Path of the directory where the MoinMoin code package is located.
16
16
#     Needed if you installed with --prefix=PREFIX or you didn't use setup.py.
17
 
#sys.path.insert(0, 'PREFIX/lib/python2.4/site-packages')
 
17
#sys.path.insert(0, 'PREFIX/lib/python2.3/site-packages')
18
18
 
19
19
# a2) Path of the directory where wikiconfig.py / farmconfig.py is located.
20
20
moinpath = os.path.abspath(os.path.normpath(os.path.dirname(sys.argv[0])))
28
28
from MoinMoin import log
29
29
log.load_config('wikiserverlogging.conf')
30
30
 
 
31
# Debug mode - show detailed error reports
 
32
#os.environ['MOIN_DEBUG'] = '1'
 
33
 
31
34
from MoinMoin.script import MoinScript
32
35
 
33
36
if __name__ == '__main__':