author | amit@thunder |
Sun, 21 Feb 2010 23:03:28 +0530 | |
changeset 10 | aff1900403ee |
parent 9 | ab616eb10878 |
child 11 | a7bd4bca6f6e |
permissions | -rwxr-xr-x |
6 | 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 |
||
9 | 30 |
print >>sys.stderr , "My Review App running" |
10 | 31 |
|
6 | 32 |
home_dir=os.getenv("HOME") |
33 |
if home_dir=='/home/amit': |
|
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' |
8083d21c0020
The first commit of all the required files for the review app
amit@thunder
parents:
diff
changeset
|
40 |
import django.core.handlers.wsgi |
8083d21c0020
The first commit of all the required files for the review app
amit@thunder
parents:
diff
changeset
|
41 |
application = django.core.handlers.wsgi.WSGIHandler() |
10 | 42 |
print >> sys.stderr , django.core.handlers.wsgi.WSGIRequest.GET |
43 |
_application = django.core.handlers.wsgi.WSGIHandler() |
|
44 |
#print >> sys.stderr , django.core.handlers.wsgi.WSGIRequest.GET |
|
45 |
def application(environ, start_response): |
|
46 |
print >> sys.stderr ,environ['PATH_INFO'] |
|
47 |
||
48 |
return _application(environ, start_response) |
|
0
8083d21c0020
The first commit of all the required files for the review app
amit@thunder
parents:
diff
changeset
|
49 |
|
8083d21c0020
The first commit of all the required files for the review app
amit@thunder
parents:
diff
changeset
|
50 |
|
8083d21c0020
The first commit of all the required files for the review app
amit@thunder
parents:
diff
changeset
|
51 |