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

« back to all changes in this revision

Viewing changes to www/conf/apps.py

  • Committer: William Grant
  • Date: 2012-06-28 01:52:02 UTC
  • Revision ID: me@williamgrant.id.au-20120628015202-f6ru7o367gt6nvgz
Hah

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
 
# Note: icon is a string of a file basename. The icon files are found in
9
 
# app_icon_dir, defined below.
10
 
class App:
11
 
    def __init__(self, dir, name, icon = None, requireauth = True,
12
 
        hashelp = False):
13
 
        self.dir = dir
14
 
        self.name = name
15
 
        self.icon = icon
16
 
        self.requireauth = requireauth
17
 
        self.hashelp = hashelp
18
 
    def __repr__(self):
19
 
        return ("App(dir=" + repr(self.dir) + ", name=" + repr(self.name) +
20
 
            ", icon=" + repr(self.icon) +
21
 
            ", requireauth=" + repr(self.requireauth) + ", hashelp="
22
 
            + repr(self.hashelp) + ")")
23
 
 
24
 
# Directory where app icons are stored, relative to the IVLE root.
25
 
app_icon_dir = "media/images/apps"
26
 
# Small version of icons (16x16, for favicon)
27
 
app_icon_dir_small = "media/images/apps/small"
28
 
 
29
 
# Which application to load by default (if the user navigates to the top level
30
 
# of the site). This is the app's URL name.
31
 
# Note that if this app requires authentication, the user will first be
32
 
# presented with the login screen.
33
 
default_app = "files"
34
 
# Which application to use for "public host" URLs.
35
 
# (See conf.py)
36
 
public_app = "serve"
37
 
 
38
 
# Application definitions
39
 
 
40
 
app_browser =   App(dir = "browser",
41
 
                    name = "File Browser",
42
 
                    icon = "browser.png",
43
 
                    requireauth = True,
44
 
                    hashelp = True)
45
 
 
46
 
app_editor =   App(dir = "editor",
47
 
                    name = "Text Editor",
48
 
                    icon = "editor.png",
49
 
                    requireauth = True,
50
 
                    hashelp = True)
51
 
 
52
 
app_fileservice = App(dir = "fileservice",
53
 
                    name = "File Service (AJAX server)",
54
 
                    requireauth = True,
55
 
                    hashelp = False)
56
 
 
57
 
app_console =     App(dir = "console",
58
 
                    name = "Console",
59
 
                    icon = "console.png",
60
 
                    requireauth = True,
61
 
                    hashelp = True)
62
 
 
63
 
app_consoleservice = App(dir = "consoleservice",
64
 
                    name = "Console Service",
65
 
                    requireauth = True,
66
 
                    hashelp = False)
67
 
 
68
 
app_tutorial =     App(dir = "tutorial",
69
 
                    name = "Tutorial",
70
 
                    icon = "tutorial.png",
71
 
                    requireauth = True,
72
 
                    hashelp = True)
73
 
 
74
 
app_server =    App(dir = "server",
75
 
                    name = "Server",
76
 
                    requireauth = False,
77
 
                    hashelp = False)
78
 
 
79
 
app_download =  App(dir = "download",
80
 
                    name = "Download",
81
 
                    requireauth = True,
82
 
                    hashelp = False)
83
 
 
84
 
app_help =      App(dir = "help",
85
 
                    name = "Help",
86
 
                    icon = "help.png",
87
 
                    requireauth = True,
88
 
                    hashelp = False)
89
 
 
90
 
app_debuginfo = App(dir = "debuginfo",
91
 
                    name = "Debug Information",
92
 
                    requireauth = False,
93
 
                    hashelp = False)
94
 
 
95
 
# Mapping URL names to apps
96
 
 
97
 
app_url = {
98
 
    "files" : app_browser,
99
 
    "edit" : app_editor,
100
 
    "fileservice" : app_fileservice,
101
 
    "console" : app_console,
102
 
    "consoleservice" : app_consoleservice,
103
 
    "tutorial" : app_tutorial,
104
 
    "serve" : app_server,
105
 
    "download" : app_download,
106
 
    "help" : app_help,
107
 
    #"debuginfo" : app_debuginfo,
108
 
}
109
 
 
110
 
# List of apps that go in the tabs at the top
111
 
# (The others are hidden unless they are linked to)
112
 
# Note: The values in this list are the URL names as seen in app_url.
113
 
 
114
 
apps_in_tabs = ["files", "edit", "console", "tutorial", "help"]