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

« back to all changes in this revision

Viewing changes to lib/conf/apps.py

  • Committer: mattgiuca
  • Date: 2008-02-28 07:52:35 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:608
browser/listing: REMOVED the generation of all action links to the right
    panel. (Yes, this is the end of an era).
    Split the "Modified" stamp in the right panel to split over 3 lines so it
    takes up less horizontal space.
    Shrunk the right panel from 300px down to 200px, as requested by Steven
    Bird.
We can now rely solely on the top dropdown for doing actions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
                    requireauth = False,
111
111
                    hashelp = False)
112
112
 
 
113
app_settings = App(dir = "settings",
 
114
                    name = "Account Settings",
 
115
                    icon = "settings.png",
 
116
                    requireauth = True,
 
117
                    hashelp = True)
 
118
 
113
119
app_userservice = App(dir = "userservice",
114
120
                    name = "User Management Service",
115
121
                    requireauth = False,
116
122
                    hashelp = False)
117
123
 
 
124
app_diff = App(dir = "diff",
 
125
                    name = "Diff",
 
126
                    #icon = "forum.png",
 
127
                    requireauth = True,
 
128
                    hashelp = False)
 
129
 
118
130
# Mapping URL names to apps
119
131
 
120
132
app_url = {
130
142
    "help" : app_help,
131
143
    "forum" : app_forum,
132
144
    "tos" : app_tos,
 
145
    "settings" : app_settings,
133
146
    "userservice" : app_userservice,
 
147
    "diff" : app_diff,
134
148
}
135
149
if enable_debuginfo:
136
150
    app_url["debuginfo"] = app_debuginfo