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

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: mattgiuca
  • Date: 2008-02-21 05:14:47 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:530
setup.py:
    * Added more headings in the configuration prompting, to make it easier to
      do the conf.
    * Added "auth_modules" config option.

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.
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",
 
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."""))
273
286
config_options.append(ConfigOption("ldap_url", "ldaps://www.example.com",
274
 
    """URL for LDAP authentication server:""",
 
287
    """(LDAP options are only relevant if "ldap" is included in the list of
 
288
auth modules).
 
289
URL for LDAP authentication server:""",
275
290
    """
276
291
# URL for LDAP authentication server"""))
277
292
config_options.append(ConfigOption("ldap_format_string",
282
297
# Format string for LDAP auth request
283
298
# (Must contain a single "%s" for the user's login name)"""))
284
299
config_options.append(ConfigOption("svn_addr", "http://svn.localhost/",
285
 
    """The base url for accessing subversion repositories:""",
 
300
    """Subversion config
 
301
=================
 
302
The base url for accessing subversion repositories:""",
286
303
    """
287
304
# The base url for accessing subversion repositories."""))
288
305
config_options.append(ConfigOption("svn_conf", "/opt/ivle/svn/svn.conf",
308
325
# The location of the password file used to authenticate local users
309
326
# of the subversion repository."""))
310
327
config_options.append(ConfigOption("usrmgt_host", "localhost",
311
 
    """The hostname where the usrmgt-server runs:""",
 
328
    """User Management Server config
 
329
============================
 
330
The hostname where the usrmgt-server runs:""",
312
331
    """
313
332
# The hostname where the usrmgt-server runs."""))
314
333
config_options.append(ConfigOption("usrmgt_port", "2178",