www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 66ca236876ffa985bf2bb2eb499797456d1aa7b9
parent 3552fe92b66c32c59b5e6d8013fd92f5eac0418f
Author: Dan Stillman <dstillman@zotero.org>
Date:   Tue, 13 May 2014 17:32:37 -0400

Use XUL xmlns instead of prefix in zoterosearch.xml

Diffstat:
Mchrome/content/zotero/bindings/zoterosearch.xml | 41+++++++++++++++++++++--------------------
1 file changed, 21 insertions(+), 20 deletions(-)

diff --git a/chrome/content/zotero/bindings/zoterosearch.xml b/chrome/content/zotero/bindings/zoterosearch.xml @@ -205,26 +205,27 @@ </implementation> <content> - <xul:vbox id="search-box" flex="1" onkeypress="document.getBindingParent(this).handleKeyPress(event)"> - <xul:groupbox xbl:inherits="flex"> - <xul:caption align="center"> - <xul:label value="&zotero.search.joinMode.prefix;"/> - <xul:menulist id="joinModeMenu" oncommand="document.getBindingParent(this).updateJoinMode(); event.stopPropagation()"> - <xul:menupopup> - <xul:menuitem label="&zotero.search.joinMode.any;" value="any"/> - <xul:menuitem label="&zotero.search.joinMode.all;" value="all" selected="true"/> - </xul:menupopup> - </xul:menulist> - <xul:label value="&zotero.search.joinMode.suffix;"/> - </xul:caption> - <xul:vbox id="conditions"/> - </xul:groupbox> - <xul:hbox> - <xul:checkbox id="recursiveCheckbox" label="&zotero.search.recursive.label;" oncommand="document.getBindingParent(this).updateCheckbox('recursive'); event.stopPropagation()"/> - <xul:checkbox id="noChildrenCheckbox" label="&zotero.search.noChildren;" oncommand="document.getBindingParent(this).updateCheckbox('noChildren'); event.stopPropagation()"/> - </xul:hbox> - <xul:checkbox id="includeParentsAndChildrenCheckbox" label="&zotero.search.includeParentsAndChildren;" oncommand="document.getBindingParent(this).updateCheckbox('includeParentsAndChildren'); event.stopPropagation()"/> - </xul:vbox> + <vbox xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + id="search-box" flex="1" onkeypress="document.getBindingParent(this).handleKeyPress(event)"> + <groupbox xbl:inherits="flex"> + <caption align="center"> + <label value="&zotero.search.joinMode.prefix;"/> + <menulist id="joinModeMenu" oncommand="document.getBindingParent(this).updateJoinMode(); event.stopPropagation()"> + <menupopup> + <menuitem label="&zotero.search.joinMode.any;" value="any"/> + <menuitem label="&zotero.search.joinMode.all;" value="all" selected="true"/> + </menupopup> + </menulist> + <label value="&zotero.search.joinMode.suffix;"/> + </caption> + <vbox id="conditions"/> + </groupbox> + <hbox> + <checkbox id="recursiveCheckbox" label="&zotero.search.recursive.label;" oncommand="document.getBindingParent(this).updateCheckbox('recursive'); event.stopPropagation()"/> + <checkbox id="noChildrenCheckbox" label="&zotero.search.noChildren;" oncommand="document.getBindingParent(this).updateCheckbox('noChildren'); event.stopPropagation()"/> + </hbox> + <checkbox id="includeParentsAndChildrenCheckbox" label="&zotero.search.includeParentsAndChildren;" oncommand="document.getBindingParent(this).updateCheckbox('includeParentsAndChildren'); event.stopPropagation()"/> + </vbox> </content> </binding>