~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-22 02:11:59 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:261
conf/apps.py: Added a boolean var to control whether debuginfo is visible,
instead of having a commented-out line. (I seem to be enabling this all the
time).

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
# These should not need to be modified by admins unless new applications are
5
5
# plugged in.
6
6
 
 
7
enable_debuginfo = False
 
8
 
7
9
# Allow App objects
8
10
# Note: icon is a string of a file basename. The icon files are found in
9
11
# app_icon_dir, defined below.
104
106
    "serve" : app_server,
105
107
    "download" : app_download,
106
108
    "help" : app_help,
107
 
    #"debuginfo" : app_debuginfo,
108
109
}
 
110
if enable_debuginfo:
 
111
    app_url["debuginfo"] = app_debuginfo
109
112
 
110
113
# List of apps that go in the tabs at the top
111
114
# (The others are hidden unless they are linked to)