1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/components/preferences/applicationManager.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,59 @@ 1.4 +<?xml version="1.0"?> 1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public 1.6 + - License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 1.8 + 1.9 +<?xml-stylesheet href="chrome://global/skin/"?> 1.10 + 1.11 +<!DOCTYPE dialog SYSTEM "chrome://browser/locale/preferences/applicationManager.dtd"> 1.12 + 1.13 +<dialog id="appManager" 1.14 + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 1.15 + buttons="accept,cancel" 1.16 + onload="gAppManagerDialog.init();" 1.17 + ondialogaccept="gAppManagerDialog.onOK();" 1.18 + ondialogcancel="gAppManagerDialog.onCancel();" 1.19 + title="&appManager.title;" 1.20 + style="&appManager.style;" 1.21 + persist="screenX screenY"> 1.22 + 1.23 + <script type="application/javascript" 1.24 + src="chrome://browser/content/utilityOverlay.js"/> 1.25 + <script type="application/javascript" 1.26 + src="chrome://browser/content/preferences/applicationManager.js"/> 1.27 + <script type="application/javascript" 1.28 + src="chrome://browser/content/preferences/applications.js"/> 1.29 + 1.30 + <commandset id="appManagerCommandSet"> 1.31 + <command id="cmd_remove" 1.32 + oncommand="gAppManagerDialog.remove();" 1.33 + disabled="true"/> 1.34 + </commandset> 1.35 + 1.36 + <keyset id="appManagerKeyset"> 1.37 + <key id="delete" keycode="VK_DELETE" command="cmd_remove"/> 1.38 + </keyset> 1.39 + 1.40 + <stringbundleset id="appManagerBundleset"> 1.41 + <stringbundle id="appManagerBundle" 1.42 + src="chrome://browser/locale/preferences/applicationManager.properties"/> 1.43 + </stringbundleset> 1.44 + 1.45 + <description id="appDescription"/> 1.46 + <separator class="thin"/> 1.47 + <hbox flex="1"> 1.48 + <listbox id="appList" onselect="gAppManagerDialog.onSelect();" flex="1"/> 1.49 + <vbox> 1.50 + <button id="remove" 1.51 + label="&remove.label;" 1.52 + accesskey="&remove.accesskey;" 1.53 + command="cmd_remove"/> 1.54 + <spacer flex="1"/> 1.55 + </vbox> 1.56 + </hbox> 1.57 + <vbox id="appDetails"> 1.58 + <separator class="thin"/> 1.59 + <label id="appType"/> 1.60 + <textbox id="appLocation" readonly="true" class="plain"/> 1.61 + </vbox> 1.62 +</dialog>