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
# Application definitions
17
app_dummy = App(dir = "dummy",
18
name = "My Dummy App",
22
app_server = App(dir = "server",
27
app_help = App(dir = "help",
32
# Mapping URL names to apps
40
# List of apps that go in the tabs at the top
41
# (The others are hidden unless they are linked to)
42
# Note: The values in this list are the URL names as seen in app_url.
44
apps_in_tabs = ["dummy", "help"]