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

« back to all changes in this revision

Viewing changes to lib/conf/apps.py

  • Committer: mattgiuca
  • Date: 2008-03-05 00:16:20 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:644
Removed Editor app.
    (It is now entirely contained within the "files" app.
    More actions -> New File to create a new file).
Removed Editor's app code, tab and app entry in the app registry.
Renamed "File Browser" to "Files" to support the idea that it's an editor too.
Renamed "Tutorial" to "Worksheets" because it isn't being used in tutorials
per se.
Moved Worksheets over by Files, for aesthetic reasons ("files" and
"worksheets" are your two spaces).

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
# Application definitions
41
41
 
42
42
app_browser =   App(dir = "browser",
43
 
                    name = "File Browser",
 
43
                    name = "Files",
44
44
                    icon = "browser.png",
45
45
                    requireauth = True,
46
46
                    hashelp = True)
47
47
 
48
 
app_editor =   App(dir = "editor",
49
 
                    name = "Text Editor",
50
 
                    icon = "editor.png",
51
 
                    requireauth = True,
52
 
                    hashelp = True)
53
 
 
54
48
app_fileservice = App(dir = "fileservice",
55
49
                    name = "File Service (AJAX server)",
56
50
                    requireauth = True,
68
62
                    hashelp = False)
69
63
 
70
64
app_tutorial =     App(dir = "tutorial",
71
 
                    name = "Tutorial",
 
65
                    name = "Worksheets",
72
66
                    icon = "tutorial.png",
73
67
                    requireauth = True,
74
68
                    hashelp = True)
141
135
 
142
136
app_url = {
143
137
    "files" : app_browser,
144
 
    "edit" : app_editor,
145
138
    "fileservice" : app_fileservice,
146
139
    "console" : app_console,
147
140
    "consoleservice" : app_consoleservice,
165
158
# (The others are hidden unless they are linked to)
166
159
# Note: The values in this list are the URL names as seen in app_url.
167
160
 
168
 
apps_in_tabs = ["files", "edit", "console", "tutorial", "forum", "help"]
 
161
apps_in_tabs = ["files", "tutorial", "console", "forum", "help"]