1
# IVLE Configuration File
3
# Configuration of plugin applications for IVLE
4
# These should not need to be modified by admins unless new applications are
7
enable_debuginfo = False
11
# desc is a full description for the front page. It isn't required
12
# unless this app is in apps_on_home_page.
13
# icon is a string of a file basename. The icon files are found in
14
# app_icon_dir, defined below.
16
def __init__(self, dir, name, desc=None, icon = None,
17
useconsole = False, requireauth = True, hashelp = False):
22
self.useconsole = useconsole
23
self.requireauth = requireauth
24
self.hashelp = hashelp
26
return ("App(dir=%s, name=%s, desc=%s, icon=%s, requireauth=%s, "
27
"hashelp=%s)" % (repr(self.dir), repr(self.name),
28
repr(self.desc), repr(self.icon), repr(self.requireauth),
31
# Directory where app icons are stored, relative to the IVLE root.
32
app_icon_dir = "media/images/apps"
33
# Small version of icons (16x16, for favicon)
34
app_icon_dir_small = "media/images/apps/small"
36
# Which application to load by default (if the user navigates to the top level
37
# of the site). This is the app's URL name.
38
# Note that if this app requires authentication, the user will first be
39
# presented with the login screen.
41
# Which application to use for "public host" URLs.
45
# Application definitions
47
app_browser = App(dir = "browser",
49
desc = "Gives you access to all of your files and lets "
50
"you download, upload, edit and run them.",
56
app_fileservice = App(dir = "fileservice",
57
name = "File Service (AJAX server)",
61
app_console = App(dir = "console",
63
desc = "A Python console where you can try out code "
64
"without having to save and run it.",
66
useconsole = False, # We use a full console in this app
70
app_consoleservice = App(dir = "consoleservice",
71
name = "Console Service",
75
app_tutorial = App(dir = "tutorial",
77
desc = "Online tutorials and exercises for lab work.",
78
icon = "tutorial.png",
83
app_tutorialservice = App(dir = "tutorialservice",
84
name = "Tutorial Service",
88
app_server = App(dir = "server",
93
app_download = App(dir = "download",
98
app_help = App(dir = "help",
100
desc = "IVLE help pages",
105
app_debuginfo = App(dir = "debuginfo",
106
name = "Debug Information",
110
app_forum = App(dir = "forum",
112
desc = "Discussion boards for material relating to "
113
"Informatics, IVLE and Python.",
118
app_tos = App(dir = "tos",
119
name = "Terms of Service",
123
app_settings = App(dir = "settings",
124
name = "Account Settings",
125
icon = "settings.png",
129
app_groups = App(dir = "groups",
130
name = "Group Management",
135
app_userservice = App(dir = "userservice",
136
name = "User Management Service",
140
app_diff = App(dir = "diff",
146
app_svnlog = App(dir = "svnlog",
147
name = "Subversion Log",
151
app_subjects = App(dir = "subjects",
153
desc = "Announcements and information about the subjects "
154
"you are enrolled in.",
155
icon = "subjects.png",
159
app_home = App(dir = "home",
161
desc = "IVLE home page",
166
# Mapping URL names to apps
169
"files" : app_browser,
170
"fileservice" : app_fileservice,
171
"console" : app_console,
172
"consoleservice" : app_consoleservice,
173
"tutorial" : app_tutorial,
174
"tutorialservice" : app_tutorialservice,
175
"serve" : app_server,
176
"download" : app_download,
180
"settings" : app_settings,
181
"groups" : app_groups,
182
"userservice" : app_userservice,
184
"svnlog" : app_svnlog,
185
"subjects" : app_subjects,
189
app_url["debuginfo"] = app_debuginfo
191
# List of apps that go in the tabs at the top
192
# (The others are hidden unless they are linked to)
193
# Note: The values in this list are the URL names as seen in app_url.
195
apps_in_tabs = ["files", "tutorial", "console",
196
"forum", "subjects", "help"]
198
# List of apps that go in the list on the home page
199
apps_on_home_page = ["subjects", "files", "tutorial", "console", "forum"]