28
by mattgiuca
src/conf: Added a handful of configuration files with some basic info needed |
1 |
# IVLE Configuration File
|
2 |
# conf/apps.py
|
|
3 |
# Configuration of plugin applications for IVLE
|
|
4 |
# These should not need to be modified by admins unless new applications are
|
|
5 |
# plugged in.
|
|
6 |
||
7 |
# Allow App objects
|
|
8 |
class App: |
|
9 |
pass
|
|
10 |
||
11 |
# Application definitions
|
|
12 |
||
13 |
app_dummy = App() |
|
14 |
app_dummy.dir = "dummy" |
|
15 |
app_dummy.name = "My Dummy App" |
|
16 |
app_dummy.requireauth = True |
|
31
by mattgiuca
doc/notes/architecture: Help files |
17 |
app_dummy.hashelp = True |
28
by mattgiuca
src/conf: Added a handful of configuration files with some basic info needed |
18 |
|
19 |
# Mapping URL names to apps
|
|
20 |
||
21 |
app_url = { |
|
22 |
"dummy" : app_dummy, |
|
23 |
}
|
|
24 |
||
25 |
# List of apps that go in the tabs at the top
|
|
26 |
# (The others are hidden unless they are linked to)
|
|
27 |
# Note: The values in this list are the URL names as seen in app_url.
|
|
28 |
||
29 |
apps_in_tabs = ["dummy"] |