diff options
author | Ruben Rodriguez <ruben@gnu.org> | 2014-10-20 02:24:51 +0200 |
---|---|---|
committer | Ruben Rodriguez <ruben@gnu.org> | 2014-10-20 02:24:51 +0200 |
commit | 6e7918b6ccb69876d339a320091fdee811445395 (patch) | |
tree | 31cb88ee438d652fddefca1193f70289a8b3dcc8 /data/extensions/spyblock@gnu.org/chrome/content/ui/subscriptionSelection.xul | |
parent | 60e5b13c35d4d3ba21bb03b026750a0a414f6c77 (diff) |
Generalize data directory
Diffstat (limited to 'data/extensions/spyblock@gnu.org/chrome/content/ui/subscriptionSelection.xul')
-rw-r--r-- | data/extensions/spyblock@gnu.org/chrome/content/ui/subscriptionSelection.xul | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/data/extensions/spyblock@gnu.org/chrome/content/ui/subscriptionSelection.xul b/data/extensions/spyblock@gnu.org/chrome/content/ui/subscriptionSelection.xul new file mode 100644 index 0000000..17f1854 --- /dev/null +++ b/data/extensions/spyblock@gnu.org/chrome/content/ui/subscriptionSelection.xul @@ -0,0 +1,75 @@ +<?xml version="1.0"?> + +<!-- + - This file is part of Adblock Plus <http://adblockplus.org/>, + - Copyright (C) 2006-2014 Eyeo GmbH + - + - Adblock Plus is free software: you can redistribute it and/or modify + - it under the terms of the GNU General Public License version 3 as + - published by the Free Software Foundation. + - + - Adblock Plus is distributed in the hope that it will be useful, + - but WITHOUT ANY WARRANTY; without even the implied warranty of + - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + - GNU General Public License for more details. + - + - You should have received a copy of the GNU General Public License + - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. + --> + +<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> +<?xml-stylesheet href="chrome://adblockplus/skin/subscriptionSelection.css" type="text/css"?> + +<!DOCTYPE dialog SYSTEM "chrome://adblockplus/locale/subscriptionSelection.dtd"> + +<dialog + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + buttons="accept,cancel" + buttonlabelaccept="&addSubscription.label;" + title="&dialog.title;" + id="abpSubscriptionSelection" + windowtype="abp:subscriptionSelection" + onload="init();" + ondialogaccept="return addSubscription();"> + + <script type="application/x-javascript;version=1.7" src="utils.js"/> + <script type="application/x-javascript;version=1.7" src="subscriptionSelection.js"/> + + <deck id="all-subscriptions-container" selectedIndex="0" flex="1"> + <vbox pack="center"> + <progressmeter id="all-subscriptions-loading" mode="undetermined"/> + </vbox> + <vbox> + <richlistbox id="all-subscriptions" onselect="onSelectionChange()" flex="1"/> + <hbox id="subscriptionInfo" invisible="true"> + <label id="view-list" class="text-link" value="&viewList.label;" onclick="UI.loadInBrowser(this.getAttribute('_url'))"/> + <spacer flex="1"/> + <label id="visit-homepage" class="text-link" value="&visitHomepage.label;" onclick="UI.loadInBrowser(this.getAttribute('_url'))"/> + </hbox> + </vbox> + <vbox pack="center" align="center"> + <description value="&list.download.failed;"/> + <hbox> + <button label="&list.download.retry;" oncommand="reloadSubscriptionList()"/> + <button label="&list.download.website;" oncommand="UI.loadDocLink('subscriptions')"/> + </hbox> + </vbox> + </deck> + + <description id="fromWebText" hidden="true">&fromWeb.description;</description> + + <groupbox id="differentSubscription"> + <label value="&title.label;" control="title"/> + <textbox id="title"/> + + <label value="&location.label;" control="location"/> + <textbox id="location"/> + </groupbox> + + <description id="supplementMessage" invisible="true" _textTemplate="&supplementMessage;"> + &supplementMessage; + <label class="text-link" oncommand="">dummy dummy dummy dummy dummy dummy dummy dummy dummy dummy</label> + </description> + <checkbox id="addMainSubscription" invisible="true" checked="true" _labelTemplate="&addMain.label;" label="&addMain.label;"/> + +</dialog> |