Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | <?xml version="1.0"?> |
michael@0 | 2 | |
michael@0 | 3 | <!-- This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | - License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
michael@0 | 6 | |
michael@0 | 7 | <?xml-stylesheet href="chrome://global/skin/"?> |
michael@0 | 8 | |
michael@0 | 9 | <dialog id="addonList" windowtype="Addons:List" |
michael@0 | 10 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
michael@0 | 11 | onunload="shutdown();" |
michael@0 | 12 | buttons="accept,cancel" onload="init();"> |
michael@0 | 13 | |
michael@0 | 14 | <script type="application/javascript" src="chrome://global/content/globalOverlay.js"/> |
michael@0 | 15 | <script type="application/javascript" |
michael@0 | 16 | src="chrome://mozapps/content/extensions/list.js"/> |
michael@0 | 17 | |
michael@0 | 18 | <stringbundle id="extensionsBundle" |
michael@0 | 19 | src="chrome://mozapps/locale/extensions/extensions.properties"/> |
michael@0 | 20 | <stringbundle id="brandBundle" |
michael@0 | 21 | src="chrome://branding/locale/brand.properties"/> |
michael@0 | 22 | |
michael@0 | 23 | <hbox align="start"> |
michael@0 | 24 | <vbox> |
michael@0 | 25 | <image id="infoIcon"/> |
michael@0 | 26 | </vbox> |
michael@0 | 27 | <vbox class="spaced" style="min-width: 20em; max-width: 40em"> |
michael@0 | 28 | <label id="message1" class="spaced" hidden="true"/> |
michael@0 | 29 | <separator class="thin"/> |
michael@0 | 30 | <tree id="addonsTree" rows="6" hidecolumnpicker="true" hidden="true" class="spaced"> |
michael@0 | 31 | <treecols style="max-width: 25em;"> |
michael@0 | 32 | <treecol flex="1" id="nameColumn" hideheader="true"/> |
michael@0 | 33 | </treecols> |
michael@0 | 34 | <treechildren id="addonsChildren"/> |
michael@0 | 35 | </tree> |
michael@0 | 36 | <label id="message2" class="spaced" hidden="true"/> |
michael@0 | 37 | <label class="bold spaced" id="message3" hidden="true"/> |
michael@0 | 38 | <hbox id="moreInfoBox" hidden="true"> |
michael@0 | 39 | <label id="moreInfo" class="text-link spaced"/> |
michael@0 | 40 | <spacer flex="1"/> |
michael@0 | 41 | </hbox> |
michael@0 | 42 | </vbox> |
michael@0 | 43 | </hbox> |
michael@0 | 44 | </dialog> |