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

« back to all changes in this revision

Viewing changes to lib/conf/apps.py

  • Committer: dcoles
  • Date: 2008-02-13 04:10:55 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:443
Added Forum application along with unmodifed version of phpBB3 "Olympus" 3.0.0

Show diffs side-by-side

added added

removed removed

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