6305e4cada
closes #4, Make printable version - moves functions for creating and deleting hidden browser objects to scholar.js (from ingester.js), since these are necessary for printing as well - allows saving bibliography in HTML or printing bibliography. style support is not yet complete (pending finalization of 0.9 version of CSL specification).
29 lines
No EOL
1,012 B
XML
29 lines
No EOL
1,012 B
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
<!DOCTYPE window SYSTEM "chrome://scholar/locale/scholar.dtd">
|
|
<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
title="&bibliography.title;" buttons="cancel,accept"
|
|
ondialogaccept="Scholar_File_Interface_Bibliography.acceptSelection()"
|
|
id="scholar-bibliography"
|
|
onload="Scholar_File_Interface_Bibliography.init()">
|
|
|
|
<script src="include.js"/>
|
|
<script src="bibliography.js"/>
|
|
|
|
<hbox>
|
|
<label value="&bibliography.style.label;" control="style-menu"/>
|
|
<menulist id="style-menu">
|
|
<menupopup id="style-popup">
|
|
</menupopup>
|
|
</menulist>
|
|
</hbox>
|
|
<groupbox>
|
|
<caption label="&bibliography.output.label;"/>
|
|
<radiogroup id="output-radio">
|
|
<radio id="save-as-html" selected="true" label="&bibliography.saveAsHTML.label;"/>
|
|
<radio id="copy-to-clipboard" label="&bibliography.copyToClipboard.label;"/>
|
|
<radio id="print" label="&bibliography.print.label;"/>
|
|
</radiogroup>
|
|
</groupbox>
|
|
|
|
</dialog> |