
git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@253 f0f2a975-2e09-46c8-9428-3b39399b9f3c
189 lines
6.4 KiB
Java
189 lines
6.4 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-14)
|
|
*
|
|
*/
|
|
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
|
|
*/
|
|
class NoteConverter extends ConverterHelper {
|
|
|
|
// The notes configuration
|
|
private PropertySet noteConfig;
|
|
|
|
// 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
|
|
*/
|
|
NoteConverter(OfficeReader ofr, XhtmlConfig config, Converter converter, PropertySet noteConfig) {
|
|
super(ofr,config,converter);
|
|
this.noteConfig = 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
|
|
*/
|
|
void handleNote(Node onode, Node hnode) {
|
|
// Create a style span for the citation
|
|
String sCitBodyStyle = noteConfig.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);
|
|
converter.addEpubType(link, "noteref");
|
|
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);
|
|
}
|
|
|
|
boolean hasNotes() {
|
|
return notes.size()>0;
|
|
}
|
|
|
|
Element createNoteSection(Node hnode, String sEpubType) {
|
|
Element section = converter.createElement(converter.isHTML5() ? "section" : "div");
|
|
hnode.appendChild(section);
|
|
converter.addEpubType(section, sEpubType);
|
|
return section;
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
|
|
void flushNotes(Node hnode, String sEpubType) {
|
|
int nSize = notes.size();
|
|
for (int i=0; i<nSize; i++) {
|
|
Node note = notes.get(i);
|
|
// Create container
|
|
Element aside = converter.createElement(converter.isHTML5() ? "aside" : "div");
|
|
hnode.appendChild(aside);
|
|
converter.addEpubType(aside, sEpubType);
|
|
// 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);
|
|
converter.addTarget(aside,sId);
|
|
createAnchor(sId,citation);
|
|
getTextCv().traverseBlockText(body,aside);
|
|
}
|
|
notes.clear();
|
|
}
|
|
|
|
private void createAnchor(String sId, Node citation) {
|
|
// Create target and link
|
|
Element link = converter.createLink("body"+sId);
|
|
|
|
// Style it
|
|
String sCitStyle = noteConfig.getProperty(XMLString.TEXT_CITATION_STYLE_NAME);
|
|
StyleInfo linkInfo = new StyleInfo();
|
|
getTextSc().applyStyle(sCitStyle,linkInfo);
|
|
applyStyle(linkInfo,link);
|
|
|
|
// Add prefix
|
|
String sPrefix = noteConfig.getProperty(XMLString.STYLE_NUM_PREFIX);
|
|
if (sPrefix!=null) {
|
|
link.appendChild(converter.createTextNode(sPrefix));
|
|
}
|
|
|
|
// Add citation
|
|
getTextCv().traversePCDATA(citation,link);
|
|
|
|
// Add suffix
|
|
String sSuffix = noteConfig.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);
|
|
}
|
|
|
|
}
|