merge.xul (2302B)
1 <?xml version="1.0"?> 2 <!-- 3 ***** BEGIN LICENSE BLOCK ***** 4 5 Copyright © 2009 Center for History and New Media 6 George Mason University, Fairfax, Virginia, USA 7 http://zotero.org 8 9 This file is part of Zotero. 10 11 Zotero is free software: you can redistribute it and/or modify 12 it under the terms of the GNU Affero General Public License as published by 13 the Free Software Foundation, either version 3 of the License, or 14 (at your option) any later version. 15 16 Zotero is distributed in the hope that it will be useful, 17 but WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 GNU Affero General Public License for more details. 20 21 You should have received a copy of the GNU Affero General Public License 22 along with Zotero. If not, see <http://www.gnu.org/licenses/>. 23 24 ***** END LICENSE BLOCK ***** 25 --> 26 27 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 28 <?xml-stylesheet href="chrome://zotero/skin/zotero.css" type="text/css"?> 29 <?xml-stylesheet href="chrome://zotero/skin/merge.css" type="text/css"?> 30 31 <!DOCTYPE window SYSTEM "chrome://zotero/locale/zotero.dtd"> 32 33 <wizard 34 id="zotero-merge-window" 35 orient="vertical" 36 title="" 37 onwizardfinish="return Zotero_Merge_Window.onFinish()" 38 onwizardcancel="return Zotero_Merge_Window.onCancel()" 39 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 40 41 <script src="include.js"/> 42 <script src="merge.js"/> 43 44 <wizardpage onpageshow="Zotero_Merge_Window.init()" 45 onpagerewound="Zotero_Merge_Window.onBack(); return false" 46 onpageadvanced="return Zotero_Merge_Window.onNext()" 47 label="&zotero.merge.title;"> 48 <description id="zotero-merge-instructions"/> 49 <zoteromergegroup flex="1"/> 50 <separator class="thin"/> 51 <hbox align="center"> 52 <separator orient="vertical" flex="1"/> 53 <hbox> 54 <checkbox id="resolve-all" 55 oncommand="Zotero_Merge_Window.onResolveAllChange(this.checked)"/> 56 </hbox> 57 <separator orient="vertical"/> 58 <hbox id="zotero-step-count"> 59 <label id="zotero-merge-num-objects"/> 60 <label value="&zotero.merge.of;"/> 61 <label id="zotero-merge-total-objects"/> 62 </hbox> 63 </hbox> 64 </wizardpage> 65 </wizard>