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

« back to all changes in this revision

Viewing changes to www/conf/apps.py

  • Committer: mattgiuca
  • Date: 2008-01-18 06:21:32 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:248
Added variable "ivle_version" to conf/__init__.py. This stores the version
number. It will be given to student CGI code by the server, as part of
SERVER_SOFTWARE.
debuginfo prints "ivle_version".

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
# These should not need to be modified by admins unless new applications are
5
5
# plugged in.
6
6
 
7
 
enable_debuginfo = False
8
 
 
9
7
# Allow App objects
10
8
# Note: icon is a string of a file basename. The icon files are found in
11
9
# app_icon_dir, defined below.
33
31
# Note that if this app requires authentication, the user will first be
34
32
# presented with the login screen.
35
33
default_app = "files"
36
 
# Which application to use for "public host" URLs.
37
 
# (See conf.py)
38
 
public_app = "serve"
39
34
 
40
35
# Application definitions
41
36
 
73
68
                    requireauth = True,
74
69
                    hashelp = True)
75
70
 
76
 
app_tutorialservice = App(dir = "tutorialservice",
77
 
                    name = "Tutorial Service",
78
 
                    requireauth = True,
79
 
                    hashelp = False)
80
 
 
81
71
app_server =    App(dir = "server",
82
72
                    name = "Server",
83
 
                    requireauth = True,
 
73
                    requireauth = False,
84
74
                    hashelp = False)
85
75
 
86
76
app_download =  App(dir = "download",
108
98
    "console" : app_console,
109
99
    "consoleservice" : app_consoleservice,
110
100
    "tutorial" : app_tutorial,
111
 
    "tutorialservice" : app_tutorialservice,
112
101
    "serve" : app_server,
113
102
    "download" : app_download,
114
103
    "help" : app_help,
 
104
    #"debuginfo" : app_debuginfo,
115
105
}
116
 
if enable_debuginfo:
117
 
    app_url["debuginfo"] = app_debuginfo
118
106
 
119
107
# List of apps that go in the tabs at the top
120
108
# (The others are hidden unless they are linked to)