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

« back to all changes in this revision

Viewing changes to src/conf/apps.py

  • Committer: Matt Giuca
  • Date: 2009-04-23 07:51:29 UTC
  • Revision ID: matt.giuca@gmail.com-20090423075129-94mf4vlwllpew0xn
ivle.svn: Added revision_is_dir (like os.path.isdir for revision history).
ivle.fileservice_lib.listing: Refactored such that the SVN revision is found
    in the top-level handler, and passed down into the individual handlers.
    This is done so that the revision information can be used to make the
    decisions (which will be required to fix the revision history browsing).
    This doesn't yet change the behaviour.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# IVLE Configuration File
2
 
# conf/apps.py
3
 
# Configuration of plugin applications for IVLE
4
 
# These should not need to be modified by admins unless new applications are
5
 
# plugged in.
6
 
 
7
 
# Allow App objects
8
 
class App:
9
 
    pass
10
 
 
11
 
# Application definitions
12
 
 
13
 
app_dummy = App()
14
 
app_dummy.dir = "dummy"
15
 
app_dummy.name = "My Dummy App"
16
 
app_dummy.requireauth = True
17
 
app_dummy.hashelp = True
18
 
 
19
 
# Mapping URL names to apps
20
 
 
21
 
app_url = {
22
 
    "dummy" : app_dummy,
23
 
}
24
 
 
25
 
# List of apps that go in the tabs at the top
26
 
# (The others are hidden unless they are linked to)
27
 
# Note: The values in this list are the URL names as seen in app_url.
28
 
 
29
 
apps_in_tabs = ["dummy"]