2006-08-08 23:00:33 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
2020-12-28 01:03:48 +00:00
|
|
|
<?xml-stylesheet href="chrome://zotero-platform/content/zotero-react-client.css"?>
|
|
|
|
|
Merged revisions 2989,2994,2996-2999,3001,3003-3004,3007,3010,3012,3015-3016,3026-3029,3036-3038,3040-3041,3046,3048,3050,3052,3054-3055,3057-3058,3066,3069-3073 from 1.0 branch via svnmerge
2008-07-22 05:45:32 +00:00
|
|
|
<!DOCTYPE window [
|
|
|
|
<!ENTITY % zoteroDTD SYSTEM "chrome://zotero/locale/zotero.dtd" >
|
|
|
|
%zoteroDTD;
|
|
|
|
]>
|
2006-08-08 23:00:33 +00:00
|
|
|
<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
Merged revisions 2989,2994,2996-2999,3001,3003-3004,3007,3010,3012,3015-3016,3026-3029,3036-3038,3040-3041,3046,3048,3050,3052,3054-3055,3057-3058,3066,3069-3073 from 1.0 branch via svnmerge
2008-07-22 05:45:32 +00:00
|
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
2007-10-23 07:11:59 +00:00
|
|
|
title="&zotero.exportOptions.title;" buttons="cancel,accept"
|
2006-10-02 23:15:27 +00:00
|
|
|
ondialogaccept="Zotero_File_Interface_Export.accept()"
|
|
|
|
ondialogcancel="Zotero_File_Interface_Export.cancel()"
|
|
|
|
id="zotero-export-options"
|
|
|
|
onload="Zotero_File_Interface_Export.init()">
|
2007-10-23 07:11:59 +00:00
|
|
|
|
2013-02-18 21:15:44 +00:00
|
|
|
<script src="include.js"/>
|
|
|
|
<script src="charsetMenu.js"/>
|
|
|
|
<script src="exportOptions.js"/>
|
|
|
|
<script type="application/javascript">
|
Merged revisions 2989,2994,2996-2999,3001,3003-3004,3007,3010,3012,3015-3016,3026-3029,3036-3038,3040-3041,3046,3048,3050,3052,3054-3055,3057-3058,3066,3069-3073 from 1.0 branch via svnmerge
2008-07-22 05:45:32 +00:00
|
|
|
<![CDATA[
|
|
|
|
var observerService = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
|
|
|
|
observerService.notifyObservers(null, "charsetmenu-selected", "other");
|
|
|
|
]]>
|
|
|
|
</script>
|
|
|
|
|
2007-10-23 07:11:59 +00:00
|
|
|
|
|
|
|
<vbox id="zotero-export-options-container" flex="1">
|
2016-12-23 16:07:10 +00:00
|
|
|
<hbox align="center">
|
2007-10-23 07:11:59 +00:00
|
|
|
<label value="&zotero.exportOptions.format.label;" control="format-menu"/>
|
|
|
|
<menulist id="format-menu" oncommand="Zotero_File_Interface_Export.updateOptions()">
|
|
|
|
<menupopup id="format-popup"/>
|
|
|
|
</menulist>
|
|
|
|
</hbox>
|
|
|
|
<groupbox id="translator-options">
|
Merged revisions 2989,2994,2996-2999,3001,3003-3004,3007,3010,3012,3015-3016,3026-3029,3036-3038,3040-3041,3046,3048,3050,3052,3054-3055,3057-3058,3066,3069-3073 from 1.0 branch via svnmerge
2008-07-22 05:45:32 +00:00
|
|
|
<caption id="translator-options-label" label="&zotero.exportOptions.translatorOptions.label;"/>
|
|
|
|
|
|
|
|
<vbox id="charset-box" hidden="true">
|
|
|
|
<separator class="thin"/>
|
|
|
|
<label value="&zotero.charset.label;:" control="charset-menu"/>
|
|
|
|
<menulist id="export-option-exportCharset"/>
|
|
|
|
</vbox>
|
2007-10-23 07:11:59 +00:00
|
|
|
</groupbox>
|
|
|
|
</vbox>
|
2006-08-08 23:00:33 +00:00
|
|
|
</dialog>
|