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

« back to all changes in this revision

Viewing changes to lib/conf/apps.py

  • Committer: drtomc
  • Date: 2008-02-14 04:22:13 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:459
ivle.conf: Add some php handling magic.

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
                    requireauth = False,
100
100
                    hashelp = False)
101
101
 
 
102
app_forum = App(dir = "forum",
 
103
                    name = "Forum",
 
104
                    icon = "forum.png",
 
105
                    requireauth = True,
 
106
                    hashelp = False)
 
107
 
 
108
app_tos = App(dir = "tos",
 
109
                    name = "Terms of Service",
 
110
                    requireauth = False,
 
111
                    hashelp = False)
 
112
 
102
113
# Mapping URL names to apps
103
114
 
104
115
app_url = {
112
123
    "serve" : app_server,
113
124
    "download" : app_download,
114
125
    "help" : app_help,
 
126
    "forum" : app_forum,
 
127
    "tos" : app_tos,
115
128
}
116
129
if enable_debuginfo:
117
130
    app_url["debuginfo"] = app_debuginfo
120
133
# (The others are hidden unless they are linked to)
121
134
# Note: The values in this list are the URL names as seen in app_url.
122
135
 
123
 
apps_in_tabs = ["files", "edit", "console", "tutorial", "help"]
 
136
apps_in_tabs = ["files", "edit", "console", "tutorial", "forum", "help"]