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

« back to all changes in this revision

Viewing changes to lib/conf/apps.py

  • Committer: mattgiuca
  • Date: 2008-07-15 09:18:02 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:877
pulldown_subj/__init__.py: Added "enrol_user" function which pulls down a user
    and also enrols them in the database.
Added script enrolallusers.py which scriptulously performs automatic
enrolments of all users in the system, similar to remakeallusers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
# of the site). This is the app's URL name.
38
38
# Note that if this app requires authentication, the user will first be
39
39
# presented with the login screen.
40
 
default_app = "files"
 
40
default_app = "home"
41
41
# Which application to use for "public host" URLs.
42
42
# (See conf.py)
43
43
public_app = "serve"
126
126
                    requireauth = True,
127
127
                    hashelp = True)
128
128
 
129
 
app_groups = App(dir = "groups",
130
 
                    name = "Group Management",
131
 
                    icon = "groups.png",
132
 
                    requireauth = True,
133
 
                    hashelp = True)
134
 
 
135
129
app_userservice = App(dir = "userservice",
136
130
                    name = "User Management Service",
137
131
                    requireauth = False,
178
172
    "forum" : app_forum,
179
173
    "tos" : app_tos,
180
174
    "settings" : app_settings,
181
 
    "groups" : app_groups,
182
175
    "userservice" : app_userservice,
183
176
    "diff" : app_diff,
184
177
    "svnlog" : app_svnlog,
192
185
# (The others are hidden unless they are linked to)
193
186
# Note: The values in this list are the URL names as seen in app_url.
194
187
 
195
 
apps_in_tabs = ["files", "tutorial", "console",
196
 
                "forum", "subjects", "help"]
 
188
apps_in_tabs = ["home", "subjects", "files", "tutorial", "console",
 
189
                "forum", "help"]
197
190
 
198
191
# List of apps that go in the list on the home page
199
192
apps_on_home_page = ["subjects", "files", "tutorial", "console", "forum"]