~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 23:37:08 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:467
makeuser: Add some of the helper functions for activating users.
setup: Add some missing svn config.

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_userservice = App(dir = "userservuce",
 
114
                    name = "User Management Service",
 
115
                    requireauth = True,
 
116
                    hashelp = False)
 
117
 
108
118
# Mapping URL names to apps
109
119
 
110
120
app_url = {
118
128
    "serve" : app_server,
119
129
    "download" : app_download,
120
130
    "help" : app_help,
121
 
    "forum" : app_forum
 
131
    "forum" : app_forum,
 
132
    "tos" : app_tos,
 
133
    "userservice" : app_userservice,
122
134
}
123
135
if enable_debuginfo:
124
136
    app_url["debuginfo"] = app_debuginfo