The about:about page contains many XULRunner diagnostic tools.
Some useful ones include:
about:buildconfig - Get information about how the staff client is built.
about:config - Tweak XULRunner settings.
about:memory - Get detailed information about staff client memory usage.
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Signed-off-by: Ben Shum <bshum@biblio.org>
<!ENTITY staff.main.menu.admin.extension_manager.label "Extension Manager">
<!ENTITY staff.main.menu.admin.theme_manager.label "Theme Manager">
<!ENTITY staff.main.menu.admin.about_config.label "about:config">
+<!ENTITY staff.main.menu.admin.about_about.label "about:about (XULRunner diagnostics)">
<!ENTITY staff.main.menu.admin.stat_cat_edit.accesskey "C">
<!ENTITY staff.main.menu.admin.stat_cat_edit.label "Statistical Category Editor">
<!ENTITY staff.main.menu.admin.survey_wizard.accesskey "S">
obj.command_tab(event,'chrome://global/content/config.xul',{'tab_name' : 'about:config'},{});
}
],
+ 'cmd_about_about' : [
+ ['oncommand'],
+ function(event) {
+ obj.command_tab(event,'chrome://global/content/aboutAbout.xhtml',{'tab_name' : 'about:about'},{});
+ }
+ ],
'cmd_shutdown' : [
['oncommand'],
function() {
<command id="cmd_about_config"
perm="DEBUG_CLIENT"
/>
+ <command id="cmd_about_about"
+ perm="DEBUG_CLIENT"
+ />
<command id="cmd_adv_user_edit" />
<command id="cmd_console"
<menuitem label="&staff.main.menu.admin.extension_manager.label;" command="cmd_extension_manager"/>
<menuitem label="&staff.main.menu.admin.theme_manager.label;" command="cmd_theme_manager"/>
<menuitem label="&staff.main.menu.admin.about_config.label;" command="cmd_about_config"/>
+ <menuitem label="&staff.main.menu.admin.about_about.label;" command="cmd_about_about"/>
<menuitem label="&staff.main.menu.admin.venkman.label;" command="cmd_debug_venkman"/>
<menuitem label="&staff.main.auth.debug.inspector;" command="cmd_debug_inspector"/>
<menuitem label="&staff.main.auth.debug.chrome_list;" command="cmd_debug_chrome_list"/>
--- /dev/null
+New feature: add "about:about" to developer menu in staff client
+=================================================================
+
+about:about gives access to various XULRunner diagnostic tools.
+Useful ones include:
+
+about:buildconfig::
+ Get information about how the staff client is built.
+about:config::
+ Tweak XULRunner settings.
+about:memory::
+ Get detailed information about the memory usage of the staff
+ client.