178 lines
6 KiB
Java
178 lines
6 KiB
Java
![]() |
/************************************************************************
|
||
|
*
|
||
|
* NoteConverter.java
|
||
|
*
|
||
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Lesser General Public
|
||
|
* License version 2.1, as published by the Free Software Foundation.
|
||
|
*
|
||
|
* This library 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
|
||
|
* Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public
|
||
|
* License along with this library; if not, write to the Free Software
|
||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||
|
* MA 02111-1307 USA
|
||
|
*
|
||
|
* Copyright: 2002-2015 by Henrik Just
|
||
|
*
|
||
|
* All Rights Reserved.
|
||
|
*
|
||
|
* Version 1.6 (2015-06-11)
|
||
|
*
|
||
|
*/
|
||
|
package writer2latex.xhtml;
|
||
|
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.List;
|
||
|
|
||
|
import org.w3c.dom.Element;
|
||
|
import org.w3c.dom.Node;
|
||
|
|
||
|
import writer2latex.office.OfficeReader;
|
||
|
import writer2latex.office.PropertySet;
|
||
|
import writer2latex.office.XMLString;
|
||
|
import writer2latex.util.Misc;
|
||
|
|
||
|
/** This is a base class handles the conversion of footnotes and endnotes
|
||
|
*/
|
||
|
public class NoteConverter extends ConverterHelper {
|
||
|
|
||
|
// The notes configuration
|
||
|
private PropertySet configuration;
|
||
|
|
||
|
// The collection of notes
|
||
|
private List<Node> notes = new ArrayList<Node>();
|
||
|
|
||
|
/** Construct a new note converter
|
||
|
*
|
||
|
* @param ofr the office reader used to read the source document
|
||
|
* @param config the configuration
|
||
|
* @param converter the converter
|
||
|
* @param noteConfig the configuration of the notes
|
||
|
*/
|
||
|
public NoteConverter(OfficeReader ofr, XhtmlConfig config, Converter converter, PropertySet noteConfig) {
|
||
|
super(ofr,config,converter);
|
||
|
this.configuration = noteConfig;
|
||
|
}
|
||
|
|
||
|
/** Handle a footnote or endnote. This method inserts the citation and stores the actual note for later processing
|
||
|
*
|
||
|
* @param onode a text:note element
|
||
|
* @param hnode the inline HTML element to contain the citation
|
||
|
*/
|
||
|
public void handleNote(Node onode, Node hnode) {
|
||
|
// Create a style span for the citation
|
||
|
String sCitBodyStyle = configuration.getProperty(XMLString.TEXT_CITATION_BODY_STYLE_NAME);
|
||
|
Element span = getTextCv().createInline((Element) hnode,sCitBodyStyle);
|
||
|
// Add target and back-link to the span
|
||
|
String sId = Misc.getAttribute(onode,XMLString.TEXT_ID);
|
||
|
Element link = converter.createLink(sId);
|
||
|
converter.addTarget(link,"body"+sId);
|
||
|
span.appendChild(link);
|
||
|
// Get the citation
|
||
|
Element citation = Misc.getChildByTagName(onode,XMLString.TEXT_NOTE_CITATION);
|
||
|
if (citation==null) { // try old format
|
||
|
citation = Misc.getChildByTagName(onode,XMLString.TEXT_FOOTNOTE_CITATION);
|
||
|
if (citation==null) {
|
||
|
citation = Misc.getChildByTagName(onode,XMLString.TEXT_ENDNOTE_CITATION);
|
||
|
}
|
||
|
}
|
||
|
// Insert the citation
|
||
|
if (citation!=null) {
|
||
|
getTextCv().traversePCDATA(citation,link);
|
||
|
}
|
||
|
// Remember the actual note
|
||
|
notes.add(onode);
|
||
|
}
|
||
|
|
||
|
protected boolean hasNotes() {
|
||
|
return notes.size()>0;
|
||
|
}
|
||
|
|
||
|
protected void insertNoteHeading(Node hnode, String sHeading, String sTarget) {
|
||
|
if (sHeading.length()>0) {
|
||
|
// Create heading
|
||
|
Element heading = converter.createElement("h1");
|
||
|
hnode.appendChild(heading);
|
||
|
heading.appendChild(converter.createTextNode(sHeading));
|
||
|
|
||
|
// Add to external content.
|
||
|
if (config.getXhtmlSplitLevel()>0) {
|
||
|
converter.addContentEntry(sHeading, 1, null);
|
||
|
}
|
||
|
else {
|
||
|
//For single output file we need a target
|
||
|
converter.addTarget(heading,sTarget);
|
||
|
converter.addContentEntry(sHeading, 1, sTarget);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
protected void insertNotes(Node hnode) {
|
||
|
int nSize = notes.size();
|
||
|
for (int i=0; i<nSize; i++) {
|
||
|
Node note = notes.get(i);
|
||
|
// Get the citation
|
||
|
Node citation = Misc.getChildByTagName(note,XMLString.TEXT_NOTE_CITATION);
|
||
|
if (citation==null) { // try old format
|
||
|
citation = Misc.getChildByTagName(note,XMLString.TEXT_FOOTNOTE_CITATION);
|
||
|
if (citation==null) {
|
||
|
citation = Misc.getChildByTagName(note,XMLString.TEXT_ENDNOTE_CITATION);
|
||
|
}
|
||
|
}
|
||
|
// Get the body
|
||
|
Node body = Misc.getChildByTagName(note,XMLString.TEXT_NOTE_BODY);
|
||
|
if (body==null) { // try old format
|
||
|
body = Misc.getChildByTagName(note,XMLString.TEXT_FOOTNOTE_BODY);
|
||
|
if (body==null) {
|
||
|
body = Misc.getChildByTagName(note,XMLString.TEXT_ENDNOTE_BODY);
|
||
|
}
|
||
|
}
|
||
|
// Export the note
|
||
|
String sId = Misc.getAttribute(note,XMLString.TEXT_ID);
|
||
|
createAnchor(sId,citation);
|
||
|
getTextCv().traverseBlockText(body,hnode);
|
||
|
}
|
||
|
notes.clear();
|
||
|
}
|
||
|
|
||
|
private void createAnchor(String sId, Node citation) {
|
||
|
// Create target and link
|
||
|
Element link = converter.createLink("body"+sId);
|
||
|
converter.addTarget(link,sId);
|
||
|
|
||
|
// Style it
|
||
|
String sCitStyle = configuration.getProperty(XMLString.TEXT_CITATION_STYLE_NAME);
|
||
|
StyleInfo linkInfo = new StyleInfo();
|
||
|
getTextSc().applyStyle(sCitStyle,linkInfo);
|
||
|
applyStyle(linkInfo,link);
|
||
|
|
||
|
// Add prefix
|
||
|
String sPrefix = configuration.getProperty(XMLString.STYLE_NUM_PREFIX);
|
||
|
if (sPrefix!=null) {
|
||
|
link.appendChild(converter.createTextNode(sPrefix));
|
||
|
}
|
||
|
|
||
|
// Add citation
|
||
|
getTextCv().traversePCDATA(citation,link);
|
||
|
|
||
|
// Add suffix
|
||
|
String sSuffix = configuration.getProperty(XMLString.STYLE_NUM_SUFFIX);
|
||
|
if (sSuffix!=null) {
|
||
|
link.appendChild(converter.createTextNode(sSuffix));
|
||
|
}
|
||
|
|
||
|
// Add space
|
||
|
Element span = converter.createElement("span");
|
||
|
span.appendChild(link);
|
||
|
span.appendChild(converter.createTextNode(" "));
|
||
|
|
||
|
// Save it for later insertion
|
||
|
getTextCv().setAsapNode(span);
|
||
|
}
|
||
|
|
||
|
}
|