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

« back to all changes in this revision

Viewing changes to ivle/conf/apps.py

Quick port of fileservice to the new framework. It's still very much old-style,
though.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
                    requireauth = True,
36
36
                    hashelp = False)
37
37
 
38
 
app_server =    App(dir = "server",
39
 
                    name = "Server",
40
 
                    requireauth = True,
41
 
                    hashelp = False)
42
 
 
43
 
app_download =  App(dir = "download",
44
 
                    name = "Download",
45
 
                    requireauth = True,
46
 
                    hashelp = False)
47
 
 
48
38
# Mapping URL names to apps
49
39
 
50
40
app_url = {
51
41
    "fileservice" : app_fileservice,
52
 
    "serve" : app_server,
53
 
    "download" : app_download,
54
42
}