~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-12 01:38:59 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:37
Added src/dispatch/request.py: The IVLE Request class.
dispatch module now transforms the Apache request object into an IVLE one, and
goes through it. (Note this temporarily means the content type is no longer
set, because the request object is missing functionality).

Added brief description of this object in notes/apps/dispatch.txt.

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
app_help = App()
 
20
app_help.dir = "help"
 
21
app_help.name = "Help"
 
22
app_help.requireauth = True
 
23
app_help.hashelp = False
 
24
 
 
25
# Mapping URL names to apps
 
26
 
 
27
app_url = {
 
28
    "dummy" : app_dummy,
 
29
    "help" : app_help,
 
30
}
 
31
 
 
32
# List of apps that go in the tabs at the top
 
33
# (The others are hidden unless they are linked to)
 
34
# Note: The values in this list are the URL names as seen in app_url.
 
35
 
 
36
apps_in_tabs = ["dummy", "help"]