diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-10 04:00:58 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-10 04:00:58 -0500 |
commit | deea787c2efbb9c89caec8d9efc023ffafe75613 (patch) | |
tree | 6dbe55f7d24e67ecdcc821b8c5492f6c17217852 /toolkit/mozapps/extensions/content/selectAddons.xul | |
parent | 37d5300335d81cecbecc99812747a657588c63eb (diff) | |
download | UXP-deea787c2efbb9c89caec8d9efc023ffafe75613.tar UXP-deea787c2efbb9c89caec8d9efc023ffafe75613.tar.gz UXP-deea787c2efbb9c89caec8d9efc023ffafe75613.tar.lz UXP-deea787c2efbb9c89caec8d9efc023ffafe75613.tar.xz UXP-deea787c2efbb9c89caec8d9efc023ffafe75613.zip |
Import Tycho's Add-on Manager
Diffstat (limited to 'toolkit/mozapps/extensions/content/selectAddons.xul')
-rw-r--r-- | toolkit/mozapps/extensions/content/selectAddons.xul | 124 |
1 files changed, 124 insertions, 0 deletions
diff --git a/toolkit/mozapps/extensions/content/selectAddons.xul b/toolkit/mozapps/extensions/content/selectAddons.xul new file mode 100644 index 000000000..0fa292ecf --- /dev/null +++ b/toolkit/mozapps/extensions/content/selectAddons.xul @@ -0,0 +1,124 @@ +<?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/" type="text/css"?> +<?xml-stylesheet href="chrome://mozapps/content/extensions/selectAddons.css" type="text/css"?> +<?xml-stylesheet href="chrome://mozapps/skin/extensions/selectAddons.css" type="text/css"?> + +<!DOCTYPE window [ +<!ENTITY % updateDTD SYSTEM "chrome://mozapps/locale/extensions/selectAddons.dtd"> +<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd"> +%updateDTD; +%brandDTD; +]> + +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + style="&upgrade.style;" id="select-window"> + + <script type="application/javascript" src="chrome://mozapps/content/extensions/selectAddons.js"/> + <stringbundle id="strings" src="chrome://mozapps/locale/extensions/selectAddons.properties"/> + + <deck id="view-deck" flex="1" align="stretch" pack="stretch"> + <vbox id="checking" align="stretch"> + <vbox flex="1"> + <label id="checking-heading" class="heading">&checking.heading;</label> + </vbox> + <progressmeter id="checking-progress" class="progress" mode="undetermined"/> + <vbox flex="1"> + <label id="checking-progress-label" class="progress-label">&checking.progress.label;</label> + </vbox> + </vbox> + + <vbox id="select" align="stretch"> + <label id="select-heading" class="heading">&select.heading;</label> + + <description id="select-description">&select.description;</description> + + <vbox id="select-list" align="stretch" flex="1"> + <hbox id="select-header"> + <hbox class="select-keep select-cell" style="&select.keep.style;"> + <label value="&select.keep;"/> + </hbox> + <hbox class="select-icon select-cell"/> + <hbox id="heading-name" class="select-name select-cell" style="&select.name.style;"> + <label value="&select.name;"/> + </hbox> + <hbox id="heading-action" class="select-action select-cell" style="&select.action.style;"> + <label value="&select.action;"/> + </hbox> + <hbox class="select-source select-cell" flex="1"> + <label value="&select.source;"/> + </hbox> + </hbox> + + <scrollbox id="select-scrollbox" flex="1"> + <grid id="select-grid" flex="1"> + <columns> + <column style="&select.keep.style;"/> + <column/> + <column id="column-name"/> + <column id="column-action" class="select-action"/> + <column class="select-source" flex="1"/> + </columns> + + <rows id="select-rows"/> + </grid> + </scrollbox> + </vbox> + </vbox> + + <vbox id="confirm" align="stretch"> + <label id="confirm-heading" class="heading">&confirm.heading;</label> + + <description id="confirm-description">&confirm.description;</description> + + <scrollbox id="confirm-scrollbox" flex="1"> + <vbox id="disable-list" class="action-list" hidden="true"> + <label class="action-header">&action.disable.heading;</label> + </vbox> + + <vbox id="incompatible-list" class="action-list" hidden="true"> + <label class="action-header">&action.incompatible.heading;</label> + </vbox> + + <vbox id="update-list" class="action-list" hidden="true"> + <label class="action-header">&action.update.heading;</label> + </vbox> + + <vbox id="enable-list" class="action-list" hidden="true"> + <label class="action-header">&action.enable.heading;</label> + </vbox> + </scrollbox> + </vbox> + + <vbox id="update" align="stretch"> + <vbox flex="1"> + <label id="update-heading" class="heading">&update.heading;</label> + </vbox> + <progressmeter id="update-progress" class="progress" mode="undetermined"/> + <vbox flex="1"> + <label id="update-progress-label" class="progress-label">&update.progress.label;</label> + </vbox> + </vbox> + + <vbox id="errors"> + <vbox flex="1"> + <label id="errors-heading" class="heading">&errors.heading;</label> + </vbox> + <description id="errors-description" value="&errors.description;"/> + <spacer flex="1"/> + </vbox> + </deck> + + <hbox id="footer" align="center"> + <label id="footer-label" flex="1">&footer.label;</label> + <button id="cancel" label="&cancel.label;" oncommand="window.close()"/> + <button id="back" label="&back.label;" oncommand="gView.back()" hidden="true"/> + <button id="next" label="&next.label;" oncommand="gView.next()" hidden="true"/> + <button id="done" label="&done.label;" oncommand="gView.done()" hidden="true"/> + </hbox> + +</window> |