
Clicking it cancels the current window, opens the Cite pane of the prefs, and selects the Styles tab. (This will be more useful once we have inline style installation from that pane.)
91 lines
3.8 KiB
XML
91 lines
3.8 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
***** BEGIN LICENSE BLOCK *****
|
|
|
|
Copyright © 2009 Center for History and New Media
|
|
George Mason University, Fairfax, Virginia, USA
|
|
http://zotero.org
|
|
|
|
This file is part of Zotero.
|
|
|
|
Zotero is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Zotero is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
***** END LICENSE BLOCK *****
|
|
-->
|
|
<?xml-stylesheet href="chrome://global/skin/global.css"?>
|
|
<?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css"?>
|
|
<?xml-stylesheet href="chrome://zotero/skin/bibliography.css"?>
|
|
<!DOCTYPE window SYSTEM "chrome://zotero/locale/zotero.dtd">
|
|
|
|
<dialog
|
|
id="zotero-doc-prefs-dialog"
|
|
orient="vertical"
|
|
buttons="accept,cancel"
|
|
title="&zotero.integration.docPrefs.title;"
|
|
onload="Zotero_File_Interface_Bibliography.init();"
|
|
ondialogaccept="Zotero_File_Interface_Bibliography.acceptSelection();"
|
|
onclose="document.documentElement.cancelDialog(); event.preventDefault(); event.stopPropagation();"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
persist="screenX screenY"
|
|
style="width: 600px">
|
|
|
|
<script src="../include.js"/>
|
|
<script src="../bibliography.js"/>
|
|
<vbox id="zotero-bibliography-container">
|
|
<groupbox>
|
|
<caption label="&zotero.bibliography.style.label;"/>
|
|
<listbox id="style-listbox" onselect="Zotero_File_Interface_Bibliography.styleChanged()"/>
|
|
<hbox align="right">
|
|
<label id="manage-styles" class="text-link"
|
|
onclick="Zotero_File_Interface_Bibliography.manageStyles()">&zotero.bibliography.manageStyles;</label>
|
|
</hbox>
|
|
</groupbox>
|
|
|
|
<groupbox>
|
|
<hbox align="center">
|
|
<caption label="&zotero.bibliography.locale.label;"/>
|
|
<menulist id="locale-menu" oncommand="Zotero_File_Interface_Bibliography.localeChanged(this.selectedItem.value)"/>
|
|
</hbox>
|
|
</groupbox>
|
|
|
|
<groupbox id="displayAs-groupbox">
|
|
<caption label="&zotero.integration.prefs.displayAs.label;"/>
|
|
<radiogroup id="displayAs" orient="horizontal">
|
|
<radio id="footnotes" label="&zotero.integration.prefs.footnotes.label;" selected="true"/>
|
|
<radio id="endnotes" label="&zotero.integration.prefs.endnotes.label;"/>
|
|
</radiogroup>
|
|
</groupbox>
|
|
|
|
<groupbox>
|
|
<caption label="&zotero.integration.prefs.formatUsing.label;"/>
|
|
|
|
<radiogroup id="formatUsing" orient="vertical">
|
|
<radio id="fields" selected="true"/>
|
|
<label class="radioDescription" id="fields-caption"/>
|
|
<label class="radioDescription" id="fields-file-format-notice"/>
|
|
<radio id="bookmarks" label="&zotero.integration.prefs.bookmarks.label;"/>
|
|
<description class="radioDescription" id="bookmarks-caption">&zotero.integration.prefs.bookmarks.caption;</description>
|
|
<description class="radioDescription" id="bookmarks-file-format-notice"/>
|
|
</radiogroup>
|
|
</groupbox>
|
|
|
|
<vbox id="automaticJournalAbbreviations-vbox">
|
|
<checkbox id="automaticJournalAbbreviations-checkbox" label="&zotero.integration.prefs.automaticJournalAbbeviations.label;"/>
|
|
<description class="radioDescription">&zotero.integration.prefs.automaticJournalAbbeviations.caption;</description>
|
|
</vbox>
|
|
|
|
<checkbox id="storeReferences" label="&zotero.integration.prefs.storeReferences.label;"/>
|
|
<description class="radioDescription">&zotero.integration.prefs.storeReferences.caption;</description>
|
|
</vbox>
|
|
</dialog> |