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

« back to all changes in this revision

Viewing changes to www/conf/apps.py

  • Committer: dilshan_a
  • Date: 2008-01-23 21:55:49 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:278
Added README files to explain the test framework and the examples.

Fixed the filespace tests to that they are up to date.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
# These should not need to be modified by admins unless new applications are
5
5
# plugged in.
6
6
 
 
7
enable_debuginfo = False
 
8
 
7
9
# Allow App objects
8
10
# Note: icon is a string of a file basename. The icon files are found in
9
11
# app_icon_dir, defined below.
31
33
# Note that if this app requires authentication, the user will first be
32
34
# presented with the login screen.
33
35
default_app = "files"
 
36
# Which application to use for "public host" URLs.
 
37
# (See conf.py)
 
38
public_app = "serve"
34
39
 
35
40
# Application definitions
36
41
 
57
62
                    requireauth = True,
58
63
                    hashelp = True)
59
64
 
 
65
app_consoleservice = App(dir = "consoleservice",
 
66
                    name = "Console Service",
 
67
                    requireauth = True,
 
68
                    hashelp = False)
 
69
 
60
70
app_tutorial =     App(dir = "tutorial",
61
71
                    name = "Tutorial",
62
72
                    icon = "tutorial.png",
65
75
 
66
76
app_server =    App(dir = "server",
67
77
                    name = "Server",
68
 
                    requireauth = False,
 
78
                    requireauth = True,
69
79
                    hashelp = False)
70
80
 
71
81
app_download =  App(dir = "download",
91
101
    "edit" : app_editor,
92
102
    "fileservice" : app_fileservice,
93
103
    "console" : app_console,
 
104
    "consoleservice" : app_consoleservice,
94
105
    "tutorial" : app_tutorial,
95
106
    "serve" : app_server,
96
107
    "download" : app_download,
97
108
    "help" : app_help,
98
 
    #"debuginfo" : app_debuginfo,
99
109
}
 
110
if enable_debuginfo:
 
111
    app_url["debuginfo"] = app_debuginfo
100
112
 
101
113
# List of apps that go in the tabs at the top
102
114
# (The others are hidden unless they are linked to)