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

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: mattgiuca
  • Date: 2008-02-21 06:06:10 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:531
www/auth: Split authenticate.py into 3 modules: autherror and ldap_auth.
    Now authenticate looks through the list of modules in conf.auth_modules
    to figure out what to import (does not import ldap_auth directly,
    only through auth_modules).
    Error messages now contain module name.
setup.py: Renamed ldap to ldap_auth (due to naming conflict with ldap lib).

Show diffs side-by-side

added added

removed removed

Lines of Context:
204
204
# In the local file system, where IVLE is actually installed.
205
205
# This directory should contain the "www" and "bin" directories."""))
206
206
config_options.append(ConfigOption("jail_base", "/home/informatics/jails",
207
 
    """Root directory where the jails (containing user files) are stored
 
207
    """Location of Directories
 
208
=======================
 
209
Root directory where the jails (containing user files) are stored
208
210
(on the local file system):""",
209
211
    """
210
212
# In the local file system, where are the student/user file spaces located.
218
220
# In the local file system, where are the per-subject file spaces located.
219
221
# The individual subject directories are expected to be located immediately
220
222
# in subdirectories of this location."""))
221
 
config_options.append(ConfigOption("problems_base",
222
 
    "/home/informatics/problems",
223
 
    """Root directory where the problem directories (containing
224
 
subject-independent problem sheets) are stored (on the local file
 
223
config_options.append(ConfigOption("exercises_base",
 
224
    "/home/informatics/exercises",
 
225
    """Root directory where the exercise directories (containing
 
226
subject-independent exercise sheets) are stored (on the local file
225
227
system):""",
226
228
    """
227
 
# In the local file system, where are the subject-independent problem sheet
 
229
# In the local file system, where are the subject-independent exercise sheet
228
230
# file spaces located."""))
229
231
config_options.append(ConfigOption("public_host", "public.localhost",
230
232
    """Hostname which will cause the server to go into "public mode",
270
272
    (Caution: This password is stored in plaintext in lib/conf/conf.py)""",
271
273
    """
272
274
# Database password"""))
 
275
config_options.append(ConfigOption("auth_modules", "ldap_auth",
 
276
    """Authentication config
 
277
=====================
 
278
Comma-separated list of authentication modules. Only "ldap" is available
 
279
by default.""",
 
280
    """
 
281
# Comma-separated list of authentication modules.
 
282
# These refer to importable Python modules in the www/auth directory.
 
283
# Modules "ldap" and "guest" are available in the source tree, but
 
284
# other modules may be plugged in to auth against organisation-specific
 
285
# auth backends."""))
 
286
config_options.append(ConfigOption("ldap_url", "ldaps://www.example.com",
 
287
    """(LDAP options are only relevant if "ldap" is included in the list of
 
288
auth modules).
 
289
URL for LDAP authentication server:""",
 
290
    """
 
291
# URL for LDAP authentication server"""))
 
292
config_options.append(ConfigOption("ldap_format_string",
 
293
    "uid=%s,ou=users,o=example",
 
294
    """Format string for LDAP auth request:
 
295
    (Must contain a single "%s" for the user's login name)""",
 
296
    """
 
297
# Format string for LDAP auth request
 
298
# (Must contain a single "%s" for the user's login name)"""))
 
299
config_options.append(ConfigOption("svn_addr", "http://svn.localhost/",
 
300
    """Subversion config
 
301
=================
 
302
The base url for accessing subversion repositories:""",
 
303
    """
 
304
# The base url for accessing subversion repositories."""))
273
305
config_options.append(ConfigOption("svn_conf", "/opt/ivle/svn/svn.conf",
274
306
    """The location of the subversion configuration file used by apache
275
307
to host the user repositories:""",
293
325
# The location of the password file used to authenticate local users
294
326
# of the subversion repository."""))
295
327
config_options.append(ConfigOption("usrmgt_host", "localhost",
296
 
    """The hostname where the usrmgt-server runs:""",
 
328
    """User Management Server config
 
329
============================
 
330
The hostname where the usrmgt-server runs:""",
297
331
    """
298
332
# The hostname where the usrmgt-server runs."""))
299
333
config_options.append(ConfigOption("usrmgt_port", "2178",
458
492
Copy subjects/ to subjects directory (unless --nosubjects specified).
459
493
 
460
494
--nojail        Do not copy the jail.
461
 
--nosubjects    Do not copy the subjects and problems directories.
 
495
--nosubjects    Do not copy the subjects and exercises directories.
462
496
--dry | -n  Print out the actions but don't do anything."""
463
497
    elif operation == 'updatejails':
464
498
        print """sudo python setup.py updatejails [--dry|-n]
477
511
    list_www = build_list_py_files('www')
478
512
    list_lib = build_list_py_files('lib')
479
513
    list_subjects = build_list_py_files('subjects', no_top_level=True)
480
 
    list_problems = build_list_py_files('problems', no_top_level=True)
 
514
    list_exercises = build_list_py_files('exercises', no_top_level=True)
481
515
    list_scripts = [
482
516
        "scripts/python-console",
483
517
        "scripts/fileservice",
519
553
list_subjects = """)
520
554
        writelist_pretty(file, list_subjects)
521
555
        file.write("""
522
 
# List of all installable files in problems directory.
 
556
# List of all installable files in exercises directory.
523
557
# This is to install sample exercise material.
524
 
list_problems = """)
525
 
        writelist_pretty(file, list_problems)
 
558
list_exercises = """)
 
559
        writelist_pretty(file, list_exercises)
526
560
 
527
561
        file.close()
528
562
    except IOError, (errno, strerror):
840
874
    # chown trampoline to root and set setuid bit
841
875
    action_chown_setuid(tramppath, dry)
842
876
 
 
877
    # Create a scripts directory to put the usrmgt-server in.
 
878
    action_mkdir(os.path.join(ivle_install_dir, 'scripts'), dry)
 
879
    usrmgtpath = os.path.join(ivle_install_dir, 'scripts/usrmgt-server')
 
880
    action_copyfile('scripts/usrmgt-server', usrmgtpath, dry)
 
881
    action_chmod_x(usrmgtpath, dry)
 
882
 
843
883
    # Copy the www and lib directories using the list
844
884
    action_copylist(install_list.list_www, ivle_install_dir, dry)
845
885
    action_copylist(install_list.list_lib, ivle_install_dir, dry)
 
886
    
 
887
    # Copy the php directory
 
888
    action_copytree('www/php/phpBB3',os.path.join(ivle_install_dir,'www/php/phpBB3'), 
 
889
    dry)
846
890
 
847
891
    if not nojail:
848
892
        # Copy the local jail directory built by the build action
850
894
        # for all the students' jails).
851
895
        action_copytree('jail', os.path.join(jail_base, 'template'), dry)
852
896
    if not nosubjects:
853
 
        # Copy the subjects and problems directories across
 
897
        # Copy the subjects and exercises directories across
854
898
        action_copylist(install_list.list_subjects, subjects_base, dry,
855
899
            srcdir="./subjects")
856
 
        action_copylist(install_list.list_problems, problems_base, dry,
857
 
            srcdir="./problems")
 
900
        action_copylist(install_list.list_exercises, exercises_base, dry,
 
901
            srcdir="./exercises")
858
902
 
859
903
    # Append IVLE path to ivle.pth in python site packages
860
904
    # (Unless it's already there)
984
1028
    directories as necessary.
985
1029
 
986
1030
    See shutil.copytree."""
 
1031
    # Allow copying over itself
 
1032
    if (os.path.normpath(os.path.join(os.getcwd(),src)) ==
 
1033
        os.path.normpath(os.path.join(os.getcwd(),dst))):
 
1034
        return
987
1035
    action_remove(dst, dry)
988
1036
    print "cp -r", src, dst
989
1037
    if dry: return