diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-11 07:03:16 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-11 07:03:16 -0500 |
commit | 203eb0f61a09372310a2a8fb57e169cb3f47800b (patch) | |
tree | 8490329d3dae4de3c7ffd127bce1f65fdc009abd /toolkit/mozapps/extensions/content/blocklist.xul | |
parent | e45706ca3acbb6530419433212becc61d5953a2d (diff) | |
parent | 8f6d3dab81c7f8f97ef197e26ab9439b09735b8f (diff) | |
download | UXP-203eb0f61a09372310a2a8fb57e169cb3f47800b.tar UXP-203eb0f61a09372310a2a8fb57e169cb3f47800b.tar.gz UXP-203eb0f61a09372310a2a8fb57e169cb3f47800b.tar.lz UXP-203eb0f61a09372310a2a8fb57e169cb3f47800b.tar.xz UXP-203eb0f61a09372310a2a8fb57e169cb3f47800b.zip |
Merge branch 'ext-work'FF_Checkpoint_1
Diffstat (limited to 'toolkit/mozapps/extensions/content/blocklist.xul')
-rw-r--r-- | toolkit/mozapps/extensions/content/blocklist.xul | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/toolkit/mozapps/extensions/content/blocklist.xul b/toolkit/mozapps/extensions/content/blocklist.xul new file mode 100644 index 000000000..240d9e4e1 --- /dev/null +++ b/toolkit/mozapps/extensions/content/blocklist.xul @@ -0,0 +1,46 @@ +<?xml version="1.0"?> + +<!-- This Source Code Form is subject to the terms of the Mozilla Public + - License, v. 2.0. If a copy of the MPL was not distributed with this + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> + +<?xml-stylesheet href="chrome://global/skin/"?> +<?xml-stylesheet href="chrome://mozapps/skin/extensions/blocklist.css"?> +<?xml-stylesheet href="chrome://mozapps/content/extensions/blocklist.css"?> + +<!DOCTYPE dialog [ +<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd"> +%brandDTD; +<!ENTITY % extensionsDTD SYSTEM "chrome://mozapps/locale/extensions/blocklist.dtd"> +%extensionsDTD; +]> + +<dialog windowtype="Addons:Blocklist" title="&blocklist.title;" align="stretch" + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + onload="init();" ondialogaccept="return finish(true)" + ondialogcancel="return finish(false)" + buttons="accept,cancel" style="&blocklist.style;" + buttonlabelaccept="&blocklist.accept.label;" + buttonaccesskeyaccept="&blocklist.accept.accesskey;"> + + <script type="application/javascript" src="chrome://global/content/globalOverlay.js"/> + <script type="application/javascript" src="chrome://mozapps/content/extensions/blocklist.js"/> + + <hbox align="stretch" flex="1"> + <vbox pack="start"> + <image class="error-icon"/> + </vbox> + <vbox flex="1"> + <label>&blocklist.summary;</label> + <separator class="thin"/> + <richlistbox id="addonList" flex="1"/> + <separator class="thin"/> + <description id="bothMessage" hidden="true" class="bold">&blocklist.softandhard;</description> + <description id="hardBlockMessage" hidden="true" class="bold">&blocklist.hardblocked;</description> + <description id="softBlockMessage" hidden="true" class="bold">&blocklist.softblocked;</description> + <hbox pack="start"> + <label id="moreInfo" class="text-link" value="&blocklist.moreinfo;"/> + </hbox> + </vbox> + </hbox> +</dialog> |