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

« back to all changes in this revision

Viewing changes to src/conf/apps.py

  • Committer: mattgiuca
  • Date: 2007-12-11 11:36:11 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:31
doc/notes/architecture: Help files
doc/notes/apps/dispatch.txt: Detailed design of dispatch module.
src/conf/*.py: Added some new config settings.

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"]