/************************************************************************ * * NoteConverter.java * * Copyright: 2002-2015 by Henrik Just * * 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 . * * Version 1.6 (2015-06-14) * */ package writer2latex.xhtml.content; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map.Entry; 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; import writer2latex.xhtml.Converter; import writer2latex.xhtml.Parser; import writer2latex.xhtml.StyleInfo; import writer2latex.xhtml.XhtmlConfig; /** This is a base class handles the conversion of footnotes and endnotes */ class NoteParser extends Parser { // The notes configuration private PropertySet noteConfig; // The collection of notes //private List notes = new ArrayList(); private HashMap> notes = new HashMap>(); /** 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 */ NoteParser(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, String section) { // Create a style span for the citation String sCitBodyStyle = noteConfig.getProperty(XMLString.TEXT_CITATION_BODY_STYLE_NAME); Element span = getTextParser().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) { getTextParser().traversePCDATA(citation,link); } // Remember the actual note List noteList = notes.get(section); if (noteList == null) { noteList = new ArrayList(); notes.put(section, noteList); } noteList.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); } } } public void flushAllNotes(Node hnode, String sEpubType) { for (Entry> entry : notes.entrySet()) { flushNotes(hnode, sEpubType, entry.getKey()); } } public void flushNotes(Node hnode, String sEpubType, String section) { List noteList = notes.get(section); 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; } int nSize = noteList.size(); for (int i=0; i