2006-08-08 23:00:33 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
2023-04-01 08:37:55 +03:00
|
|
|
<?xml-stylesheet href="chrome://zotero-platform/content/zotero.css"?>
|
2020-12-27 20:03:48 -05:00
|
|
|
|
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;
|
|
|
|
]>
|
2022-05-16 14:27:23 -07:00
|
|
|
<window 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#"
|
2022-06-24 09:11:38 -04:00
|
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
2022-05-16 14:27:23 -07:00
|
|
|
title="&zotero.exportOptions.title;"
|
2024-04-19 19:32:50 +08:00
|
|
|
drawintitlebar-platforms="mac"
|
2006-10-02 23:15:27 +00:00
|
|
|
onload="Zotero_File_Interface_Export.init()">
|
2022-05-16 14:27:23 -07:00
|
|
|
<dialog
|
|
|
|
buttons="cancel,accept"
|
|
|
|
id="zotero-export-options">
|
2007-10-23 07:11:59 +00:00
|
|
|
|
2024-03-02 15:51:55 +08:00
|
|
|
<script>
|
|
|
|
var { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
|
|
|
|
Services.scriptloader.loadSubScript("chrome://zotero/content/include.js", this);
|
2024-04-19 19:32:50 +08:00
|
|
|
Services.scriptloader.loadSubScript("chrome://zotero/content/titlebar.js", this);
|
2024-03-02 15:51:55 +08:00
|
|
|
Services.scriptloader.loadSubScript("chrome://zotero/content/customElements.js", this);
|
|
|
|
</script>
|
2013-02-18 16:15:44 -05:00
|
|
|
<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 11:07:10 -05:00
|
|
|
<hbox align="center">
|
2007-10-23 07:11:59 +00:00
|
|
|
<label value="&zotero.exportOptions.format.label;" control="format-menu"/>
|
2022-06-24 09:11:38 -04:00
|
|
|
<menulist id="format-menu" oncommand="Zotero_File_Interface_Export.updateOptions()" native="true">
|
2007-10-23 07:11:59 +00:00
|
|
|
<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"/>
|
2022-06-24 09:11:38 -04:00
|
|
|
<menulist id="export-option-exportCharset" native="true"/>
|
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
|
|
|
</vbox>
|
2007-10-23 07:11:59 +00:00
|
|
|
</groupbox>
|
|
|
|
</vbox>
|
2022-05-16 14:27:23 -07:00
|
|
|
</dialog>
|
|
|
|
</window>
|