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
9
def __init__(self, dir, name, requireauth = True, hashelp = False):
12
self.requireauth = requireauth
13
self.hashelp = hashelp
15
return ("App(dir=" + repr(self.dir) + ", name=" + repr(self.name) +
16
", requireauth=" + repr(self.requireauth) + ", hashelp="
17
+ repr(self.hashelp) + ")")
19
# Application definitions
21
app_dummy = App(dir = "dummy",
22
name = "My Dummy App",
26
app_browser = App(dir = "browser",
27
name = "File Browser",
31
app_fileservice = App(dir = "fileservice",
32
name = "File Service (AJAX server)",
36
app_server = App(dir = "server",
41
app_download = App(dir = "download",
46
app_help = App(dir = "help",
51
app_debuginfo = App(dir = "debuginfo",
52
name = "Debug Information",
56
# Mapping URL names to apps
60
"files" : app_browser,
61
"fileservice" : app_fileservice,
63
"download" : app_download,
65
#"debuginfo" : app_debuginfo,
68
# List of apps that go in the tabs at the top
69
# (The others are hidden unless they are linked to)
70
# Note: The values in this list are the URL names as seen in app_url.
72
apps_in_tabs = ["dummy", "files", "help"]