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_server = App(dir = "server",
31
app_download = App(dir = "download",
36
app_help = App(dir = "help",
41
app_debuginfo = App(dir = "debuginfo",
42
name = "Debug Information",
46
# Mapping URL names to apps
51
"download" : app_download,
53
"debuginfo" : app_debuginfo,
56
# List of apps that go in the tabs at the top
57
# (The others are hidden unless they are linked to)
58
# Note: The values in this list are the URL names as seen in app_url.
60
apps_in_tabs = ["dummy", "help"]