browser/components/preferences/applicationManager.xul

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 <?xml version="1.0"?>
     2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
     3    - License, v. 2.0. If a copy of the MPL was not distributed with this
     4    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     6 <?xml-stylesheet href="chrome://global/skin/"?>
     8 <!DOCTYPE dialog SYSTEM "chrome://browser/locale/preferences/applicationManager.dtd">
    10 <dialog id="appManager"
    11         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
    12         buttons="accept,cancel"
    13         onload="gAppManagerDialog.init();"
    14         ondialogaccept="gAppManagerDialog.onOK();"
    15         ondialogcancel="gAppManagerDialog.onCancel();"
    16         title="&appManager.title;"
    17         style="&appManager.style;"
    18         persist="screenX screenY">
    20   <script type="application/javascript"
    21           src="chrome://browser/content/utilityOverlay.js"/>
    22   <script type="application/javascript"
    23           src="chrome://browser/content/preferences/applicationManager.js"/>
    24   <script type="application/javascript"
    25           src="chrome://browser/content/preferences/applications.js"/>
    27   <commandset id="appManagerCommandSet">
    28     <command id="cmd_remove"
    29              oncommand="gAppManagerDialog.remove();"
    30              disabled="true"/>
    31   </commandset>
    33   <keyset id="appManagerKeyset">
    34     <key id="delete" keycode="VK_DELETE" command="cmd_remove"/>
    35   </keyset>
    37   <stringbundleset id="appManagerBundleset">
    38     <stringbundle id="appManagerBundle"
    39                   src="chrome://browser/locale/preferences/applicationManager.properties"/>
    40   </stringbundleset>
    42   <description id="appDescription"/>
    43   <separator class="thin"/>
    44   <hbox flex="1">
    45     <listbox id="appList" onselect="gAppManagerDialog.onSelect();" flex="1"/>
    46     <vbox>
    47       <button id="remove"
    48               label="&remove.label;"
    49               accesskey="&remove.accesskey;"
    50               command="cmd_remove"/>
    51       <spacer flex="1"/>
    52     </vbox>
    53   </hbox>
    54   <vbox id="appDetails">
    55     <separator class="thin"/>
    56     <label id="appType"/>
    57     <textbox id="appLocation" readonly="true" class="plain"/>
    58   </vbox>
    59 </dialog>

mercurial