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

« back to all changes in this revision

Viewing changes to ivle/conf/apps.py

Created a new help system.

The new help system allows plugins to register their help paths, using
a dict of dicts and helpfile paths. This system allows multiple plugins
to use the same heading for their help files (ie. 'admin').

It also allows XHTMLViews to have a 'help' property, which makes the
context-sensitive help link point to their help path.

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
    "tutorial" : app_tutorial,
131
131
    "serve" : app_server,
132
132
    "download" : app_download,
133
 
    "help" : app_help,
 
133
    "+help" : app_help,
134
134
    "forum" : app_forum,
135
135
    "tos" : app_tos,
136
136
    "userservice" : app_userservice,
144
144
# Note: The values in this list are the URL names as seen in app_url.
145
145
 
146
146
apps_in_tabs = ["files", "tutorial", "console",
147
 
                "forum", "subjects", "help"]
 
147
                "forum", "subjects", "+help"]