~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to src/conf/apps.py

  • Committer: mattgiuca
  • Date: 2008-01-24 23:31:45 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:291
tutorial: Added code to handle top-level menu and subject menu (reads dir
    listing, XML files, and presents a list of links).
    Added code to handle a worksheet page. Presents the page as HTML,
    observing <problem> elements and reading in their XML files.
    Currently does not handle problems; just prints out their source files.
Added media/tutorial/tutorial.css (very minimal currently).

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
17
 
app_dummy.hashelp = True
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"]