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

« back to all changes in this revision

Viewing changes to www/conf/apps.py

  • Committer: mattgiuca
  • Date: 2008-01-12 12:57:30 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:197
dispatch.html, ivle.css: Main IVLE header is now an h1/h2 pair, styled to the
    left with absolute positioning (one over the top of the other).

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
# plugged in.
6
6
 
7
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.
8
10
class App:
9
 
    def __init__(self, dir, name, requireauth = True, hashelp = False):
 
11
    def __init__(self, dir, name, icon = None, requireauth = True,
 
12
        hashelp = False):
10
13
        self.dir = dir
11
14
        self.name = name
 
15
        self.icon = icon
12
16
        self.requireauth = requireauth
13
17
        self.hashelp = hashelp
14
18
    def __repr__(self):
15
19
        return ("App(dir=" + repr(self.dir) + ", name=" + repr(self.name) +
 
20
            ", icon=" + repr(self.icon) +
16
21
            ", requireauth=" + repr(self.requireauth) + ", hashelp="
17
22
            + repr(self.hashelp) + ")")
18
23
 
 
24
# Directory where app icons are stored, relative to the IVLE root.
 
25
app_icon_dir = "media/images/apps"
 
26
 
 
27
# Which application to load by default (if the user navigates to the top level
 
28
# of the site). This is the app's URL name.
 
29
# Note that if this app requires authentication, the user will first be
 
30
# presented with the login screen.
 
31
default_app = "files"
 
32
 
19
33
# Application definitions
20
34
 
21
 
app_dummy =     App(dir = "dummy",
22
 
                    name = "My Dummy App",
23
 
                    requireauth = True,
24
 
                    hashelp = True)
25
 
 
26
35
app_browser =   App(dir = "browser",
27
36
                    name = "File Browser",
 
37
                    icon = "browser.png",
 
38
                    requireauth = True,
 
39
                    hashelp = True)
 
40
 
 
41
app_editor =   App(dir = "editor",
 
42
                    name = "Text Editor",
 
43
                    icon = "editor.png",
28
44
                    requireauth = True,
29
45
                    hashelp = True)
30
46
 
33
49
                    requireauth = True,
34
50
                    hashelp = False)
35
51
 
 
52
app_console =     App(dir = "console",
 
53
                    name = "Console",
 
54
                    icon = "console.png",
 
55
                    requireauth = True,
 
56
                    hashelp = True)
 
57
 
 
58
app_tutorial =     App(dir = "tutorial",
 
59
                    name = "Tutorial",
 
60
                    icon = "tutorial.png",
 
61
                    requireauth = True,
 
62
                    hashelp = True)
 
63
 
36
64
app_server =    App(dir = "server",
37
65
                    name = "Server",
38
66
                    requireauth = False,
45
73
 
46
74
app_help =      App(dir = "help",
47
75
                    name = "Help",
 
76
                    icon = "help.png",
48
77
                    requireauth = True,
49
78
                    hashelp = False)
50
79
 
56
85
# Mapping URL names to apps
57
86
 
58
87
app_url = {
59
 
    "dummy" : app_dummy,
60
88
    "files" : app_browser,
 
89
    "edit" : app_editor,
61
90
    "fileservice" : app_fileservice,
 
91
    "console" : app_console,
 
92
    "tutorial" : app_tutorial,
62
93
    "serve" : app_server,
63
94
    "download" : app_download,
64
95
    "help" : app_help,
69
100
# (The others are hidden unless they are linked to)
70
101
# Note: The values in this list are the URL names as seen in app_url.
71
102
 
72
 
apps_in_tabs = ["dummy", "files", "help"]
 
103
apps_in_tabs = ["files", "edit", "console", "tutorial", "help"]