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

« back to all changes in this revision

Viewing changes to lib/conf/apps.py

  • Committer: dcoles
  • Date: 2008-08-18 04:34:11 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1021
Database: Adds active column to problem_attempt table.
This allows a group of problem attempts (ie. from previous semesters) to be
marked as 'inactive' and thus counting toward a problem being assessment for
the current semester.

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 = "home"
 
40
default_app = "files"
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
 
129
135
app_userservice = App(dir = "userservice",
130
136
                    name = "User Management Service",
131
137
                    requireauth = False,
172
178
    "forum" : app_forum,
173
179
    "tos" : app_tos,
174
180
    "settings" : app_settings,
 
181
    "groups" : app_groups,
175
182
    "userservice" : app_userservice,
176
183
    "diff" : app_diff,
177
184
    "svnlog" : app_svnlog,
185
192
# (The others are hidden unless they are linked to)
186
193
# Note: The values in this list are the URL names as seen in app_url.
187
194
 
188
 
apps_in_tabs = ["home", "subjects", "files", "tutorial", "console",
189
 
                "forum", "help"]
 
195
apps_in_tabs = ["files", "tutorial", "console",
 
196
                "forum", "subjects", "help"]
190
197
 
191
198
# List of apps that go in the list on the home page
192
199
apps_on_home_page = ["subjects", "files", "tutorial", "console", "forum"]