You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
## |
|
## trac.wsgi -- Apache WSGI Frontend Script |
|
## |
|
|
|
import sys |
|
sys.stdout = sys.stderr |
|
|
|
import os |
|
os.environ['TRAC_ENV_PARENT_DIR'] = '@l_prefix@/var/trac/env' |
|
os.environ['PYTHON_EGG_CACHE'] = '@l_prefix@/var/trac/cache' |
|
|
|
import trac.web.main |
|
application = trac.web.main.dispatch_request |
|
|
|
|