author | amit@thunder |
Mon, 22 Feb 2010 17:49:19 +0530 | |
changeset 18 | 9162df2ef805 |
parent 16 | 2e3d2cadbcb6 |
child 19 | a9636afd4c95 |
permissions | -rw-r--r-- |
9 | 1 |
import os |
2 |
home_dir=os.getenv("HOME") |
|
3 |
if home_dir=='/home/amit': |
|
4 |
ALLDIRS = ['/home/amit/SEES-hacks/SEESenv/lib/python2.6/site-packages'] |
|
5 |
else: |
|
6 |
ALLDIRS = ['/home/hg/repos/SEES-hacks/SEESenv/lib/python2.6/site-packages'] |
|
3 | 7 |
import sys |
8 |
import site |
|
9 |
||
10 |
# Remember original sys.path. |
|
11 |
prev_sys_path = list(sys.path) |
|
12 |
||
13 |
# Add each new site-packages directory. |
|
14 |
for directory in ALLDIRS: |
|
15 |
site.addsitedir(directory) |
|
16 |
||
17 |
# Reorder sys.path so new directories at the front. |
|
18 |
new_sys_path = [] |
|
19 |
for item in list(sys.path): |
|
20 |
if item not in prev_sys_path: |
|
21 |
new_sys_path.append(item) |
|
22 |
sys.path.remove(item) |
|
23 |
sys.path[:0] = new_sys_path |
|
24 |
||
0
8083d21c0020
The first commit of all the required files for the review app
amit@thunder
parents:
diff
changeset
|
25 |
import os |
8083d21c0020
The first commit of all the required files for the review app
amit@thunder
parents:
diff
changeset
|
26 |
import sys |
8083d21c0020
The first commit of all the required files for the review app
amit@thunder
parents:
diff
changeset
|
27 |
import django |
10 | 28 |
|
29 |
||
30 |
print >>sys.stderr , "My Review App running" |
|
31 |
||
6 | 32 |
home_dir=os.getenv("HOME") |
16 | 33 |
if home_dir=='/home/amit' or home_dir==None: |
6 | 34 |
sys.path.append('/home/amit/SEES-hacks/SEESenv/web/') |
35 |
sys.path.append('/home/amit/SEES-hacks/SEESenv/web/hgbook/comments') |
|
36 |
else: |
|
37 |
sys.path.append('/home/hg/repos/SEES-hacks/SEESenv/web/') |
|
38 |
sys.path.append('/home/hg/repos/SEES-hacks/SEESenv/web/hgbook/comments') |
|
0
8083d21c0020
The first commit of all the required files for the review app
amit@thunder
parents:
diff
changeset
|
39 |
os.environ['DJANGO_SETTINGS_MODULE'] = 'hgbook.settings' |
11 | 40 |
import hgbook |
1
672eaaab9204
Added some new html files that failed earlier during change from rst
amit@thunder
parents:
0
diff
changeset
|
41 |
import django.core.handlers.wsgi |
16 | 42 |
print >> sys.stderr , hgbook |
43 |
print >> sys.stderr , django.core.handlers.wsgi.WSGIRequest.GET |
|
0
8083d21c0020
The first commit of all the required files for the review app
amit@thunder
parents:
diff
changeset
|
44 |
application = django.core.handlers.wsgi.WSGIHandler() |
10 | 45 |
print >> sys.stderr , django.core.handlers.wsgi.WSGIRequest.GET |
11 | 46 |
_application = django.core.handlers.wsgi.WSGIHandler() |
47 |
#print >> sys.stderr , django.core.handlers.wsgi.WSGIRequest.GET |
|
48 |
def application(environ, start_response): |
|
49 |
print >> sys.stderr ,environ['PATH_INFO'] |
|
50 |
||
51 |
return _application(environ, start_response) |
|
0
8083d21c0020
The first commit of all the required files for the review app
amit@thunder
parents:
diff
changeset
|
52 |
|
8083d21c0020
The first commit of all the required files for the review app
amit@thunder
parents:
diff
changeset
|
53 |
|
8083d21c0020
The first commit of all the required files for the review app
amit@thunder
parents:
diff
changeset
|
54 |