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

« back to all changes in this revision

Viewing changes to www/conf/apps.py

  • Committer: mattgiuca
  • Date: 2007-12-21 03:21:27 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:120
setup.py: Added command-line argument mode for conf. This completely works!

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
                    requireauth = True,
24
24
                    hashelp = True)
25
25
 
26
 
app_browser =   App(dir = "browser",
27
 
                    name = "File Browser",
28
 
                    requireauth = True,
29
 
                    hashelp = True)
30
 
 
31
 
app_fileservice = App(dir = "fileservice",
32
 
                    name = "File Service (AJAX server)",
33
 
                    requireauth = True,
34
 
                    hashelp = False)
35
 
 
36
26
app_server =    App(dir = "server",
37
27
                    name = "Server",
38
28
                    requireauth = False,
50
40
 
51
41
app_debuginfo = App(dir = "debuginfo",
52
42
                    name = "Debug Information",
53
 
                    requireauth = False,
 
43
                    requireauth = True,
54
44
                    hashelp = False)
55
45
 
56
46
# Mapping URL names to apps
57
47
 
58
48
app_url = {
59
49
    "dummy" : app_dummy,
60
 
    "files" : app_browser,
61
 
    "fileservice" : app_fileservice,
62
50
    "serve" : app_server,
63
51
    "download" : app_download,
64
52
    "help" : app_help,
65
 
    #"debuginfo" : app_debuginfo,
 
53
    "debuginfo" : app_debuginfo,
66
54
}
67
55
 
68
56
# List of apps that go in the tabs at the top
69
57
# (The others are hidden unless they are linked to)
70
58
# Note: The values in this list are the URL names as seen in app_url.
71
59
 
72
 
apps_in_tabs = ["dummy", "files", "help"]
 
60
apps_in_tabs = ["dummy", "help"]