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

« back to all changes in this revision

Viewing changes to lib/conf/apps.py

  • Committer: mattgiuca
  • Date: 2008-02-27 00:00:38 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:594
Added to doc/setup/faq.txt: sessions directory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
                    requireauth = False,
111
111
                    hashelp = False)
112
112
 
 
113
app_settings = App(dir = "settings",
 
114
                    name = "Account Settings",
 
115
                    icon = "settings.png",
 
116
                    requireauth = True,
 
117
                    hashelp = True)
 
118
 
113
119
app_userservice = App(dir = "userservice",
114
120
                    name = "User Management Service",
115
121
                    requireauth = False,
116
122
                    hashelp = False)
117
123
 
 
124
app_diff = App(dir = "diff",
 
125
                    name = "Diff",
 
126
                    #icon = "forum.png",
 
127
                    requireauth = True,
 
128
                    hashelp = False)
 
129
 
118
130
# Mapping URL names to apps
119
131
 
120
132
app_url = {
130
142
    "help" : app_help,
131
143
    "forum" : app_forum,
132
144
    "tos" : app_tos,
 
145
    "settings" : app_settings,
133
146
    "userservice" : app_userservice,
 
147
    "diff" : app_diff,
134
148
}
135
149
if enable_debuginfo:
136
150
    app_url["debuginfo"] = app_debuginfo