1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/mozapps/extensions/content/blocklist.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,46 @@ 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 +<?xml-stylesheet href="chrome://mozapps/skin/extensions/blocklist.css"?> 1.12 +<?xml-stylesheet href="chrome://mozapps/content/extensions/blocklist.css"?> 1.13 + 1.14 +<!DOCTYPE dialog [ 1.15 +<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd"> 1.16 +%brandDTD; 1.17 +<!ENTITY % extensionsDTD SYSTEM "chrome://mozapps/locale/extensions/blocklist.dtd"> 1.18 +%extensionsDTD; 1.19 +]> 1.20 + 1.21 +<dialog windowtype="Addons:Blocklist" title="&blocklist.title;" align="stretch" 1.22 + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 1.23 + onload="init();" ondialogaccept="return finish(true)" 1.24 + ondialogcancel="return finish(false)" 1.25 + buttons="accept,cancel" style="&blocklist.style;" 1.26 + buttonlabelaccept="&blocklist.accept.label;" 1.27 + buttonaccesskeyaccept="&blocklist.accept.accesskey;"> 1.28 + 1.29 + <script type="application/javascript" src="chrome://global/content/globalOverlay.js"/> 1.30 + <script type="application/javascript" src="chrome://mozapps/content/extensions/blocklist.js"/> 1.31 + 1.32 + <hbox align="stretch" flex="1"> 1.33 + <vbox pack="start"> 1.34 + <image class="error-icon"/> 1.35 + </vbox> 1.36 + <vbox flex="1"> 1.37 + <label>&blocklist.summary;</label> 1.38 + <separator class="thin"/> 1.39 + <richlistbox id="addonList" flex="1"/> 1.40 + <separator class="thin"/> 1.41 + <description id="bothMessage" hidden="true" class="bold">&blocklist.softandhard;</description> 1.42 + <description id="hardBlockMessage" hidden="true" class="bold">&blocklist.hardblocked;</description> 1.43 + <description id="softBlockMessage" hidden="true" class="bold">&blocklist.softblocked;</description> 1.44 + <hbox pack="start"> 1.45 + <label id="moreInfo" class="text-link" value="&blocklist.moreinfo;"/> 1.46 + </hbox> 1.47 + </vbox> 1.48 + </hbox> 1.49 +</dialog>