2015-06-11 20:09:08 +00:00
|
|
|
/************************************************************************
|
|
|
|
*
|
|
|
|
* NoteConverter.java
|
|
|
|
*
|
|
|
|
* Copyright: 2002-2015 by Henrik Just
|
|
|
|
*
|
2018-03-06 20:06:05 +00:00
|
|
|
* This file is part of Writer2LaTeX.
|
|
|
|
*
|
|
|
|
* Writer2LaTeX is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Writer2LaTeX 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Writer2LaTeX. If not, see <http://www.gnu.org/licenses/>.
|
2015-06-11 20:09:08 +00:00
|
|
|
*
|
2015-06-14 20:13:45 +00:00
|
|
|
* Version 1.6 (2015-06-14)
|
2015-06-11 20:09:08 +00:00
|
|
|
*
|
|
|
|
*/
|
2020-01-29 11:40:29 +01:00
|
|
|
package writer2latex.xhtml.content;
|
2015-06-11 20:09:08 +00:00
|
|
|
|
|
|
|
import java.util.ArrayList;
|
2020-01-21 18:16:03 +01:00
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Iterator;
|
2015-06-11 20:09:08 +00:00
|
|
|
import java.util.List;
|
2020-01-21 18:16:03 +01:00
|
|
|
import java.util.Map.Entry;
|
2015-06-11 20:09:08 +00:00
|
|
|
|
|
|
|
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;
|
2020-01-29 11:40:29 +01:00
|
|
|
import writer2latex.xhtml.Converter;
|
|
|
|
import writer2latex.xhtml.Parser;
|
|
|
|
import writer2latex.xhtml.StyleInfo;
|
|
|
|
import writer2latex.xhtml.XhtmlConfig;
|
2015-06-11 20:09:08 +00:00
|
|
|
|
|
|
|
/** This is a base class handles the conversion of footnotes and endnotes
|
|
|
|
*/
|
2020-01-29 11:09:59 +01:00
|
|
|
class NoteParser extends Parser {
|
2015-06-11 20:09:08 +00:00
|
|
|
|
|
|
|
// The notes configuration
|
2015-06-12 11:47:39 +00:00
|
|
|
private PropertySet noteConfig;
|
2015-06-11 20:09:08 +00:00
|
|
|
|
|
|
|
// The collection of notes
|
2020-01-21 18:16:03 +01:00
|
|
|
//private List<Node> notes = new ArrayList<Node>();
|
|
|
|
private HashMap<String, List<Node>> notes = new HashMap<String, List<Node>>();
|
2015-06-11 20:09:08 +00:00
|
|
|
/** 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
|
|
|
|
*/
|
2020-01-29 11:09:59 +01:00
|
|
|
NoteParser(OfficeReader ofr, XhtmlConfig config, Converter converter, PropertySet noteConfig) {
|
2015-06-11 20:09:08 +00:00
|
|
|
super(ofr,config,converter);
|
2015-06-12 11:47:39 +00:00
|
|
|
this.noteConfig = noteConfig;
|
2015-06-11 20:09:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** 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
|
|
|
|
*/
|
2020-01-21 18:16:03 +01:00
|
|
|
void handleNote(Node onode, Node hnode, String section) {
|
2015-06-11 20:09:08 +00:00
|
|
|
// Create a style span for the citation
|
2015-06-12 11:47:39 +00:00
|
|
|
String sCitBodyStyle = noteConfig.getProperty(XMLString.TEXT_CITATION_BODY_STYLE_NAME);
|
2020-03-09 11:39:28 +01:00
|
|
|
Element span = getTextParser().createInline((Element) hnode,sCitBodyStyle);
|
2015-06-11 20:09:08 +00:00
|
|
|
// 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);
|
2015-06-12 11:47:39 +00:00
|
|
|
converter.addEpubType(link, "noteref");
|
2015-06-11 20:09:08 +00:00
|
|
|
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) {
|
2020-03-09 11:39:28 +01:00
|
|
|
getTextParser().traversePCDATA(citation,link);
|
2015-06-11 20:09:08 +00:00
|
|
|
}
|
|
|
|
// Remember the actual note
|
2020-01-21 18:16:03 +01:00
|
|
|
List<Node> noteList = notes.get(section);
|
|
|
|
if (noteList == null) {
|
|
|
|
noteList = new ArrayList<Node>();
|
|
|
|
notes.put(section, noteList);
|
|
|
|
}
|
2020-01-22 16:42:14 +01:00
|
|
|
noteList.add(onode);
|
2015-06-11 20:09:08 +00:00
|
|
|
}
|
|
|
|
|
2015-06-14 20:13:45 +00:00
|
|
|
boolean hasNotes() {
|
2015-06-11 20:09:08 +00:00
|
|
|
return notes.size()>0;
|
|
|
|
}
|
2015-06-12 11:47:39 +00:00
|
|
|
|
2015-06-14 20:13:45 +00:00
|
|
|
Element createNoteSection(Node hnode, String sEpubType) {
|
2015-06-12 11:47:39 +00:00
|
|
|
Element section = converter.createElement(converter.isHTML5() ? "section" : "div");
|
|
|
|
hnode.appendChild(section);
|
|
|
|
converter.addEpubType(section, sEpubType);
|
|
|
|
return section;
|
|
|
|
}
|
2015-06-11 20:09:08 +00:00
|
|
|
|
2015-06-14 20:13:45 +00:00
|
|
|
void insertNoteHeading(Node hnode, String sHeading, String sTarget) {
|
2015-06-11 20:09:08 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-21 18:16:03 +01:00
|
|
|
public void flushAllNotes(Node hnode, String sEpubType) {
|
|
|
|
for (Entry<String, List<Node>> entry : notes.entrySet()) {
|
|
|
|
flushNotes(hnode, sEpubType, entry.getKey());
|
|
|
|
}
|
|
|
|
}
|
2015-06-11 20:09:08 +00:00
|
|
|
|
2020-01-21 18:16:03 +01:00
|
|
|
public void flushNotes(Node hnode, String sEpubType, String section) {
|
|
|
|
List<Node> noteList = notes.get(section);
|
2020-01-22 16:42:14 +01:00
|
|
|
if (noteList == null) {
|
|
|
|
//System.out.println("noteList is null");
|
|
|
|
//System.out.println("notes " + notes.size());
|
|
|
|
/*for (StackTraceElement ste : Thread.currentThread().getStackTrace()) {
|
|
|
|
System.out.println(ste);
|
|
|
|
}*/
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-21 18:16:03 +01:00
|
|
|
int nSize = noteList.size();
|
2015-06-11 20:09:08 +00:00
|
|
|
for (int i=0; i<nSize; i++) {
|
2020-01-21 18:16:03 +01:00
|
|
|
Node note = noteList.get(i);
|
2015-06-12 11:47:39 +00:00
|
|
|
// Create container
|
|
|
|
Element aside = converter.createElement(converter.isHTML5() ? "aside" : "div");
|
|
|
|
hnode.appendChild(aside);
|
|
|
|
converter.addEpubType(aside, sEpubType);
|
2015-06-11 20:09:08 +00:00
|
|
|
// 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);
|
2015-06-14 20:13:45 +00:00
|
|
|
converter.addTarget(aside,sId);
|
2015-06-11 20:09:08 +00:00
|
|
|
createAnchor(sId,citation);
|
2020-03-09 11:39:28 +01:00
|
|
|
getTextParser().traverseBlockText(body,aside);
|
2015-06-11 20:09:08 +00:00
|
|
|
}
|
2020-01-21 18:16:03 +01:00
|
|
|
//noteList.clear();
|
|
|
|
notes.remove(section);
|
2015-06-11 20:09:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void createAnchor(String sId, Node citation) {
|
|
|
|
// Create target and link
|
|
|
|
Element link = converter.createLink("body"+sId);
|
|
|
|
|
|
|
|
// Style it
|
2015-06-12 11:47:39 +00:00
|
|
|
String sCitStyle = noteConfig.getProperty(XMLString.TEXT_CITATION_STYLE_NAME);
|
2015-06-11 20:09:08 +00:00
|
|
|
StyleInfo linkInfo = new StyleInfo();
|
2020-02-03 16:34:57 +01:00
|
|
|
getTextSP().readStyle(sCitStyle,linkInfo);
|
2020-02-03 10:51:42 +01:00
|
|
|
writeStyle(linkInfo,link);
|
2015-06-11 20:09:08 +00:00
|
|
|
|
|
|
|
// Add prefix
|
2015-06-12 11:47:39 +00:00
|
|
|
String sPrefix = noteConfig.getProperty(XMLString.STYLE_NUM_PREFIX);
|
2015-06-11 20:09:08 +00:00
|
|
|
if (sPrefix!=null) {
|
|
|
|
link.appendChild(converter.createTextNode(sPrefix));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add citation
|
2020-03-09 11:39:28 +01:00
|
|
|
getTextParser().traversePCDATA(citation,link);
|
2015-06-11 20:09:08 +00:00
|
|
|
|
|
|
|
// Add suffix
|
2015-06-12 11:47:39 +00:00
|
|
|
String sSuffix = noteConfig.getProperty(XMLString.STYLE_NUM_SUFFIX);
|
2015-06-11 20:09:08 +00:00
|
|
|
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
|
2020-03-09 11:39:28 +01:00
|
|
|
getTextParser().setAsapNode(span);
|
2015-06-11 20:09:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|