Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / browser / components / preferences / applicationManager.xul
blob7a793ad9a45f027f75e7f65c5d30aa3554730c88
1 <?xml version="1.0"?>
2 # ***** BEGIN LICENSE BLOCK *****
3 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 # The contents of this file are subject to the Mozilla Public License Version
6 # 1.1 (the "License"); you may not use this file except in compliance with
7 # the License. You may obtain a copy of the License at
8 # http://www.mozilla.org/MPL/
10 # Software distributed under the License is distributed on an "AS IS" basis,
11 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 # for the specific language governing rights and limitations under the
13 # License.
15 # The Original Code is mozilla.org Code.
17 # The Initial Developer of the Original Code is
18 # Mozilla Corporation.
19 # Portions created by the Initial Developer are Copyright (C) 2008
20 # the Initial Developer. All Rights Reserved.
22 # Contributor(s):
23 # Florian Queze <florian@queze.net> (Original author)
25 # Alternatively, the contents of this file may be used under the terms of
26 # either the GNU General Public License Version 2 or later (the "GPL"), or
27 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 # in which case the provisions of the GPL or the LGPL are applicable instead
29 # of those above. If you wish to allow use of your version of this file only
30 # under the terms of either the GPL or the LGPL, and not to allow others to
31 # use your version of this file under the terms of the MPL, indicate your
32 # decision by deleting the provisions above and replace them with the notice
33 # and other provisions required by the GPL or the LGPL. If you do not delete
34 # the provisions above, a recipient may use your version of this file under
35 # the terms of any one of the MPL, the GPL or the LGPL.
37 # ***** END LICENSE BLOCK *****
39 <?xml-stylesheet href="chrome://global/skin/"?>
41 <!DOCTYPE dialog SYSTEM "chrome://browser/locale/preferences/applicationManager.dtd">
43 <dialog id="appManager"
44 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
45 buttons="accept,cancel"
46 onload="gAppManagerDialog.init();"
47 ondialogaccept="gAppManagerDialog.onOK();"
48 ondialogcancel="gAppManagerDialog.onCancel();"
49 title="&appManager.title;"
50 style="&appManager.style;"
51 persist="screenX screenY">
53 <script type="application/javascript"
54 src="chrome://browser/content/utilityOverlay.js"/>
55 <script type="application/javascript"
56 src="chrome://browser/content/preferences/applicationManager.js"/>
57 <script type="application/javascript"
58 src="chrome://browser/content/preferences/applications.js"/>
60 <commandset id="appManagerCommandSet">
61 <command id="cmd_remove"
62 oncommand="gAppManagerDialog.remove();"
63 disabled="true"/>
64 </commandset>
66 <keyset id="appManagerKeyset">
67 <key id="delete" keycode="VK_DELETE" command="cmd_remove"/>
68 </keyset>
70 <stringbundleset id="appManagerBundleset">
71 <stringbundle id="appManagerBundle"
72 src="chrome://browser/locale/preferences/applicationManager.properties"/>
73 </stringbundleset>
75 <description id="appDescription"/>
76 <separator class="thin"/>
77 <hbox flex="1">
78 <listbox id="appList" onselect="gAppManagerDialog.onSelect();" flex="1"/>
79 <vbox>
80 <button id="remove"
81 label="&remove.label;"
82 accesskey="&remove.accesskey;"
83 command="cmd_remove"/>
84 <spacer flex="1"/>
85 </vbox>
86 </hbox>
87 <vbox id="appDetails">
88 <separator class="thin"/>
89 <label id="appType"/>
90 <textbox id="appLocation" readonly="true" class="plain"/>
91 </vbox>
92 </dialog>