ChangeSet ID: 1117230081481300942906277 CVSROOT: /cvsroot/wine Module name: wiki Changes by: dimi@sc8-pr-cvs1.sourceforge.net 2005/05/27 14:41:21
Removed files: . : mointwisted.py
Log message: Twisted is strange to setup, it's easier to go with mod_python.
Old revision New revision Changes Path 1.1 Removed +0 -0 wiki/mointwisted.py
Index: wiki/mointwisted.py diff -u -p wiki/mointwisted.py:1.1 /dev/null --- wiki/mointwisted.py 27 May 2005 21:41:21 -0000 +++ /dev/null 27 May 2005 21:41:21 -0000 @@ -1,76 +0,0 @@ -""" - twisted.web based wiki server - - Run this server with mointwisted script on Linux or Mac OS X, or - mointwisted.cmd on Windows. - - @copyright: 2004-2005 Thomas Waldmann, Oliver Graf, Nir Soffer - @license: GNU GPL, see COPYING for details. -""" - -# System path configuration - -import sys - -# Path of the directory where wikiconfig.py is located. -# YOU NEED TO CHANGE THIS TO MATCH YOUR SETUP. -sys.path.insert(0, '/path/to/wikiconfig') - -# Path to MoinMoin package, needed if you installed with --prefix=PREFIX -# or if you did not use setup.py -## sys.path.insert(0, 'PREFIX/lib/python2.3/site-packages') - -# Path to the directory where farmconfig is located (if different). -## sys.path.insert(0, '/path/to/farmconfig') - - -from MoinMoin.server.twistedmoin import TwistedConfig, makeApp - - -class Config(TwistedConfig): - - # Path to moin shared files (default '/usr/share/moin/wiki/htdocs') - docs = '/usr/share/moin/htdocs' - - # The server will run with as this user and group (default 'www-data') - user = 'www-data' - group = 'www-data' - - # Port (default 8080) - # To serve privileged port under 1024 you will have to run as root - port = 8080 - - # Interfaces (default ['']) - # The interfaces the server will listen to. - # [''] - listen to all interfaces defined on the server - # ['red.wikicolors.org', 'blue.wikicolors.org'] - listen to some - # If '' is in the list, other ignored. - interfaces = [''] - - # How many threads to use (default 10, max 20) - # The more threads you use, the more memory moin uses. All thread - # use one CPU, and will not run faster, but might be more responsive - # on a very busy server. - threads = 10 - - # Set logfile name (default commented) - # This is the *Apache compatible* log file, not the twisted-style logfile. - # Leaving this as None will have no Apache compatible log file. Apache - # compatible logfiles are useful because there are quite a few programs - # which analyze them and display statistics. - ## logPath = 'mointwisted.log' - - # Memory profile (default commented) - # Useful only if you are a developer or interested in moin memory usage - ## from MoinMoin.util.profile import TwistedProfiler - ## memoryProfile = TwistedProfiler('mointwisted', - ## requestsPerSample=100, - ## collect=0) - - # Hotshot profile (default commented) - ## hotshotProfile = "mointwisted.prof" - - -# Create the application -application = makeApp(Config) -