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 -rw-r--r--
sorted the problem related to paths
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
     1
ALLDIRS = ['/home/amit/SEES-hacks/SEESenv/lib/python2.6/site-packages']
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
     2
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
     3
import sys 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
     4
import site 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
     5
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
     6
# Remember original sys.path.
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
     7
prev_sys_path = list(sys.path) 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
     8
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
     9
# Add each new site-packages directory.
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    10
for directory in ALLDIRS:
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    11
  site.addsitedir(directory)
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
# Reorder sys.path so new directories at the front.
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    14
new_sys_path = [] 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    15
for item in list(sys.path): 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    16
    if item not in prev_sys_path: 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    17
        new_sys_path.append(item) 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    18
        sys.path.remove(item) 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    19
sys.path[:0] = new_sys_path 
6cee07c589cb Changes in path of some of the files ...
amit@thunder
parents: 2
diff changeset
    20
0
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    21
import os
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    22
import sys
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    23
import django
6
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
    24
home_dir=os.getenv("HOME")
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
    25
if home_dir=='/home/amit':
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
    26
    sys.path.append('/home/amit/SEES-hacks/SEESenv/web/')
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
    27
    sys.path.append('/home/amit/SEES-hacks/SEESenv/web/hgbook/comments')
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
    28
else:
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
    29
    sys.path.append('/home/hg/repos/SEES-hacks/SEESenv/web/')
1ce9b33fb6ff sorted the problem related to paths
amit@thunder
parents: 3
diff changeset
    30
    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
    31
os.environ['DJANGO_SETTINGS_MODULE'] = 'hgbook.settings'
1
672eaaab9204 Added some new html files that failed earlier during change from rst
amit@thunder
parents: 0
diff changeset
    32
import django.core.handlers.wsgi
0
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    33
application = django.core.handlers.wsgi.WSGIHandler()
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    34
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    35
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    36
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    37