diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-02 05:06:10 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-02 05:06:10 -0500 |
commit | 6d614170cbfa958564eb5f824234ad5a9e484344 (patch) | |
tree | 3e1eb384382f30987cb2e64bd654afa8b74fd06b /application/basilisk/components/preferences/handlers.xml | |
parent | 2a6b605d64b19411a300efdbbd7f78c349f90206 (diff) | |
download | UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.gz UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.lz UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.xz UXP-6d614170cbfa958564eb5f824234ad5a9e484344.zip |
Revert "Add Basilisk"
This reverts commit e72ef92b5bdc43cd2584198e2e54e951b70299e8.
Diffstat (limited to 'application/basilisk/components/preferences/handlers.xml')
-rw-r--r-- | application/basilisk/components/preferences/handlers.xml | 107 |
1 files changed, 0 insertions, 107 deletions
diff --git a/application/basilisk/components/preferences/handlers.xml b/application/basilisk/components/preferences/handlers.xml deleted file mode 100644 index 902e023ca..000000000 --- a/application/basilisk/components/preferences/handlers.xml +++ /dev/null @@ -1,107 +0,0 @@ -<?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/. --> -<!-- import-globals-from in-content/applications.js --> - -<!DOCTYPE overlay [ - <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd"> - <!ENTITY % applicationsDTD SYSTEM "chrome://browser/locale/preferences/applications.dtd"> - <!ENTITY % containersDTD SYSTEM "chrome://browser/locale/preferences/containers.dtd"> - %brandDTD; - %applicationsDTD; - %containersDTD; -]> - -<bindings id="handlerBindings" - xmlns="http://www.mozilla.org/xbl" - xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" - xmlns:xbl="http://www.mozilla.org/xbl"> - - <binding id="handler-base" extends="chrome://global/content/bindings/richlistbox.xml#richlistitem"> - <implementation> - <property name="type" readonly="true"> - <getter> - return this.getAttribute("type"); - </getter> - </property> - </implementation> - </binding> - - <binding id="handler" extends="chrome://browser/content/preferences/handlers.xml#handler-base"> - <content> - <xul:hbox flex="1" equalsize="always"> - <xul:hbox flex="1" align="center" xbl:inherits="tooltiptext=typeDescription"> - <xul:image src="moz-icon://goat?size=16" class="typeIcon" - xbl:inherits="src=typeIcon" height="16" width="16"/> - <xul:label flex="1" crop="end" xbl:inherits="value=typeDescription"/> - </xul:hbox> - <xul:hbox flex="1" align="center" xbl:inherits="tooltiptext=actionDescription"> - <xul:image xbl:inherits="src=actionIcon" height="16" width="16" class="actionIcon"/> - <xul:label flex="1" crop="end" xbl:inherits="value=actionDescription"/> - </xul:hbox> - </xul:hbox> - </content> - </binding> - - <binding id="handler-selected" extends="chrome://browser/content/preferences/handlers.xml#handler-base"> - <content> - <xul:hbox flex="1" equalsize="always"> - <xul:hbox flex="1" align="center" xbl:inherits="tooltiptext=typeDescription"> - <xul:image src="moz-icon://goat?size=16" class="typeIcon" - xbl:inherits="src=typeIcon" height="16" width="16"/> - <xul:label flex="1" crop="end" xbl:inherits="value=typeDescription"/> - </xul:hbox> - <xul:hbox flex="1"> - <xul:menulist class="actionsMenu" flex="1" crop="end" selectedIndex="1" - xbl:inherits="tooltiptext=actionDescription" - oncommand="gApplicationsPane.onSelectAction(event.originalTarget)"> - <xul:menupopup/> - </xul:menulist> - </xul:hbox> - </xul:hbox> - </content> - - <implementation> - <constructor> - gApplicationsPane.rebuildActionsMenu(); - </constructor> - </implementation> - - </binding> - - <binding id="container"> - <content> - <xul:hbox flex="1" equalsize="always"> - <xul:hbox flex="1" align="center"> - <xul:hbox xbl:inherits="data-identity-icon=containerIcon,data-identity-color=containerColor" height="24" width="24" class="userContext-icon"/> - <xul:label flex="1" crop="end" xbl:inherits="value=containerName"/> - </xul:hbox> - <xul:hbox flex="1" align="right"> - <xul:button anonid="preferencesButton" - label="&preferencesButton.label;" - xbl:inherits="value=userContextId" - onclick="gContainersPane.onPreferenceClick(event.originalTarget)"> - </xul:button> - <xul:button anonid="removeButton" - label="&removeButton.label;" - xbl:inherits="value=userContextId" - onclick="gContainersPane.onRemoveClick(event.originalTarget)"> - </xul:button> - </xul:hbox> - </xul:hbox> - </content> - </binding> - - <binding id="offlineapp" - extends="chrome://global/content/bindings/listbox.xml#listitem"> - <content> - <children> - <xul:listcell xbl:inherits="label=origin"/> - <xul:listcell xbl:inherits="label=usage"/> - </children> - </content> - </binding> - -</bindings> |