SEESenv/web/hgbook/run.wsgi
author amit@thunder
Sun, 21 Feb 2010 13:14:37 +0530
changeset 6 1ce9b33fb6ff
parent 3 6cee07c589cb
child 9 ab616eb10878
permissions -rwxr-xr-x
sorted the problem related to paths
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
     1
import os
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
     2
home_dir=os.getenv("HOME")
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
     3
if home_dir=='/home/amit':
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
     4
    ALLDIRS = ['/home/amit/SEES-hacks/SEESenv/lib/python2.6/site-packages']
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
     5
else:
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
     6
    ALLDIRS = ['/home/hg/repos/SEES-hacks/SEESenv/lib/python2.6/site-packages']
3
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
     7
import sys 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
     8
import site 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
     9
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    10
# Remember original sys.path.
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    11
prev_sys_path = list(sys.path) 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    12
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    13
# Add each new site-packages directory.
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    14
for directory in ALLDIRS:
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    15
  site.addsitedir(directory)
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    16
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    17
# Reorder sys.path so new directories at the front.
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    18
new_sys_path = [] 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    19
for item in list(sys.path): 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    20
    if item not in prev_sys_path: 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    21
        new_sys_path.append(item) 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    22
        sys.path.remove(item) 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    23
sys.path[:0] = new_sys_path 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    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
6
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
    28
home_dir=os.getenv("HOME")
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
    29
if home_dir=='/home/amit':
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
    30
    sys.path.append('/home/amit/SEES-hacks/SEESenv/web/')
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
    31
    sys.path.append('/home/amit/SEES-hacks/SEESenv/web/hgbook/comments')
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
    32
else:
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
    33
    sys.path.append('/home/hg/repos/SEES-hacks/SEESenv/web/')
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
    34
    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
    35
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
    36
import django.core.handlers.wsgi
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    37
application = django.core.handlers.wsgi.WSGIHandler()
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    38
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    39
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    40
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    41