~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 12:10:49 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:32
src/dispatch: Added code to fetch and print the list of apps with links.
src/conf/apps: Added another app ("help").

Show diffs side-by-side

added added

removed removed

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