~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/conf/conf.py

  • Committer: William Grant
  • Date: 2009-04-23 03:36:48 UTC
  • Revision ID: grantw@unimelb.edu.au-20090423033648-da4wxhvvtd50qzkq
Remove ivle.conf.python_site_packages_override.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
    'prefix': 'paths/prefix',
44
44
    'data_path': 'paths/data',
45
45
    'log_path': 'paths/logs',
46
 
    'python_site_packages_override': 'paths/site_packages',
47
46
    'public_host': 'urls/public_host',
48
47
    'db_host': 'database/host',
49
48
    'db_port': 'database/port',
92
91
# Path where user-executable binaries are installed.
93
92
bin_path = os.path.join(prefix, 'bin')
94
93
 
95
 
# 'site-packages' directory in Python, where Python libraries are to be
96
 
# installed.
97
 
if python_site_packages_override is None:
98
 
    PYTHON_VERSION = sys.version[0:3]   # eg. "2.5"
99
 
    python_site_packages = os.path.join(prefix,
100
 
                               'lib/python%s/site-packages' % PYTHON_VERSION)
101
 
else:
102
 
    python_site_packages = python_site_packages_override
103
 
 
104
94
# In the local file system, where the student/user jails will be mounted.
105
95
# Only a single copy of the jail's system components will be stored here -
106
96
# all user jails will be virtually mounted here.