www

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

bibliography.xul (1923B)


      1 <?xml version="1.0"?>
      2 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
      3 <?xml-stylesheet href="chrome://zotero/skin/bibliography.css"?>
      4 <!DOCTYPE window SYSTEM "chrome://zotero/locale/zotero.dtd">
      5 <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
      6 	title="&zotero.bibliography.title;" buttons="cancel,accept"
      7 	ondialogaccept="Zotero_File_Interface_Bibliography.acceptSelection()"
      8 	id="zotero-bibliography"
      9 	onload="Zotero_File_Interface_Bibliography.init()">
     10 
     11 	<script src="include.js"/>
     12 	<script src="bibliography.js"/>
     13 	
     14 	<vbox id="zotero-bibliography-container">
     15 		<groupbox>
     16 			<caption label="&zotero.bibliography.style.label;"/>
     17 			<listbox id="style-listbox" onselect="Zotero_File_Interface_Bibliography.styleChanged()"/>
     18 			<hbox align="right">
     19 				<label id="manage-styles" class="text-link"
     20 					onclick="Zotero_File_Interface_Bibliography.manageStyles()">&zotero.bibliography.manageStyles;</label>
     21 			</hbox>
     22 		</groupbox>
     23 		<groupbox>
     24 			<hbox align="center">
     25 				<caption label="&zotero.bibliography.locale.label;"/>
     26 				<menulist id="locale-menu" oncommand="Zotero_File_Interface_Bibliography.localeChanged(this.selectedItem.value)"/>
     27 			</hbox>
     28 		</groupbox>
     29 		<groupbox>
     30 			<caption label="&zotero.bibliography.outputMode;"/>
     31 			<radiogroup id="output-mode-radio">
     32 				<radio id="citations"/>
     33 				<radio id="bibliography" label="&zotero.bibliography.bibliography;"/>
     34 			</radiogroup>
     35 		</groupbox>
     36 		<groupbox>
     37 			<caption label="&zotero.bibliography.outputMethod;"/>
     38 			<radiogroup id="output-method-radio">
     39 				<radio id="save-as-rtf" label="&zotero.bibliography.saveAsRTF.label;"/>
     40 				<radio id="save-as-html" label="&zotero.bibliography.saveAsHTML.label;"/>
     41 				<radio id="copy-to-clipboard" label="&zotero.bibliography.copyToClipboard.label;"/>
     42 				<radio id="print" label="&zotero.bibliography.print.label;"/>
     43 			</radiogroup>
     44 		</groupbox>
     45 	</vbox>
     46 </dialog>