~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
 
 
 
101
                    
102
102
app_forum = App(dir = "forum",
103
103
                    name = "Forum",
104
104
                    icon = "forum.png",
105
105
                    requireauth = True,
106
106
                    hashelp = False)
107
107
 
108
 
app_tos = App(dir = "tos",
109
 
                    name = "Terms of Service",
110
 
                    requireauth = False,
111
 
                    hashelp = False)
112
 
 
113
 
app_settings = App(dir = "settings",
114
 
                    name = "Account Settings",
115
 
                    icon = "settings.png",
116
 
                    requireauth = True,
117
 
                    hashelp = True)
118
 
 
119
 
app_userservice = App(dir = "userservice",
120
 
                    name = "User Management Service",
121
 
                    requireauth = False,
122
 
                    hashelp = False)
123
 
 
124
108
# Mapping URL names to apps
125
109
 
126
110
app_url = {
134
118
    "serve" : app_server,
135
119
    "download" : app_download,
136
120
    "help" : app_help,
137
 
    "forum" : app_forum,
138
 
    "tos" : app_tos,
139
 
    "settings" : app_settings,
140
 
    "userservice" : app_userservice,
 
121
    "forum" : app_forum
141
122
}
142
123
if enable_debuginfo:
143
124
    app_url["debuginfo"] = app_debuginfo