~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-09 04:12:08 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:138
Added new app: fileservice. (The Ajax service behind the file browser).
This is a stub.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
                    requireauth = True,
29
29
                    hashelp = True)
30
30
 
 
31
app_fileservice = App(dir = "fileservice",
 
32
                    name = "File Service (AJAX server)",
 
33
                    requireauth = True,
 
34
                    hashelp = False)
 
35
 
31
36
app_server =    App(dir = "server",
32
37
                    name = "Server",
33
38
                    requireauth = False,
53
58
app_url = {
54
59
    "dummy" : app_dummy,
55
60
    "files" : app_browser,
 
61
    "fileservice" : app_fileservice,
56
62
    "serve" : app_server,
57
63
    "download" : app_download,
58
64
    "help" : app_help,