1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/mozapps/extensions/content/list.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,44 @@ 1.4 +<?xml version="1.0"?> 1.5 + 1.6 +<!-- This Source Code Form is subject to the terms of the Mozilla Public 1.7 + - License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 1.9 + 1.10 +<?xml-stylesheet href="chrome://global/skin/"?> 1.11 + 1.12 +<dialog id="addonList" windowtype="Addons:List" 1.13 + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 1.14 + onunload="shutdown();" 1.15 + buttons="accept,cancel" onload="init();"> 1.16 + 1.17 + <script type="application/javascript" src="chrome://global/content/globalOverlay.js"/> 1.18 + <script type="application/javascript" 1.19 + src="chrome://mozapps/content/extensions/list.js"/> 1.20 + 1.21 + <stringbundle id="extensionsBundle" 1.22 + src="chrome://mozapps/locale/extensions/extensions.properties"/> 1.23 + <stringbundle id="brandBundle" 1.24 + src="chrome://branding/locale/brand.properties"/> 1.25 + 1.26 + <hbox align="start"> 1.27 + <vbox> 1.28 + <image id="infoIcon"/> 1.29 + </vbox> 1.30 + <vbox class="spaced" style="min-width: 20em; max-width: 40em"> 1.31 + <label id="message1" class="spaced" hidden="true"/> 1.32 + <separator class="thin"/> 1.33 + <tree id="addonsTree" rows="6" hidecolumnpicker="true" hidden="true" class="spaced"> 1.34 + <treecols style="max-width: 25em;"> 1.35 + <treecol flex="1" id="nameColumn" hideheader="true"/> 1.36 + </treecols> 1.37 + <treechildren id="addonsChildren"/> 1.38 + </tree> 1.39 + <label id="message2" class="spaced" hidden="true"/> 1.40 + <label class="bold spaced" id="message3" hidden="true"/> 1.41 + <hbox id="moreInfoBox" hidden="true"> 1.42 + <label id="moreInfo" class="text-link spaced"/> 1.43 + <spacer flex="1"/> 1.44 + </hbox> 1.45 + </vbox> 1.46 + </hbox> 1.47 +</dialog>