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

« back to all changes in this revision

Viewing changes to ivle/config/ivle-spec.conf

  • Committer: William Grant
  • Date: 2009-02-23 23:47:02 UTC
  • mfrom: (1099.1.211 new-dispatch)
  • Revision ID: grantw@unimelb.edu.au-20090223234702-db4b1llly46ignwo
Merge from lp:~ivle-dev/ivle/new-dispatch.

Pretty much everything changes. Reread the setup docs. Backup your databases.
Every file is now in a different installed location, the configuration system
is rewritten, the dispatch system is rewritten, URLs are different, the
database is different, worksheets and exercises are no longer on the
filesystem, we use a templating engine, jail service protocols are rewritten,
we don't repeat ourselves, we have authorization rewritten, phpBB is gone,
and probably lots of other things that I cannot remember.

This is certainly the biggest commit I have ever made, and hopefully
the largest I ever will.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
data = string(default="/var/lib/ivle")
32
32
logs = string(default="/var/log/ivle")
33
33
 
34
 
share = string(default="${prefix}/share/ivle")
35
 
lib = string(default="${prefix}/lib/ivle")
36
 
 
37
 
[[jails]]
38
 
mounts = string(default="${data}/jailmounts")
39
 
src = string(default="${data}/jails")
40
 
template = string(default="${src}/__base__")
41
 
template_build = string(default="${src}/__base_build__")
42
 
 
43
 
[[svn]]
44
 
base = string(default="${data}/svn")
45
 
conf = string(default="${base}/svn.conf")
46
 
group_conf = string(default="${base}/svn-group.conf")
47
 
repo_path = string(default="${base}/repositories")
48
 
auth_ivle = string(default="${base}/ivle.auth")
49
 
 
50
 
[policy]
51
 
tutors_can_enrol_students = boolean(default=False)
52
 
tutors_can_edit_worksheets = boolean(default=True)
53
 
tutors_can_admin_groups = boolean(default=True)
54
 
 
55
34
[media]
56
35
version = string(default=None)
57
36
 
58
 
[[externals]]
59
 
jquery = string(default="/usr/share/javascript/jquery")
60
 
 
61
37
[database]
62
38
host = string(default="localhost")
63
39
port = integer(default=5432)
79
55
[jail]
80
56
devmode = boolean(default=False)
81
57
suite = string(default="hardy")
82
 
mirror = string(default="http://archive.ubuntu.com/ubuntu")
83
58
extra_sources = string_list(default=list())
84
 
extra_packages = string_list(default=list('python-configobj', 'python-cjson', 'python-svn'))
 
59
extra_packages = string_list(default=list())
85
60
extra_keys = string(default=None) # Cannot have triple-quoted list members.
86
 
 
87
 
# user_info is for jail-specific settings for the user who owns the jail
88
 
# (XXX This should be in a user-specific place but since we're worried a user
89
 
# may delete his/her .conf file, we put it here for now).
90
 
[user_info]
91
 
login = string(default=None)
92
 
svn_pass = string(default=None)