SEESenv/web/hgbook/run.wsgi~
author amit@thunder
Sat, 13 Feb 2010 12:29:22 +0530
changeset 3 6cee07c589cb
parent 2 52d12eb31c30
child 6 1ce9b33fb6ff
permissions -rw-r--r--
Changes in path of some of the files ...

ALLDIRS = ['/home/amit/SEES-hacks/SEESenv/lib/python2.6/site-packages']

import sys 
import site 

# Remember original sys.path.
prev_sys_path = list(sys.path) 

# Add each new site-packages directory.
for directory in ALLDIRS:
  site.addsitedir(directory)

# Reorder sys.path so new directories at the front.
new_sys_path = [] 
for item in list(sys.path): 
    if item not in prev_sys_path: 
        new_sys_path.append(item) 
        sys.path.remove(item) 
sys.path[:0] = new_sys_path 

import os
import sys
import django
sys.path.append('/home/amit/SEES-hacks/SEESenv/web/')
sys.path.append('/home/amit/SEES-hacks/SEESenv/web/hgbook/comments')
os.environ['DJANGO_SETTINGS_MODULE'] = 'hgbook.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()