2009-02-20 09:37:06 +00:00
|
|
|
/************************************************************************
|
|
|
|
*
|
2011-03-10 16:06:14 +00:00
|
|
|
* TextConverter.java
|
2009-02-20 09:37:06 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
2015-06-11 18:39:29 +00:00
|
|
|
* Copyright: 2002-2015 by Henrik Just
|
2009-02-20 09:37:06 +00:00
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
2015-06-11 18:39:29 +00:00
|
|
|
* Version 1.6 (2015-06-11)
|
2009-02-20 09:37:06 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
package writer2latex.xhtml;
|
|
|
|
|
|
|
|
import java.util.Hashtable;
|
|
|
|
import java.util.Stack;
|
|
|
|
import java.util.LinkedList;
|
|
|
|
import org.w3c.dom.Node;
|
|
|
|
import org.w3c.dom.NodeList;
|
|
|
|
import org.w3c.dom.Element;
|
|
|
|
|
|
|
|
import writer2latex.util.Misc;
|
2010-03-12 10:35:05 +00:00
|
|
|
import writer2latex.office.FontDeclaration;
|
2010-11-22 18:51:18 +00:00
|
|
|
import writer2latex.office.OfficeStyle;
|
2009-02-20 09:37:06 +00:00
|
|
|
import writer2latex.office.XMLString;
|
|
|
|
import writer2latex.office.ListCounter;
|
|
|
|
import writer2latex.office.ListStyle;
|
|
|
|
import writer2latex.office.PropertySet;
|
|
|
|
import writer2latex.office.StyleWithProperties;
|
|
|
|
import writer2latex.office.OfficeReader;
|
|
|
|
|
|
|
|
|
2014-09-06 19:19:17 +00:00
|
|
|
/** This class handles text content
|
|
|
|
*/
|
2009-02-20 09:37:06 +00:00
|
|
|
public class TextConverter extends ConverterHelper {
|
|
|
|
|
|
|
|
// Data used to handle splitting over several files
|
|
|
|
// TODO: Accessor methods for sections
|
2010-10-30 10:35:46 +00:00
|
|
|
// Some (Sony?) EPUB readers have a limit on the file size of individual files
|
|
|
|
// In any case very large files could be a performance problem, hence we do automatic splitting
|
|
|
|
// after this number of characters. TODO: Make configurable.
|
2010-12-30 06:56:54 +00:00
|
|
|
private int nSplitAfter = 150000;
|
2010-11-22 18:51:18 +00:00
|
|
|
private int nPageBreakSplit = XhtmlConfig.NONE; // Should we split at page breaks?
|
|
|
|
// TODO: Collect soft page breaks between table rows
|
2010-12-08 09:16:49 +00:00
|
|
|
private boolean bPendingPageBreak = false; // We have encountered a page break which should be inserted asap
|
2010-11-22 18:51:18 +00:00
|
|
|
private int nSplit = 0; // The outline level at which to split files (0=no split)
|
|
|
|
private int nRepeatLevels = 5; // The number of levels to repeat when splitting (0=no repeat)
|
|
|
|
private int nLastSplitLevel = 1; // The outline level at which the last split occurred
|
2009-02-20 09:37:06 +00:00
|
|
|
private int nDontSplitLevel = 0; // if > 0 splitting is forbidden
|
|
|
|
boolean bAfterHeading=false; // last element was a top level heading
|
2009-03-30 07:38:37 +00:00
|
|
|
protected Stack<Node> sections = new Stack<Node>(); // stack of nested sections
|
2009-02-20 09:37:06 +00:00
|
|
|
Element[] currentHeading = new Element[7]; // Last headings (repeated when splitting)
|
2010-10-30 10:35:46 +00:00
|
|
|
private int nCharacterCount = 0; // The number of text characters in the current document
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
// Counters for generated numbers
|
|
|
|
private ListCounter outlineNumbering;
|
2009-03-30 07:38:37 +00:00
|
|
|
private Hashtable<String, ListCounter> listCounters = new Hashtable<String, ListCounter>();
|
2009-02-20 09:37:06 +00:00
|
|
|
private String sCurrentListLabel = null;
|
2010-05-04 08:25:15 +00:00
|
|
|
private ListStyle currentListStyle = null;
|
|
|
|
private int nCurrentListLevel = 0;
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
// Mode used to handle floats (depends on source doc type and config)
|
|
|
|
private int nFloatMode;
|
|
|
|
|
2015-06-11 18:39:29 +00:00
|
|
|
// Data used to handle all sorts of indexes
|
|
|
|
private TOCConverter tocCv;
|
|
|
|
private LOFConverter lofCv;
|
|
|
|
private LOTConverter lotCv;
|
|
|
|
private AlphabeticalIndexConverter indexCv;
|
|
|
|
private BibliographyConverter bibCv;
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
// Style names for foot- and endnotes
|
|
|
|
private String sFntCitBodyStyle = null;
|
|
|
|
private String sFntCitStyle = null;
|
|
|
|
private String sEntCitBodyStyle = null;
|
|
|
|
private String sEntCitStyle = null;
|
2011-03-09 08:48:57 +00:00
|
|
|
|
|
|
|
// Footnote position (can be page or document)
|
|
|
|
private boolean bFootnotesAtPage = true;
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
// Gather the footnotes and endnotes
|
2009-03-30 07:38:37 +00:00
|
|
|
private LinkedList<Node> footnotes = new LinkedList<Node>();
|
|
|
|
private LinkedList<Node> endnotes = new LinkedList<Node>();
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
// Sometimes we have to create an inlinenode in a block context
|
|
|
|
// (labels for footnotes and endnotes)
|
|
|
|
// We put it here and insert it in the first paragraph/heading to come:
|
|
|
|
private Node asapNode = null;
|
2012-04-08 09:42:52 +00:00
|
|
|
|
2009-02-20 09:37:06 +00:00
|
|
|
// When generating toc, a few things should be done differently
|
|
|
|
private boolean bInToc = false;
|
2010-11-22 18:51:18 +00:00
|
|
|
|
|
|
|
// Display hidden text?
|
|
|
|
private boolean bDisplayHiddenText = false;
|
2015-06-11 18:39:29 +00:00
|
|
|
|
2009-02-20 09:37:06 +00:00
|
|
|
public TextConverter(OfficeReader ofr, XhtmlConfig config, Converter converter) {
|
|
|
|
super(ofr,config,converter);
|
2015-06-11 18:39:29 +00:00
|
|
|
tocCv = new TOCConverter(ofr, config, converter);
|
|
|
|
lofCv = new LOFConverter(ofr, config, converter);
|
|
|
|
lotCv = new LOTConverter(ofr, config, converter);
|
|
|
|
bibCv = new BibliographyConverter(ofr, config, converter);
|
|
|
|
indexCv = new AlphabeticalIndexConverter(ofr, config, converter);
|
2010-12-30 06:56:54 +00:00
|
|
|
nSplitAfter = 1000*config.splitAfter();
|
2010-11-22 18:51:18 +00:00
|
|
|
nPageBreakSplit = config.pageBreakSplit();
|
2009-02-20 09:37:06 +00:00
|
|
|
nSplit = config.getXhtmlSplitLevel();
|
2010-12-30 06:56:54 +00:00
|
|
|
nRepeatLevels = converter.isOPS() ? 0 : config.getXhtmlRepeatLevels(); // never repeat headings in EPUB
|
2009-02-20 09:37:06 +00:00
|
|
|
nFloatMode = ofr.isText() && config.xhtmlFloatObjects() ?
|
|
|
|
DrawConverter.FLOATING : DrawConverter.ABSOLUTE;
|
|
|
|
outlineNumbering = new ListCounter(ofr.getOutlineStyle());
|
|
|
|
// Styles for footnotes and endnotes
|
|
|
|
PropertySet notes = ofr.getFootnotesConfiguration();
|
|
|
|
if (notes!=null) {
|
|
|
|
sFntCitBodyStyle = notes.getProperty(XMLString.TEXT_CITATION_BODY_STYLE_NAME);
|
|
|
|
sFntCitStyle = notes.getProperty(XMLString.TEXT_CITATION_STYLE_NAME);
|
2011-03-09 08:48:57 +00:00
|
|
|
bFootnotesAtPage = !"document".equals(notes.getProperty(XMLString.TEXT_FOOTNOTES_POSITION));
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
notes = ofr.getEndnotesConfiguration();
|
|
|
|
if (notes!=null) {
|
|
|
|
sEntCitBodyStyle = notes.getProperty(XMLString.TEXT_CITATION_BODY_STYLE_NAME);
|
|
|
|
sEntCitStyle = notes.getProperty(XMLString.TEXT_CITATION_STYLE_NAME);
|
|
|
|
}
|
2010-11-22 18:51:18 +00:00
|
|
|
bDisplayHiddenText = config.displayHiddenText();
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Converts an office node as a complete text document
|
|
|
|
*
|
|
|
|
* @param onode the Office node containing the content to convert
|
|
|
|
*/
|
|
|
|
public void convertTextContent(Element onode) {
|
|
|
|
Element hnode = converter.nextOutFile();
|
|
|
|
|
|
|
|
// Create form
|
|
|
|
if (nSplit==0) {
|
|
|
|
Element form = getDrawCv().createForm();
|
|
|
|
if (form!=null) {
|
|
|
|
hnode.appendChild(form);
|
|
|
|
hnode = form;
|
|
|
|
}
|
|
|
|
}
|
2011-06-19 13:39:56 +00:00
|
|
|
|
|
|
|
// Add cover image
|
|
|
|
hnode = getDrawCv().insertCoverImage(hnode);
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
// Convert content
|
2011-03-09 08:48:57 +00:00
|
|
|
hnode = (Element)traverseBlockText(onode,hnode);
|
|
|
|
|
|
|
|
// Add footnotes and endnotes
|
|
|
|
insertFootnotes(hnode,true);
|
|
|
|
insertEndnotes(hnode);
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
// Generate all indexes
|
2015-06-11 18:39:29 +00:00
|
|
|
bInToc = true;
|
|
|
|
tocCv.generate();
|
|
|
|
bInToc = false;
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
// Generate navigation links
|
|
|
|
generateHeaders();
|
|
|
|
generateFooters();
|
2015-06-11 18:39:29 +00:00
|
|
|
bInToc = true;
|
|
|
|
tocCv.generatePanels(nSplit);
|
|
|
|
bInToc = false;
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
|
2015-06-11 18:39:29 +00:00
|
|
|
protected int getTocIndex() { return tocCv.getFileIndex(); }
|
2009-02-20 09:37:06 +00:00
|
|
|
|
2015-06-11 18:39:29 +00:00
|
|
|
protected int getAlphabeticalIndex() { return indexCv.getFileIndex(); }
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// NAVIGATION (fill header, footer and panel with navigation links)
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// The header is populated with prev/next navigation
|
|
|
|
private void generateHeaders() { }
|
|
|
|
|
|
|
|
// The footer is populated with prev/next navigation
|
|
|
|
private void generateFooters() { }
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// BLOCK TEXT (returns current html node at end of block)
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
public Node traverseBlockText(Node onode, Node hnode) {
|
|
|
|
return traverseBlockText(onode,0,null,hnode);
|
|
|
|
}
|
|
|
|
|
|
|
|
private Node traverseBlockText(Node onode, int nLevel, String styleName, Node hnode) {
|
|
|
|
if (!onode.hasChildNodes()) { return hnode; }
|
|
|
|
bAfterHeading = false;
|
|
|
|
NodeList nList = onode.getChildNodes();
|
|
|
|
int nLen = nList.getLength();
|
|
|
|
int i = 0;
|
|
|
|
while (i < nLen) {
|
|
|
|
Node child = nList.item(i);
|
|
|
|
|
|
|
|
if (child.getNodeType() == Node.ELEMENT_NODE) {
|
|
|
|
String nodeName = child.getNodeName();
|
|
|
|
// Block splitting
|
|
|
|
nDontSplitLevel++;
|
|
|
|
|
|
|
|
if (OfficeReader.isDrawElement(child)) {
|
|
|
|
getDrawCv().handleDrawElement((Element)child,(Element)hnode,null,nFloatMode);
|
|
|
|
}
|
|
|
|
else if (nodeName.equals(XMLString.TEXT_P)) {
|
2010-11-22 18:51:18 +00:00
|
|
|
StyleWithProperties style = ofr.getParStyle(Misc.getAttribute(child,XMLString.TEXT_STYLE_NAME));
|
|
|
|
hnode = maybeSplit(hnode, style);
|
2010-10-30 10:35:46 +00:00
|
|
|
nCharacterCount+=OfficeReader.getCharacterCount(child);
|
2009-02-20 09:37:06 +00:00
|
|
|
// is there a block element, we should use?
|
|
|
|
XhtmlStyleMap xpar = config.getXParStyleMap();
|
2010-11-22 18:51:18 +00:00
|
|
|
String sDisplayName = style!=null ? style.getDisplayName() : null;
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
if (sDisplayName!=null && xpar.contains(sDisplayName)) {
|
|
|
|
Node curHnode = hnode;
|
2014-10-27 06:56:26 +00:00
|
|
|
XhtmlStyleMapItem map = xpar.get(sDisplayName);
|
|
|
|
String sBlockElement = map.sBlockElement;
|
|
|
|
String sBlockCss = map.sBlockCss;
|
|
|
|
if (map.sBlockElement.length()>0) {
|
|
|
|
Element block = converter.createElement(map.sBlockElement);
|
|
|
|
if (!"(none)".equals(map.sBlockCss)) {
|
|
|
|
block.setAttribute("class",map.sBlockCss);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
hnode.appendChild(block);
|
|
|
|
curHnode = block;
|
|
|
|
}
|
|
|
|
boolean bMoreParagraphs = true;
|
|
|
|
do {
|
|
|
|
handleParagraph(child,curHnode);
|
|
|
|
bMoreParagraphs = false;
|
|
|
|
if (++i<nLen) {
|
|
|
|
child = nList.item(i);
|
|
|
|
String cnodeName = child.getNodeName();
|
|
|
|
if (cnodeName.equals(XMLString.TEXT_P)) {
|
|
|
|
String sCurDisplayName = ofr.getParStyles().getDisplayName(Misc.getAttribute(child,XMLString.TEXT_STYLE_NAME));
|
|
|
|
if (sCurDisplayName!=null && xpar.contains(sCurDisplayName)) {
|
2014-10-27 06:56:26 +00:00
|
|
|
XhtmlStyleMapItem newmap = xpar.get(sCurDisplayName);
|
|
|
|
if (sBlockElement.equals(newmap.sBlockElement) &&
|
|
|
|
sBlockCss.equals(newmap.sBlockCss)) {
|
2009-02-20 09:37:06 +00:00
|
|
|
bMoreParagraphs = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (bMoreParagraphs);
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
handleParagraph(child,hnode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(nodeName.equals(XMLString.TEXT_H)) {
|
2010-11-22 18:51:18 +00:00
|
|
|
StyleWithProperties style = ofr.getParStyle(Misc.getAttribute(child,XMLString.TEXT_STYLE_NAME));
|
2009-02-20 09:37:06 +00:00
|
|
|
int nOutlineLevel = getOutlineLevel((Element)child);
|
|
|
|
Node rememberNode = hnode;
|
2010-11-22 18:51:18 +00:00
|
|
|
hnode = maybeSplit(hnode,style,nOutlineLevel);
|
2010-10-30 10:35:46 +00:00
|
|
|
nCharacterCount+=OfficeReader.getCharacterCount(child);
|
2015-06-11 18:39:29 +00:00
|
|
|
handleHeading((Element)child,(Element)hnode,rememberNode!=hnode);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
else if (nodeName.equals(XMLString.TEXT_LIST) || // oasis
|
|
|
|
nodeName.equals(XMLString.TEXT_UNORDERED_LIST) || // old
|
|
|
|
nodeName.equals(XMLString.TEXT_ORDERED_LIST)) // old
|
|
|
|
{
|
2010-11-22 18:51:18 +00:00
|
|
|
hnode = maybeSplit(hnode,null);
|
2010-10-30 10:35:46 +00:00
|
|
|
if (listIsOnlyHeadings(child)) {
|
2009-02-20 09:37:06 +00:00
|
|
|
nDontSplitLevel--;
|
|
|
|
hnode = handleFakeList(child,nLevel+1,styleName,hnode);
|
|
|
|
nDontSplitLevel++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
handleList(child,nLevel+1,styleName,hnode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (nodeName.equals(XMLString.TABLE_TABLE)) {
|
2010-11-22 18:51:18 +00:00
|
|
|
StyleWithProperties style = ofr.getTableStyle(Misc.getAttribute(child,XMLString.TEXT_STYLE_NAME));
|
|
|
|
hnode = maybeSplit(hnode,style);
|
2009-02-20 09:37:06 +00:00
|
|
|
getTableCv().handleTable(child,hnode);
|
|
|
|
}
|
|
|
|
else if (nodeName.equals(XMLString.TABLE_SUB_TABLE)) {
|
|
|
|
getTableCv().handleTable(child,hnode);
|
|
|
|
}
|
|
|
|
else if (nodeName.equals(XMLString.TEXT_SECTION)) {
|
2010-11-22 18:51:18 +00:00
|
|
|
hnode = maybeSplit(hnode,null);
|
2009-02-20 09:37:06 +00:00
|
|
|
nDontSplitLevel--;
|
|
|
|
hnode = handleSection(child,hnode);
|
|
|
|
nDontSplitLevel++;
|
|
|
|
}
|
|
|
|
else if (nodeName.equals(XMLString.TEXT_TABLE_OF_CONTENT)) {
|
|
|
|
if (!ofr.getTocReader((Element)child).isByChapter()) {
|
2010-11-22 18:51:18 +00:00
|
|
|
hnode = maybeSplit(hnode,null,1);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
2015-06-11 18:39:29 +00:00
|
|
|
tocCv.handleIndex((Element)child,(Element)hnode);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
else if (nodeName.equals(XMLString.TEXT_ILLUSTRATION_INDEX)) {
|
2015-06-11 18:39:29 +00:00
|
|
|
lofCv.handleLOF(child,hnode);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
else if (nodeName.equals(XMLString.TEXT_TABLE_INDEX)) {
|
2015-06-11 18:39:29 +00:00
|
|
|
lotCv.handleLOT(child,hnode);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
else if (nodeName.equals(XMLString.TEXT_OBJECT_INDEX)) {
|
2015-06-11 18:39:29 +00:00
|
|
|
// TODO
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
else if (nodeName.equals(XMLString.TEXT_USER_INDEX)) {
|
2015-06-11 18:39:29 +00:00
|
|
|
// TODO
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
else if (nodeName.equals(XMLString.TEXT_ALPHABETICAL_INDEX)) {
|
2010-11-22 18:51:18 +00:00
|
|
|
hnode = maybeSplit(hnode,null,1);
|
2015-06-11 18:39:29 +00:00
|
|
|
indexCv.handleIndex((Element)child,(Element)hnode);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
else if (nodeName.equals(XMLString.TEXT_BIBLIOGRAPHY)) {
|
2010-11-22 18:51:18 +00:00
|
|
|
hnode = maybeSplit(hnode,null,1);
|
2015-06-11 18:39:29 +00:00
|
|
|
bibCv.handleBibliography(child,hnode);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
2010-11-22 18:51:18 +00:00
|
|
|
else if (nodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)) {
|
|
|
|
if (nPageBreakSplit==XhtmlConfig.ALL) { bPendingPageBreak = true; }
|
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
else if (nodeName.equals(XMLString.OFFICE_ANNOTATION)) {
|
|
|
|
converter.handleOfficeAnnotation(child,hnode);
|
|
|
|
}
|
|
|
|
else if (nodeName.equals(XMLString.TEXT_SEQUENCE_DECLS)) {
|
|
|
|
//handleSeqeuenceDecls(child);
|
|
|
|
}
|
|
|
|
// Reenable splitting
|
|
|
|
nDontSplitLevel--;
|
|
|
|
// Remember if this was a heading
|
|
|
|
if (nDontSplitLevel==0) {
|
|
|
|
bAfterHeading = nodeName.equals(XMLString.TEXT_H);
|
2011-06-16 20:18:47 +00:00
|
|
|
hnode = getDrawCv().flushFullscreenFrames((Element)hnode);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
return hnode;
|
|
|
|
}
|
|
|
|
|
2010-11-22 18:51:18 +00:00
|
|
|
private boolean getPageBreak(StyleWithProperties style) {
|
|
|
|
if (style!=null && nPageBreakSplit>XhtmlConfig.NONE) {
|
|
|
|
// If we don't consider manual page breaks, we may have to consider the parent style
|
|
|
|
if (style.isAutomatic() && nPageBreakSplit<XhtmlConfig.EXPLICIT) {
|
|
|
|
OfficeStyle parentStyle = style.getParentStyle();
|
|
|
|
if (parentStyle!=null && parentStyle instanceof StyleWithProperties) {
|
|
|
|
style = (StyleWithProperties) parentStyle;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// A page break can be a simple page break before or after...
|
|
|
|
if ("page".equals(style.getProperty(XMLString.FO_BREAK_BEFORE))) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if ("page".equals(style.getProperty(XMLString.FO_BREAK_AFTER))) {
|
|
|
|
bPendingPageBreak = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// ...or it can be a new master page
|
|
|
|
String sMasterPage = style.getMasterPageName();
|
|
|
|
if (sMasterPage!=null && sMasterPage.length()>0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2010-10-30 10:35:46 +00:00
|
|
|
}
|
|
|
|
|
2010-11-22 18:51:18 +00:00
|
|
|
private Node maybeSplit(Node node, StyleWithProperties style) {
|
|
|
|
return maybeSplit(node,style,-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
private Node maybeSplit(Node node, StyleWithProperties style, int nLevel) {
|
|
|
|
if (bPendingPageBreak) {
|
|
|
|
return doMaybeSplit(node, 0);
|
|
|
|
}
|
|
|
|
if (getPageBreak(style)) {
|
|
|
|
return doMaybeSplit(node, 0);
|
|
|
|
}
|
2010-12-30 06:56:54 +00:00
|
|
|
if (converter.isOPS() && nSplitAfter>0 && nCharacterCount>nSplitAfter) {
|
2010-10-30 10:35:46 +00:00
|
|
|
return doMaybeSplit(node, 0);
|
|
|
|
}
|
2010-11-22 18:51:18 +00:00
|
|
|
if (nLevel>=0) {
|
|
|
|
return doMaybeSplit(node, nLevel);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return node;
|
|
|
|
}
|
2010-10-30 10:35:46 +00:00
|
|
|
}
|
|
|
|
|
2011-06-16 20:18:47 +00:00
|
|
|
protected Element doMaybeSplit(Node node, int nLevel) {
|
2009-02-20 09:37:06 +00:00
|
|
|
if (nDontSplitLevel>1) { // we cannot split due to a nested structure
|
2011-06-16 20:18:47 +00:00
|
|
|
return (Element) node;
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
2010-05-17 07:42:33 +00:00
|
|
|
if (!converter.isOPS() && bAfterHeading && nLevel-nLastSplitLevel<=nRepeatLevels) {
|
2009-02-20 09:37:06 +00:00
|
|
|
// we cannot split because we are right after a heading and the
|
2010-05-17 07:42:33 +00:00
|
|
|
// maximum number of parent headings on the page is not reached
|
|
|
|
// TODO: Something wrong here....nLastSplitLevel is never set???
|
2011-06-16 20:18:47 +00:00
|
|
|
return (Element) node;
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
if (nSplit>=nLevel && converter.outFileHasContent()) {
|
|
|
|
// No objections, this is a level that causes splitting
|
2010-10-30 10:35:46 +00:00
|
|
|
nCharacterCount = 0;
|
2010-11-22 18:51:18 +00:00
|
|
|
bPendingPageBreak = false;
|
2011-03-09 08:48:57 +00:00
|
|
|
if (converter.getOutFileIndex()>=0) { insertFootnotes(node,false); }
|
2009-02-20 09:37:06 +00:00
|
|
|
return converter.nextOutFile();
|
|
|
|
}
|
2011-06-16 20:18:47 +00:00
|
|
|
return (Element) node;
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Process a text:section tag (returns current html node) */
|
|
|
|
private Node handleSection(Node onode, Node hnode) {
|
2010-11-22 18:51:18 +00:00
|
|
|
// Unlike headings, paragraphs and spans, text:display is not attached to the style:
|
|
|
|
if (!bDisplayHiddenText && "none".equals(Misc.getAttribute(onode,XMLString.TEXT_DISPLAY))) { return hnode; }
|
2009-02-20 09:37:06 +00:00
|
|
|
String sName = Misc.getAttribute(onode,XMLString.TEXT_NAME);
|
|
|
|
String sStyleName = Misc.getAttribute(onode,XMLString.TEXT_STYLE_NAME);
|
|
|
|
Element div = converter.createElement("div");
|
|
|
|
hnode.appendChild(div);
|
|
|
|
converter.addTarget(div,sName+"|region");
|
|
|
|
StyleInfo sectionInfo = new StyleInfo();
|
|
|
|
getSectionSc().applyStyle(sStyleName,sectionInfo);
|
|
|
|
applyStyle(sectionInfo,div);
|
|
|
|
sections.push(onode);
|
|
|
|
Node newhnode = traverseBlockText(onode, div);
|
|
|
|
sections.pop();
|
|
|
|
return newhnode.getParentNode();
|
|
|
|
}
|
|
|
|
|
2015-06-11 18:39:29 +00:00
|
|
|
private void handleHeading(Element onode, Element hnode, boolean bAfterSplit) {
|
2009-02-20 09:37:06 +00:00
|
|
|
int nListLevel = getOutlineLevel((Element)onode);
|
2011-03-10 16:06:14 +00:00
|
|
|
boolean bUnNumbered = "true".equals(Misc.getAttribute(onode,XMLString.TEXT_IS_LIST_HEADER));
|
2009-02-20 09:37:06 +00:00
|
|
|
boolean bRestart = "true".equals(Misc.getAttribute(onode,XMLString.TEXT_RESTART_NUMBERING));
|
|
|
|
int nStartValue = Misc.getPosInteger(Misc.getAttribute(onode,XMLString.TEXT_START_VALUE),1)-1;
|
|
|
|
handleHeading(onode, hnode, bAfterSplit, ofr.getOutlineStyle(),
|
2011-03-10 16:06:14 +00:00
|
|
|
nListLevel, bUnNumbered, bRestart, nStartValue);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process a text:h tag
|
|
|
|
*/
|
2015-06-11 18:39:29 +00:00
|
|
|
private void handleHeading(Element onode, Element hnode, boolean bAfterSplit,
|
2009-02-20 09:37:06 +00:00
|
|
|
ListStyle listStyle, int nListLevel, boolean bUnNumbered,
|
|
|
|
boolean bRestart, int nStartValue) {
|
2010-11-22 18:51:18 +00:00
|
|
|
|
2009-02-20 09:37:06 +00:00
|
|
|
// Note: nListLevel may in theory be different from the outline level,
|
|
|
|
// though the ui in OOo does not allow this
|
|
|
|
|
|
|
|
// Numbering: It is possible to define outline numbering in CSS2
|
2010-06-20 09:26:32 +00:00
|
|
|
// using counters; but this is not supported in all browsers
|
2009-02-20 09:37:06 +00:00
|
|
|
// TODO: Offer CSS2 solution as an alternative later.
|
|
|
|
|
|
|
|
// Note: Conditional styles are not supported
|
2010-05-09 13:40:00 +00:00
|
|
|
int nLevel = getOutlineLevel(onode);
|
2011-06-05 11:26:24 +00:00
|
|
|
if (nLevel<=6) { // Export as heading
|
|
|
|
String sStyleName = onode.getAttribute(XMLString.TEXT_STYLE_NAME);
|
|
|
|
StyleWithProperties style = ofr.getParStyle(sStyleName);
|
|
|
|
|
|
|
|
// Check for hidden text
|
|
|
|
if (!bDisplayHiddenText && style!=null && "none".equals(style.getProperty(XMLString.TEXT_DISPLAY))) { return; }
|
2010-05-09 13:40:00 +00:00
|
|
|
|
2011-06-05 11:26:24 +00:00
|
|
|
// Numbering
|
|
|
|
if (!bUnNumbered) {
|
|
|
|
// If the heading uses a paragraph style which sets an explicit empty list style name, it's unnumbered
|
|
|
|
if (style!=null) {
|
|
|
|
String sListStyleName = style.getListStyleName();
|
|
|
|
if (sListStyleName!=null && sListStyleName.length()==0) {
|
|
|
|
bUnNumbered = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ListCounter counter = null;
|
|
|
|
String sLabel="";
|
|
|
|
if (!bUnNumbered) {
|
|
|
|
counter = getListCounter(listStyle);
|
|
|
|
if (bRestart) { counter.restart(nListLevel,nStartValue); }
|
|
|
|
sLabel = counter.step(nListLevel).getLabel();
|
|
|
|
}
|
|
|
|
|
|
|
|
// In EPUB export, a striked out heading will only appear in the external toc
|
|
|
|
boolean bTocOnly = false;
|
|
|
|
if (converter.isOPS() && style!=null) {
|
|
|
|
String sStrikeOut = style.getProperty(XMLString.STYLE_TEXT_LINE_THROUGH_STYLE, true);
|
|
|
|
if (sStrikeOut!=null && !"none".equals(sStrikeOut)) {
|
|
|
|
bTocOnly = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Export the heading
|
|
|
|
if (!bTocOnly) {
|
|
|
|
// If split output, add headings of higher levels
|
|
|
|
if (bAfterSplit && nSplit>0) {
|
|
|
|
int nFirst = nLevel-nRepeatLevels;
|
|
|
|
if (nFirst<0) { nFirst=0; }
|
|
|
|
for (int i=nFirst; i<nLevel; i++) {
|
|
|
|
if (currentHeading[i]!=null) {
|
|
|
|
hnode.appendChild(converter.importNode(currentHeading[i],true));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apply style
|
|
|
|
StyleInfo info = new StyleInfo();
|
|
|
|
info.sTagName = "h"+nLevel;
|
|
|
|
getHeadingSc().applyStyle(nLevel, sStyleName, info);
|
|
|
|
|
|
|
|
// add root element
|
|
|
|
Element heading = converter.createElement(info.sTagName);
|
|
|
|
hnode.appendChild(heading);
|
|
|
|
applyStyle(info,heading);
|
|
|
|
traverseFloats(onode,hnode,heading);
|
|
|
|
// Apply writing direction
|
|
|
|
/*String sStyleName = Misc.getAttribute(onode,XMLString.TEXT_STYLE_NAME);
|
2009-02-20 09:37:06 +00:00
|
|
|
StyleWithProperties style = ofr.getParStyle(sStyleName);
|
|
|
|
if (style!=null) {
|
|
|
|
StyleInfo headInfo = new StyleInfo();
|
|
|
|
StyleConverterHelper.applyDirection(style,headInfo);
|
|
|
|
getParSc().applyStyle(headInfo,heading);
|
2010-05-09 13:40:00 +00:00
|
|
|
}*/
|
2009-02-20 09:37:06 +00:00
|
|
|
|
2011-06-05 11:26:24 +00:00
|
|
|
// Prepend asapNode
|
|
|
|
prependAsapNode(heading);
|
|
|
|
|
|
|
|
// Prepend numbering
|
|
|
|
if (!bUnNumbered) {
|
2014-09-23 20:19:03 +00:00
|
|
|
insertListLabel(listStyle,nListLevel,"SectionNumber",null,sLabel,heading);
|
2011-06-05 11:26:24 +00:00
|
|
|
}
|
2014-10-27 06:56:26 +00:00
|
|
|
|
2011-06-05 11:26:24 +00:00
|
|
|
// Add to toc
|
|
|
|
if (!bInToc) {
|
2015-06-11 18:39:29 +00:00
|
|
|
tocCv.handleHeading(onode,heading,sLabel);
|
2011-06-05 11:26:24 +00:00
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
|
2011-06-05 11:26:24 +00:00
|
|
|
// Convert content
|
|
|
|
StyleInfo innerInfo = new StyleInfo();
|
|
|
|
getHeadingSc().applyInnerStyle(nLevel, sStyleName, innerInfo);
|
|
|
|
Element content = heading;
|
|
|
|
if (innerInfo.sTagName!=null && innerInfo.sTagName.length()>0) {
|
|
|
|
content = converter.createElement(innerInfo.sTagName);
|
|
|
|
heading.appendChild(content);
|
|
|
|
applyStyle(innerInfo, content);
|
|
|
|
}
|
|
|
|
traverseInlineText(onode,content);
|
2014-10-27 06:56:26 +00:00
|
|
|
|
|
|
|
// Add before/after text if required
|
|
|
|
addBeforeAfter(heading,ofr.getParStyle(getParSc().getRealParStyleName(sStyleName)),config.getXHeadingStyleMap());
|
|
|
|
|
|
|
|
// Keep track of current headings for split output
|
2011-06-05 11:26:24 +00:00
|
|
|
currentHeading[nLevel] = heading;
|
|
|
|
for (int i=nLevel+1; i<=6; i++) {
|
|
|
|
currentHeading[i] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (!bInToc) {
|
2015-06-11 18:39:29 +00:00
|
|
|
tocCv.handleHeadingExternal(onode, hnode, sLabel);
|
2011-06-05 11:26:24 +00:00
|
|
|
}
|
|
|
|
// Keep track of current headings for split output
|
|
|
|
currentHeading[nLevel] = null;
|
|
|
|
for (int i=nLevel+1; i<=6; i++) {
|
|
|
|
currentHeading[i] = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
else { // beyond h6 - export as ordinary paragraph
|
|
|
|
handleParagraph(onode,hnode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process a text:p tag
|
|
|
|
*/
|
|
|
|
private void handleParagraph(Node onode, Node hnode) {
|
|
|
|
boolean bIsEmpty = OfficeReader.isWhitespaceContent(onode);
|
|
|
|
if (config.ignoreEmptyParagraphs() && bIsEmpty) { return; }
|
|
|
|
String sStyleName = Misc.getAttribute(onode,XMLString.TEXT_STYLE_NAME);
|
2010-11-22 18:51:18 +00:00
|
|
|
StyleWithProperties style = ofr.getParStyle(sStyleName);
|
|
|
|
if (!bDisplayHiddenText && style!=null && "none".equals(style.getProperty(XMLString.TEXT_DISPLAY))) { return; }
|
2010-10-30 10:35:46 +00:00
|
|
|
|
2009-02-20 09:37:06 +00:00
|
|
|
Element par;
|
|
|
|
if (ofr.isSpreadsheet()) { // attach inline text directly to parent (always a table cell)
|
|
|
|
par = (Element) hnode;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Hack because createParagraph doesn't work the way we need here :-(
|
|
|
|
Element temp = converter.createElement("temp");
|
|
|
|
par = createParagraph(temp, sStyleName);
|
|
|
|
prependAsapNode(par);
|
|
|
|
traverseFloats(onode,hnode,par);
|
|
|
|
hnode.appendChild(temp.getFirstChild());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Maybe add to toc
|
2015-06-11 18:39:29 +00:00
|
|
|
tocCv.handleParagraph((Element)onode, par, sCurrentListLabel);
|
|
|
|
|
2009-02-20 09:37:06 +00:00
|
|
|
if (!bIsEmpty) {
|
|
|
|
par = createTextBackground(par, sStyleName);
|
2010-05-09 13:40:00 +00:00
|
|
|
if (config.listFormatting()==XhtmlConfig.HARD_LABELS) {
|
2010-05-17 07:42:33 +00:00
|
|
|
insertListLabel(currentListStyle, nCurrentListLevel, "ItemNumber", null, sCurrentListLabel, par);
|
2010-05-04 08:25:15 +00:00
|
|
|
}
|
|
|
|
sCurrentListLabel = null;
|
2009-02-20 09:37:06 +00:00
|
|
|
traverseInlineText(onode,par);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// An empty paragraph (this includes paragraphs that only contains
|
|
|
|
// whitespace) is ignored by the browser, hence we add
|
|
|
|
par.appendChild( converter.createTextNode("\u00A0") );
|
2010-05-04 08:25:15 +00:00
|
|
|
sCurrentListLabel = null;
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
2011-06-16 20:18:47 +00:00
|
|
|
|
|
|
|
if (converter.isOPS() && !par.hasChildNodes()) {
|
2014-10-27 06:56:26 +00:00
|
|
|
// Finally, in EPUB export, if the exported paragraph turns out to be empty, remove it
|
2011-06-16 20:18:47 +00:00
|
|
|
hnode.removeChild(par);
|
|
|
|
}
|
2014-10-27 06:56:26 +00:00
|
|
|
else {
|
|
|
|
// Otherwise, add before/after text if required
|
|
|
|
addBeforeAfter(par,ofr.getParStyle(getParSc().getRealParStyleName(sStyleName)),config.getXParStyleMap());
|
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void prependAsapNode(Node node) {
|
|
|
|
if (asapNode!=null) {
|
|
|
|
// May float past a split; check this first
|
|
|
|
if (asapNode.getOwnerDocument()!=node.getOwnerDocument()) {
|
|
|
|
asapNode = converter.importNode(asapNode,true);
|
|
|
|
}
|
|
|
|
node.appendChild(asapNode); asapNode = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// LISTS
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Helper: Get a list counter for a list style
|
|
|
|
private ListCounter getListCounter(ListStyle style) {
|
|
|
|
if (style==ofr.getOutlineStyle()) {
|
|
|
|
// Outline numbering has a special counter
|
|
|
|
return outlineNumbering;
|
|
|
|
}
|
|
|
|
else if (style!=null) {
|
|
|
|
// Get existing or create new counter
|
|
|
|
if (listCounters.containsKey(style.getName())) {
|
2009-03-30 07:38:37 +00:00
|
|
|
return listCounters.get(style.getName());
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
ListCounter counter = new ListCounter(style);
|
|
|
|
listCounters.put(style.getName(),counter);
|
|
|
|
return counter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// No style, return a dummy
|
|
|
|
return new ListCounter();
|
|
|
|
}
|
|
|
|
}
|
2010-05-04 08:25:15 +00:00
|
|
|
|
|
|
|
// Helper: Insert a list label formatted with a list style
|
2010-05-17 07:42:33 +00:00
|
|
|
private void insertListLabel(ListStyle style, int nLevel, String sDefaultStyle, String sPrefix, String sLabel, Element hnode) {
|
2010-05-04 08:25:15 +00:00
|
|
|
if (sLabel!=null && sLabel.length()>0) {
|
2010-05-17 07:42:33 +00:00
|
|
|
if (sPrefix!=null) {
|
|
|
|
Element prefix = converter.createElement("span");
|
|
|
|
prefix.setAttribute("class", "chapter-name");
|
|
|
|
hnode.appendChild(prefix);
|
|
|
|
prefix.appendChild( converter.createTextNode(sPrefix));
|
|
|
|
}
|
2010-05-04 08:25:15 +00:00
|
|
|
StyleInfo info = new StyleInfo();
|
|
|
|
if (style!=null) {
|
|
|
|
String sTextStyleName = style.getLevelProperty(nLevel,XMLString.TEXT_STYLE_NAME);
|
|
|
|
getTextSc().applyStyle(sTextStyleName, info);
|
|
|
|
}
|
2010-05-09 13:40:00 +00:00
|
|
|
|
|
|
|
if (info.sTagName==null) { info.sTagName = "span"; }
|
|
|
|
if (info.sClass==null) { info.sClass = sDefaultStyle; }
|
|
|
|
|
|
|
|
Element content = converter.createElement(info.sTagName);
|
|
|
|
getTextSc().applyStyle(info, content);
|
|
|
|
hnode.appendChild(content);
|
|
|
|
content.appendChild( converter.createTextNode(sLabel) );
|
2010-05-04 08:25:15 +00:00
|
|
|
}
|
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
// Helper: Check if a list contains any items
|
|
|
|
private boolean hasItems(Node onode) {
|
|
|
|
Node child = onode.getFirstChild();
|
|
|
|
while (child!=null) {
|
|
|
|
if (Misc.isElement(child,XMLString.TEXT_LIST_ITEM) ||
|
|
|
|
Misc.isElement(child,XMLString.TEXT_LIST_HEADER)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
child = child.getNextSibling();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Merge these three methods
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process a text:ordered-list tag.
|
|
|
|
*/
|
|
|
|
private void handleOL (Node onode, int nLevel, String sStyleName, Node hnode) {
|
|
|
|
if (hasItems(onode)) {
|
|
|
|
// add an OL element
|
|
|
|
Element list = converter.createElement("ol");
|
|
|
|
StyleInfo listInfo = new StyleInfo();
|
|
|
|
getListSc().applyStyle(nLevel,sStyleName,listInfo);
|
|
|
|
applyStyle(listInfo,list);
|
|
|
|
hnode.appendChild(list);
|
|
|
|
traverseList(onode,nLevel,sStyleName,list);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process a text:unordered-list tag.
|
|
|
|
*/
|
|
|
|
private void handleUL (Node onode, int nLevel, String sStyleName, Node hnode) {
|
|
|
|
if (hasItems(onode)) {
|
|
|
|
// add an UL element
|
|
|
|
Element list = converter.createElement("ul");
|
|
|
|
StyleInfo listInfo = new StyleInfo();
|
|
|
|
getListSc().applyStyle(nLevel,sStyleName,listInfo);
|
|
|
|
applyStyle(listInfo,list);
|
|
|
|
hnode.appendChild(list);
|
|
|
|
traverseList(onode,nLevel,sStyleName,list);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleList(Node onode, int nLevel, String sStyleName, Node hnode) {
|
|
|
|
// In OpenDocument, we should use the style to determine the type of list
|
|
|
|
String sStyleName1 = Misc.getAttribute(onode,XMLString.TEXT_STYLE_NAME);
|
|
|
|
if (sStyleName1!=null) { sStyleName = sStyleName1; }
|
|
|
|
ListStyle style = ofr.getListStyle(sStyleName);
|
|
|
|
if (style!=null && style.isNumber(nLevel)) {
|
|
|
|
handleOL(onode,nLevel,sStyleName,hnode);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
handleUL(onode,nLevel,sStyleName,hnode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process the contents of a list (Changed as suggested by Nick Bower)
|
|
|
|
* The option xhtml_use_list_hack triggers some *invalid* code:
|
|
|
|
* - the attribute start on ol (is valid in html 4 transitional)
|
|
|
|
* - the attribute value on li (is valid in html 4 transitional)
|
|
|
|
* (these attributes are supposed to be replaced by css, but browsers
|
|
|
|
* generally don't support that)
|
|
|
|
* - generates <ol><ol><li>...</li></ol></ol> instead of
|
|
|
|
* <ol><li><ol><li>...</li></ol></li></ol> in case the first child of
|
|
|
|
* a list item is a new list. This occurs when a list is *continued* at
|
|
|
|
* level 2 or higher. This hack seems to be the only solution that
|
|
|
|
* actually produces correct results in browsers :-(
|
|
|
|
*/
|
|
|
|
private void traverseList (Node onode, int nLevel, String styleName, Element hnode) {
|
|
|
|
ListCounter counter = getListCounter(ofr.getListStyle(styleName));
|
|
|
|
|
|
|
|
// Restart numbering, if required
|
2014-08-27 07:25:22 +00:00
|
|
|
//if (counter!=null) {
|
|
|
|
boolean bContinueNumbering = "true".equals(Misc.getAttribute(onode,XMLString.TEXT_CONTINUE_NUMBERING));
|
|
|
|
if (!bContinueNumbering && counter!=null) {
|
|
|
|
counter.restart(nLevel);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
2014-08-27 07:25:22 +00:00
|
|
|
if (config.listFormatting()==XhtmlConfig.CSS1_HACK && counter.getValue(nLevel)>0) {
|
|
|
|
hnode.setAttribute("start",Integer.toString(counter.getValue(nLevel)+1));
|
|
|
|
}
|
|
|
|
//}
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
if (onode.hasChildNodes()) {
|
|
|
|
NodeList nList = onode.getChildNodes();
|
|
|
|
int len = nList.getLength();
|
|
|
|
|
|
|
|
for (int i = 0; i < len; i++) {
|
|
|
|
Node child = nList.item(i);
|
|
|
|
|
|
|
|
if (child.getNodeType() == Node.ELEMENT_NODE) {
|
|
|
|
String nodeName = child.getNodeName();
|
|
|
|
|
|
|
|
if (nodeName.equals(XMLString.TEXT_LIST_ITEM)) {
|
|
|
|
// Check to see if first child is a new list
|
|
|
|
boolean bIsImmediateNestedList = false;
|
|
|
|
Element child1 = Misc.getFirstChildElement(child);
|
|
|
|
if (child1.getTagName().equals(XMLString.TEXT_ORDERED_LIST) || // old
|
|
|
|
child1.getTagName().equals(XMLString.TEXT_UNORDERED_LIST) || // old
|
|
|
|
child1.getTagName().equals(XMLString.TEXT_LIST)) { // oasis
|
|
|
|
bIsImmediateNestedList = true;
|
|
|
|
}
|
|
|
|
|
2010-05-09 13:40:00 +00:00
|
|
|
if (config.listFormatting()==XhtmlConfig.CSS1_HACK && bIsImmediateNestedList) {
|
2009-02-20 09:37:06 +00:00
|
|
|
traverseListItem(child,nLevel,styleName,hnode);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// add an li element
|
2014-08-27 07:25:22 +00:00
|
|
|
//if (counter!=null) {
|
|
|
|
sCurrentListLabel = counter.step(nLevel).getLabel();
|
|
|
|
//}
|
2010-05-04 08:25:15 +00:00
|
|
|
currentListStyle = ofr.getListStyle(styleName);
|
|
|
|
nCurrentListLevel = nLevel;
|
2009-02-20 09:37:06 +00:00
|
|
|
Element item = converter.createElement("li");
|
|
|
|
StyleInfo info = new StyleInfo();
|
|
|
|
getPresentationSc().applyOutlineStyle(nLevel,info);
|
|
|
|
applyStyle(info,item);
|
|
|
|
hnode.appendChild(item);
|
2010-05-09 13:40:00 +00:00
|
|
|
if (config.listFormatting()==XhtmlConfig.CSS1_HACK) {
|
2009-02-20 09:37:06 +00:00
|
|
|
boolean bRestart = "true".equals(Misc.getAttribute(child,
|
|
|
|
XMLString.TEXT_RESTART_NUMBERING));
|
|
|
|
int nStartValue = Misc.getPosInteger(Misc.getAttribute(child,
|
|
|
|
XMLString.TEXT_START_VALUE),1);
|
|
|
|
if (bRestart) {
|
|
|
|
item.setAttribute("value",Integer.toString(nStartValue));
|
2014-08-27 07:25:22 +00:00
|
|
|
//if (counter!=null) {
|
|
|
|
sCurrentListLabel = counter.restart(nLevel,nStartValue).getLabel();
|
|
|
|
//}
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
traverseListItem(child,nLevel,styleName,item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (nodeName.equals(XMLString.TEXT_LIST_HEADER)) {
|
|
|
|
// add an li element
|
|
|
|
Element item = converter.createElement("li");
|
|
|
|
hnode.appendChild(item);
|
|
|
|
item.setAttribute("style","list-style-type:none");
|
|
|
|
traverseListItem(child,nLevel,styleName,item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process the contents of a list item
|
|
|
|
* (a list header should only contain paragraphs, but we don't care)
|
|
|
|
*/
|
|
|
|
private void traverseListItem (Node onode, int nLevel, String styleName, Node hnode) {
|
|
|
|
// First check if we have a single paragraph to be omitted
|
|
|
|
// This should happen if we ignore styles and have no style-map
|
|
|
|
// for the paragraph style used
|
|
|
|
if (config.xhtmlFormatting()!=XhtmlConfig.CONVERT_ALL && onode.hasChildNodes()) {
|
|
|
|
NodeList list = onode.getChildNodes();
|
|
|
|
int nLen = list.getLength();
|
|
|
|
int nParCount = 0;
|
|
|
|
boolean bNoPTag = true;
|
|
|
|
for (int i=0; i<nLen; i++) {
|
|
|
|
if (list.item(i).getNodeType()==Node.ELEMENT_NODE) {
|
|
|
|
if (list.item(i).getNodeName().equals(XMLString.TEXT_P)) {
|
|
|
|
nParCount++;
|
|
|
|
if (bNoPTag) {
|
|
|
|
String sDisplayName = ofr.getParStyles().getDisplayName(Misc.getAttribute(list.item(0),XMLString.TEXT_STYLE_NAME));
|
|
|
|
if (config.getXParStyleMap().contains(sDisplayName)) {
|
|
|
|
bNoPTag = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else { // found non-text:p element
|
|
|
|
bNoPTag=false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (bNoPTag && nParCount<=1) {
|
|
|
|
// traverse the list
|
|
|
|
for (int i = 0; i < nLen; i++) {
|
|
|
|
Node child = list.item(i);
|
|
|
|
|
|
|
|
if (child.getNodeType() == Node.ELEMENT_NODE) {
|
|
|
|
String nodeName = child.getNodeName();
|
|
|
|
|
|
|
|
if (nodeName.equals(XMLString.TEXT_P)) {
|
|
|
|
traverseInlineText(child,hnode);
|
|
|
|
}
|
|
|
|
if (nodeName.equals(XMLString.TEXT_LIST)) { // oasis
|
|
|
|
handleList(child,nLevel+1,styleName,hnode);
|
|
|
|
}
|
|
|
|
if (nodeName.equals(XMLString.TEXT_ORDERED_LIST)) { // old
|
|
|
|
handleOL(child,nLevel+1,styleName,hnode);
|
|
|
|
}
|
|
|
|
if (nodeName.equals(XMLString.TEXT_UNORDERED_LIST)) { // old
|
|
|
|
handleUL(child,nLevel+1,styleName,hnode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Still here? - traverse block text as usual!
|
|
|
|
traverseBlockText(onode,nLevel,styleName,hnode);
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// FAKE LISTS
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// A fake list is a list which is converted into a sequence of numbered
|
|
|
|
// paragraphs rather than into a list.
|
2010-05-04 08:25:15 +00:00
|
|
|
// Currently this is done for list which only contains headings
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
// Helper: Check to see, if this list contains only headings
|
|
|
|
// (If so, we will ignore the list and apply the numbering to the headings)
|
|
|
|
private boolean listIsOnlyHeadings(Node node) {
|
|
|
|
Node child = node.getFirstChild();
|
|
|
|
while (child!=null) {
|
|
|
|
if (child.getNodeType() == Node.ELEMENT_NODE) {
|
|
|
|
String nodeName = child.getNodeName();
|
|
|
|
if (nodeName.equals(XMLString.TEXT_LIST_ITEM)) {
|
|
|
|
if (!itemIsOnlyHeadings(child)) return false;
|
|
|
|
}
|
|
|
|
else if (nodeName.equals(XMLString.TEXT_LIST_HEADER)) {
|
|
|
|
if (!itemIsOnlyHeadings(child)) return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
child = child.getNextSibling();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean itemIsOnlyHeadings(Node node) {
|
|
|
|
Node child = node.getFirstChild();
|
|
|
|
while (child!=null) {
|
|
|
|
if (child.getNodeType() == Node.ELEMENT_NODE) {
|
|
|
|
String nodeName = child.getNodeName();
|
|
|
|
if (nodeName.equals(XMLString.TEXT_LIST)) {
|
|
|
|
if (!listIsOnlyHeadings(child)) return false;
|
|
|
|
}
|
|
|
|
else if (nodeName.equals(XMLString.TEXT_ORDERED_LIST)) {
|
|
|
|
if (!listIsOnlyHeadings(child)) return false;
|
|
|
|
}
|
|
|
|
else if (nodeName.equals(XMLString.TEXT_UNORDERED_LIST)) {
|
|
|
|
if (!listIsOnlyHeadings(child)) return false;
|
|
|
|
}
|
|
|
|
else if(!nodeName.equals(XMLString.TEXT_H)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
child = child.getNextSibling();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Splitting may occur inside a fake list, so we return the (new) hnode
|
|
|
|
private Node handleFakeList(Node onode, int nLevel, String sStyleName, Node hnode) {
|
|
|
|
String sStyleName1 = Misc.getAttribute(onode,XMLString.TEXT_STYLE_NAME);
|
|
|
|
if (sStyleName1!=null) { sStyleName = sStyleName1; }
|
|
|
|
return traverseFakeList(onode,hnode,nLevel,sStyleName);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Traverse a list which is not exported as a list but as a sequence of
|
|
|
|
// numbered headings/paragraphs
|
|
|
|
private Node traverseFakeList (Node onode, Node hnode, int nLevel, String sStyleName) {
|
|
|
|
// Restart numbering?
|
|
|
|
boolean bContinueNumbering ="true".equals(
|
|
|
|
Misc.getAttribute(onode,XMLString.TEXT_CONTINUE_NUMBERING));
|
|
|
|
if (!bContinueNumbering) {
|
|
|
|
getListCounter(ofr.getListStyle(sStyleName)).restart(nLevel);
|
|
|
|
}
|
|
|
|
|
|
|
|
Node child = onode.getFirstChild();
|
|
|
|
while (child!=null) {
|
|
|
|
if (child.getNodeType() == Node.ELEMENT_NODE) {
|
|
|
|
String sNodeName = child.getNodeName();
|
|
|
|
|
|
|
|
if (sNodeName.equals(XMLString.TEXT_LIST_ITEM)) {
|
|
|
|
boolean bRestart = "true".equals(Misc.getAttribute(child,
|
|
|
|
XMLString.TEXT_RESTART_NUMBERING));
|
|
|
|
int nStartValue = Misc.getPosInteger(Misc.getAttribute(child,
|
|
|
|
XMLString.TEXT_START_VALUE),1);
|
|
|
|
hnode = traverseFakeListItem(child, hnode, nLevel, sStyleName, false, bRestart, nStartValue);
|
|
|
|
}
|
|
|
|
else if (sNodeName.equals(XMLString.TEXT_LIST_HEADER)) {
|
|
|
|
hnode = traverseFakeListItem(child, hnode, nLevel, sStyleName, true, false, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
child = child.getNextSibling();
|
|
|
|
}
|
|
|
|
return hnode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Process the contents of a fake list item
|
|
|
|
private Node traverseFakeListItem (Node onode, Node hnode, int nLevel,
|
|
|
|
String sStyleName, boolean bUnNumbered, boolean bRestart, int nStartValue) {
|
|
|
|
Node child = onode.getFirstChild();
|
|
|
|
while (child!=null) {
|
|
|
|
if (child.getNodeType() == Node.ELEMENT_NODE) {
|
|
|
|
String sNodeName = child.getNodeName();
|
|
|
|
|
|
|
|
if (sNodeName.equals(XMLString.TEXT_H)) {
|
|
|
|
nDontSplitLevel++;
|
|
|
|
int nOutlineLevel = getOutlineLevel((Element)onode);
|
|
|
|
Node rememberNode = hnode;
|
2010-11-22 18:51:18 +00:00
|
|
|
StyleWithProperties style = ofr.getParStyle(Misc.getAttribute(child, XMLString.TEXT_STYLE_NAME));
|
|
|
|
hnode = maybeSplit(hnode,style,nOutlineLevel);
|
2015-06-11 18:39:29 +00:00
|
|
|
handleHeading((Element)child, (Element)hnode, rememberNode!=hnode,
|
2009-02-20 09:37:06 +00:00
|
|
|
ofr.getListStyle(sStyleName), nLevel,
|
|
|
|
bUnNumbered, bRestart, nStartValue);
|
|
|
|
nDontSplitLevel--;
|
|
|
|
if (nDontSplitLevel==0) { bAfterHeading=true; }
|
|
|
|
}
|
|
|
|
else if (sNodeName.equals(XMLString.TEXT_P)) {
|
|
|
|
// Currently we only handle fakes lists containing headings
|
|
|
|
}
|
|
|
|
else if (sNodeName.equals(XMLString.TEXT_LIST)) { // oasis
|
|
|
|
return traverseFakeList(child, hnode, nLevel+1, sStyleName);
|
|
|
|
}
|
|
|
|
else if (sNodeName.equals(XMLString.TEXT_ORDERED_LIST)) { // old
|
|
|
|
return traverseFakeList(child, hnode, nLevel+1, sStyleName);
|
|
|
|
}
|
|
|
|
else if (sNodeName.equals(XMLString.TEXT_UNORDERED_LIST)) { // old
|
|
|
|
return traverseFakeList(child, hnode, nLevel+1, sStyleName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
child = child.getNextSibling();
|
|
|
|
}
|
|
|
|
return hnode;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// INLINE TEXT
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/* Process floating frames bound to this inline text (ie. paragraph) */
|
|
|
|
private void traverseFloats(Node onode, Node hnodeBlock, Node hnodeInline) {
|
|
|
|
Node child = onode.getFirstChild();
|
|
|
|
while (child!=null) {
|
|
|
|
if (child.getNodeType()==Node.ELEMENT_NODE) {
|
|
|
|
Element elm = (Element) child;
|
|
|
|
if (OfficeReader.isDrawElement(elm)) {
|
|
|
|
elm = getDrawCv().getRealDrawElement(elm);
|
2014-09-06 19:19:17 +00:00
|
|
|
String sAnchor = elm.getAttribute(XMLString.TEXT_ANCHOR_TYPE);
|
|
|
|
if (Misc.isElement(elm, XMLString.DRAW_FRAME)) {
|
|
|
|
elm = Misc.getFirstChildElement(elm);
|
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
if (elm!=null) {
|
2014-09-06 19:19:17 +00:00
|
|
|
String sTag = elm.getTagName();
|
2009-02-20 09:37:06 +00:00
|
|
|
// Convert only floating frames; text-boxes must always float
|
|
|
|
if (!"as-char".equals(sAnchor)) {
|
|
|
|
getDrawCv().handleDrawElement(elm,(Element)hnodeBlock,
|
|
|
|
(Element)hnodeInline,nFloatMode);
|
|
|
|
}
|
|
|
|
else if (XMLString.DRAW_TEXT_BOX.equals(sTag)) {
|
|
|
|
getDrawCv().handleDrawElement(elm,(Element)hnodeBlock,
|
|
|
|
(Element)hnodeInline,DrawConverter.INLINE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (OfficeReader.isTextElement(elm)) {
|
|
|
|
// Do not descend into {foot|end}notes
|
|
|
|
if (!OfficeReader.isNoteElement(elm)) {
|
|
|
|
traverseFloats(elm,hnodeBlock,hnodeInline);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
child = child.getNextSibling();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process inline text
|
|
|
|
*/
|
2015-06-11 18:39:29 +00:00
|
|
|
protected void traverseInlineText (Node onode,Node hnode) {
|
2009-02-20 09:37:06 +00:00
|
|
|
//String styleName = Misc.getAttribute(onode, XMLString.TEXT_STYLE_NAME);
|
|
|
|
|
|
|
|
if (onode.hasChildNodes()) {
|
|
|
|
NodeList nList = onode.getChildNodes();
|
|
|
|
int nLen = nList.getLength();
|
|
|
|
|
|
|
|
for (int i = 0; i < nLen; i++) {
|
|
|
|
|
|
|
|
Node child = nList.item(i);
|
|
|
|
short nodeType = child.getNodeType();
|
|
|
|
|
|
|
|
switch (nodeType) {
|
|
|
|
case Node.TEXT_NODE:
|
|
|
|
String s = child.getNodeValue();
|
|
|
|
if (s.length() > 0) {
|
|
|
|
hnode.appendChild( converter.createTextNode(s) );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Node.ELEMENT_NODE:
|
|
|
|
String sName = child.getNodeName();
|
|
|
|
if (OfficeReader.isDrawElement(child)) {
|
|
|
|
Element elm = getDrawCv().getRealDrawElement((Element)child);
|
|
|
|
if (elm!=null) {
|
|
|
|
String sAnchor = (elm.getAttribute(XMLString.TEXT_ANCHOR_TYPE));
|
|
|
|
if ("as-char".equals(sAnchor)) {
|
|
|
|
getDrawCv().handleDrawElement(elm,null,(Element)hnode,DrawConverter.INLINE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (child.getNodeName().equals(XMLString.TEXT_S)) {
|
|
|
|
if (config.ignoreDoubleSpaces()) {
|
|
|
|
hnode.appendChild( converter.createTextNode(" ") );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int count= Misc.getPosInteger(Misc.getAttribute(child,XMLString.TEXT_C),1);
|
|
|
|
for ( ; count > 0; count--) {
|
|
|
|
hnode.appendChild( converter.createTextNode("\u00A0") );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_TAB_STOP)) {
|
|
|
|
handleTabStop(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_TAB)) { // oasis
|
|
|
|
handleTabStop(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_LINE_BREAK)) {
|
|
|
|
if (!config.ignoreHardLineBreaks()) {
|
|
|
|
hnode.appendChild( converter.createElement("br") );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_SPAN)) {
|
|
|
|
handleSpan(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_A)) {
|
|
|
|
handleAnchor(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_FOOTNOTE)) {
|
|
|
|
handleFootnote(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_ENDNOTE)) {
|
|
|
|
handleEndnote(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_NOTE)) { // oasis
|
|
|
|
if ("endnote".equals(Misc.getAttribute(child,XMLString.TEXT_NOTE_CLASS))) {
|
|
|
|
handleEndnote(child,hnode);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
handleFootnote(child,hnode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_SEQUENCE)) {
|
|
|
|
handleSequence(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_PAGE_NUMBER)) {
|
|
|
|
handlePageNumber(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_PAGE_COUNT)) {
|
|
|
|
handlePageCount(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_SEQUENCE_REF)) {
|
|
|
|
handleSequenceRef(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_FOOTNOTE_REF)) {
|
|
|
|
handleNoteRef(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_ENDNOTE_REF)) {
|
|
|
|
handleNoteRef(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_NOTE_REF)) { // oasis
|
|
|
|
handleNoteRef(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_REFERENCE_MARK)) {
|
|
|
|
handleReferenceMark(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_REFERENCE_MARK_START)) {
|
|
|
|
handleReferenceMark(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_REFERENCE_REF)) {
|
|
|
|
handleReferenceRef(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_BOOKMARK)) {
|
|
|
|
handleBookmark(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_BOOKMARK_START)) {
|
|
|
|
handleBookmark(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_BOOKMARK_REF)) {
|
|
|
|
handleBookmarkRef(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_ALPHABETICAL_INDEX_MARK)) {
|
2015-06-11 18:39:29 +00:00
|
|
|
if (!bInToc) { indexCv.handleIndexMark(child,hnode); }
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_ALPHABETICAL_INDEX_MARK_START)) {
|
2015-06-11 18:39:29 +00:00
|
|
|
if (!bInToc) { indexCv.handleIndexMarkStart(child,hnode); }
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_TOC_MARK)) {
|
2015-06-11 18:39:29 +00:00
|
|
|
tocCv.handleTocMark(child,hnode);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_TOC_MARK_START)) {
|
2015-06-11 18:39:29 +00:00
|
|
|
tocCv.handleTocMark(child,hnode);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
else if (sName.equals(XMLString.TEXT_BIBLIOGRAPHY_MARK)) {
|
|
|
|
handleBibliographyMark(child,hnode);
|
|
|
|
}
|
2010-11-22 18:51:18 +00:00
|
|
|
else if (sName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)) {
|
|
|
|
if (nPageBreakSplit==XhtmlConfig.ALL) { bPendingPageBreak = true; }
|
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
else if (sName.equals(XMLString.OFFICE_ANNOTATION)) {
|
|
|
|
converter.handleOfficeAnnotation(child,hnode);
|
|
|
|
}
|
|
|
|
else if (sName.startsWith("text:")) {
|
|
|
|
traverseInlineText(child,hnode);
|
|
|
|
}
|
|
|
|
// other tags are ignored;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleTabStop(Node onode, Node hnode) {
|
2009-09-07 08:01:40 +00:00
|
|
|
// xhtml does not have tab stops, but we export and ASCII TAB character, which the
|
2009-02-20 09:37:06 +00:00
|
|
|
// user may choose to format
|
|
|
|
if (config.getXhtmlTabstopStyle().length()>0) {
|
|
|
|
Element span = converter.createElement("span");
|
|
|
|
hnode.appendChild(span);
|
|
|
|
span.setAttribute("class",config.getXhtmlTabstopStyle());
|
2009-09-07 08:01:40 +00:00
|
|
|
span.appendChild(converter.createTextNode("\t"));
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
else {
|
2009-09-07 08:01:40 +00:00
|
|
|
hnode.appendChild(converter.createTextNode("\t"));
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleSpan(Node onode, Node hnode) {
|
2010-11-22 18:51:18 +00:00
|
|
|
StyleWithProperties style = ofr.getTextStyle(Misc.getAttribute(onode, XMLString.TEXT_STYLE_NAME));
|
|
|
|
if (!bDisplayHiddenText && style!=null && "none".equals(style.getProperty(XMLString.TEXT_DISPLAY))) { return; }
|
|
|
|
|
2009-03-25 18:58:29 +00:00
|
|
|
if (!bInToc) {
|
|
|
|
String sStyleName = Misc.getAttribute(onode,XMLString.TEXT_STYLE_NAME);
|
|
|
|
Element span = createInline((Element) hnode,sStyleName);
|
|
|
|
traverseInlineText(onode,span);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
traverseInlineText(onode,hnode);
|
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
|
2015-06-11 18:39:29 +00:00
|
|
|
protected void traversePCDATA(Node onode, Node hnode) {
|
2009-02-20 09:37:06 +00:00
|
|
|
if (onode.hasChildNodes()) {
|
|
|
|
NodeList nl = onode.getChildNodes();
|
|
|
|
int nLen = nl.getLength();
|
|
|
|
for (int i=0; i<nLen; i++) {
|
|
|
|
if (nl.item(i).getNodeType()==Node.TEXT_NODE) {
|
|
|
|
hnode.appendChild( converter.createTextNode(nl.item(i).getNodeValue()) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void handleAnchor(Node onode, Node hnode) {
|
|
|
|
Element anchor = converter.createLink((Element)onode);
|
|
|
|
hnode.appendChild(anchor);
|
|
|
|
traverseInlineText(onode,anchor);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Process a footnote */
|
|
|
|
private void handleFootnote(Node onode, Node hnode) {
|
|
|
|
String sId = Misc.getAttribute(onode,XMLString.TEXT_ID);
|
|
|
|
Element span = createInline((Element) hnode,sFntCitBodyStyle);
|
|
|
|
// Create target and back-link
|
|
|
|
Element link = converter.createLink(sId);
|
|
|
|
converter.addTarget(link,"body"+sId);
|
|
|
|
span.appendChild(link);
|
|
|
|
Node citation = Misc.getChildByTagName(onode,XMLString.TEXT_FOOTNOTE_CITATION);
|
|
|
|
if (citation==null) { // try oasis
|
|
|
|
citation = Misc.getChildByTagName(onode,XMLString.TEXT_NOTE_CITATION);
|
|
|
|
}
|
|
|
|
traversePCDATA(citation,link);
|
|
|
|
footnotes.add(onode);
|
|
|
|
}
|
|
|
|
|
2011-03-09 08:48:57 +00:00
|
|
|
private void insertFootnotes(Node hnode, boolean bFinal) {
|
2009-02-20 09:37:06 +00:00
|
|
|
int n = footnotes.size();
|
2011-03-09 08:48:57 +00:00
|
|
|
|
2012-03-05 14:56:56 +00:00
|
|
|
if (n>0) {
|
|
|
|
if (bFootnotesAtPage) { // Add footnote rule
|
|
|
|
Element rule = converter.createElement("hr");
|
|
|
|
StyleInfo info = new StyleInfo();
|
|
|
|
getPageSc().applyFootnoteRuleStyle(info);
|
|
|
|
getPageSc().applyStyle(info, rule);
|
|
|
|
hnode.appendChild(rule);
|
|
|
|
}
|
|
|
|
else if (bFinal) { // New page if required for footnotes as endnotes
|
|
|
|
if (nSplit>0) { hnode = converter.nextOutFile(); }
|
|
|
|
insertNoteHeading(hnode, config.getFootnotesHeading(), "footnotes");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bFinal || bFootnotesAtPage) { // Insert the footnotes
|
|
|
|
for (int i=0; i<n; i++) {
|
|
|
|
Node footnote = footnotes.get(i);
|
|
|
|
String sId = Misc.getAttribute(footnote,XMLString.TEXT_ID);
|
|
|
|
Node citation = Misc.getChildByTagName(footnote,XMLString.TEXT_FOOTNOTE_CITATION);
|
|
|
|
if (citation==null) { // try oasis
|
|
|
|
citation = Misc.getChildByTagName(footnote,XMLString.TEXT_NOTE_CITATION);
|
|
|
|
}
|
|
|
|
Node body = Misc.getChildByTagName(footnote,XMLString.TEXT_FOOTNOTE_BODY);
|
|
|
|
if (body==null) { // try oasis
|
|
|
|
body = Misc.getChildByTagName(footnote,XMLString.TEXT_NOTE_BODY);
|
|
|
|
}
|
|
|
|
traverseNoteBody(sId,sFntCitStyle,citation,body,hnode,ofr.getFootnotesConfiguration());
|
2011-03-09 08:48:57 +00:00
|
|
|
}
|
2012-03-05 14:56:56 +00:00
|
|
|
footnotes.clear();
|
2011-03-09 08:48:57 +00:00
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Process an endnote */
|
|
|
|
private void handleEndnote(Node onode, Node hnode) {
|
|
|
|
String sId = Misc.getAttribute(onode,XMLString.TEXT_ID);
|
|
|
|
Element span = createInline((Element) hnode,sEntCitBodyStyle);
|
|
|
|
// Create target and back-link
|
|
|
|
Element link = converter.createLink(sId);
|
|
|
|
converter.addTarget(link,"body"+sId);
|
|
|
|
span.appendChild(link);
|
|
|
|
Node citation = Misc.getChildByTagName(onode,XMLString.TEXT_ENDNOTE_CITATION);
|
|
|
|
if (citation==null) { // try oasis
|
|
|
|
citation = Misc.getChildByTagName(onode,XMLString.TEXT_NOTE_CITATION);
|
|
|
|
}
|
|
|
|
traversePCDATA(citation,link);
|
|
|
|
endnotes.add(onode);
|
|
|
|
}
|
|
|
|
|
2011-03-09 08:48:57 +00:00
|
|
|
private void insertEndnotes(Node hnode) {
|
2009-02-20 09:37:06 +00:00
|
|
|
int n = endnotes.size();
|
2010-06-20 09:26:32 +00:00
|
|
|
if (n>0) {
|
|
|
|
if (nSplit>0) { hnode = converter.nextOutFile(); }
|
2011-03-09 08:48:57 +00:00
|
|
|
insertNoteHeading(hnode, config.getEndnotesHeading(), "endnotes");
|
2010-06-20 09:26:32 +00:00
|
|
|
for (int i=0; i<n; i++) {
|
|
|
|
Node endnote = endnotes.get(i);
|
|
|
|
String sId = Misc.getAttribute(endnote,XMLString.TEXT_ID);
|
|
|
|
Node citation = Misc.getChildByTagName(endnote,XMLString.TEXT_ENDNOTE_CITATION);
|
|
|
|
if (citation==null) { // try oasis
|
|
|
|
citation = Misc.getChildByTagName(endnote,XMLString.TEXT_NOTE_CITATION);
|
|
|
|
}
|
|
|
|
Node body = Misc.getChildByTagName(endnote,XMLString.TEXT_ENDNOTE_BODY);
|
|
|
|
if (body==null) { // try oasis
|
|
|
|
body = Misc.getChildByTagName(endnote,XMLString.TEXT_NOTE_BODY);
|
|
|
|
}
|
2011-03-09 08:48:57 +00:00
|
|
|
traverseNoteBody(sId,sEntCitStyle,citation,body,hnode,ofr.getEndnotesConfiguration());
|
2010-06-20 09:26:32 +00:00
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
}
|
2011-03-09 08:48:57 +00:00
|
|
|
|
|
|
|
private void insertNoteHeading(Node hnode, String sHeading, String sTarget) {
|
|
|
|
if (sHeading.length()>0) {
|
|
|
|
Element heading = converter.createElement("h1");
|
|
|
|
hnode.appendChild(heading);
|
|
|
|
heading.appendChild(converter.createTextNode(sHeading));
|
|
|
|
|
|
|
|
// Add to external content.
|
|
|
|
if (nSplit>0) {
|
|
|
|
converter.addContentEntry(sHeading, 1, null);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
//For single output file we need a target
|
|
|
|
converter.addTarget(heading,sTarget);
|
|
|
|
converter.addContentEntry(sHeading, 1, sTarget);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Process the contents of a footnote or endnote
|
|
|
|
*/
|
2011-03-09 08:48:57 +00:00
|
|
|
private void traverseNoteBody (String sId, String sCitStyle, Node citation, Node onode, Node hnode, PropertySet noteConfig) {
|
2009-02-20 09:37:06 +00:00
|
|
|
// Create the anchor/footnote symbol:
|
|
|
|
// Create target and link
|
|
|
|
Element link = converter.createLink("body"+sId);
|
|
|
|
converter.addTarget(link,sId);
|
|
|
|
StyleInfo linkInfo = new StyleInfo();
|
|
|
|
getTextSc().applyStyle(sCitStyle,linkInfo);
|
|
|
|
applyStyle(linkInfo,link);
|
2011-03-09 08:48:57 +00:00
|
|
|
String sPrefix = noteConfig.getProperty(XMLString.STYLE_NUM_PREFIX);
|
|
|
|
if (sPrefix!=null) {
|
|
|
|
link.appendChild(converter.createTextNode(sPrefix));
|
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
traversePCDATA(citation,link);
|
2011-03-09 08:48:57 +00:00
|
|
|
String sSuffix = noteConfig.getProperty(XMLString.STYLE_NUM_SUFFIX);
|
|
|
|
if (sSuffix!=null) {
|
|
|
|
link.appendChild(converter.createTextNode(sSuffix));
|
|
|
|
}
|
|
|
|
// Add a space and save it for later insertion
|
2009-02-20 09:37:06 +00:00
|
|
|
Element span = converter.createElement("span");
|
|
|
|
span.appendChild(link);
|
|
|
|
span.appendChild(converter.createTextNode(" "));
|
|
|
|
asapNode = span;
|
|
|
|
|
|
|
|
traverseBlockText(onode,hnode);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handlePageNumber(Node onode, Node hnode) {
|
|
|
|
// doesn't make any sense...
|
|
|
|
hnode.appendChild( converter.createTextNode("(Page number)") );
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handlePageCount(Node onode, Node hnode) {
|
|
|
|
// also no sense
|
|
|
|
hnode.appendChild( converter.createTextNode("(Page count)") );
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleSequence(Node onode, Node hnode) {
|
|
|
|
// Use current value, but turn references into hyperlinks
|
|
|
|
String sName = Misc.getAttribute(onode,XMLString.TEXT_REF_NAME);
|
2010-10-27 09:25:35 +00:00
|
|
|
if (sName!=null && !bInToc && ofr.hasSequenceRefTo(sName)) {
|
2009-02-20 09:37:06 +00:00
|
|
|
Element anchor = converter.createTarget("seq"+sName);
|
|
|
|
hnode.appendChild(anchor);
|
|
|
|
traversePCDATA(onode,anchor);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
traversePCDATA(onode,hnode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void createReference(Node onode, Node hnode, String sPrefix) {
|
|
|
|
// Turn reference into hyperlink
|
|
|
|
String sFormat = Misc.getAttribute(onode,XMLString.TEXT_REFERENCE_FORMAT);
|
|
|
|
String sName = Misc.getAttribute(onode,XMLString.TEXT_REF_NAME);
|
|
|
|
Element anchor = converter.createLink(sPrefix+sName);
|
|
|
|
hnode.appendChild(anchor);
|
|
|
|
if ("page".equals(sFormat)) { // all page numbers are 1 :-)
|
|
|
|
anchor.appendChild( converter.createTextNode("1") );
|
|
|
|
}
|
|
|
|
else { // in other cases use current value
|
|
|
|
traversePCDATA(onode,anchor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleSequenceRef(Node onode, Node hnode) {
|
2010-10-27 09:25:35 +00:00
|
|
|
createReference(onode,hnode,"seq");
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void handleNoteRef(Node onode, Node hnode) {
|
|
|
|
createReference(onode,hnode,"");
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleReferenceMark(Node onode, Node hnode) {
|
|
|
|
String sName = Misc.getAttribute(onode,XMLString.TEXT_NAME);
|
2010-10-27 09:25:35 +00:00
|
|
|
if (sName!=null && !bInToc && ofr.hasReferenceRefTo(sName)) {
|
2009-02-20 09:37:06 +00:00
|
|
|
hnode.appendChild(converter.createTarget("ref"+sName));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleReferenceRef(Node onode, Node hnode) {
|
2010-10-27 09:25:35 +00:00
|
|
|
createReference(onode,hnode,"ref");
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void handleBookmark(Node onode, Node hnode) {
|
|
|
|
// Note: Two targets (may be the target of a hyperlink or a reference)
|
|
|
|
String sName = Misc.getAttribute(onode,XMLString.TEXT_NAME);
|
|
|
|
if (sName!=null && !bInToc) {
|
|
|
|
hnode.appendChild(converter.createTarget(sName));
|
2010-10-27 09:25:35 +00:00
|
|
|
if (ofr.hasBookmarkRefTo(sName)) {
|
|
|
|
hnode.appendChild(converter.createTarget("bkm"+sName));
|
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleBookmarkRef(Node onode, Node hnode) {
|
|
|
|
createReference(onode,hnode,"bkm");
|
|
|
|
}
|
|
|
|
|
|
|
|
private void handleBibliographyMark(Node onode, Node hnode) {
|
|
|
|
if (bInToc) {
|
|
|
|
traversePCDATA(onode,hnode);
|
|
|
|
}
|
|
|
|
else {
|
2015-06-11 18:39:29 +00:00
|
|
|
bibCv.handleBibliographyMark(onode, hnode);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// UTILITY METHODS
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2010-03-12 10:35:05 +00:00
|
|
|
|
2014-10-27 06:56:26 +00:00
|
|
|
// Insert text before/after in an element
|
|
|
|
private void addBeforeAfter(Element elm, StyleWithProperties style, XhtmlStyleMap styleMap) {
|
|
|
|
if (style!=null && styleMap.contains(style.getDisplayName())) {
|
|
|
|
XhtmlStyleMapItem mapItem = styleMap.get(style.getDisplayName());
|
|
|
|
if (mapItem.sBefore!=null && mapItem.sBefore.length()>0) {
|
|
|
|
Node child = elm.getFirstChild();
|
|
|
|
if (child!=null) {
|
|
|
|
elm.insertBefore(converter.createTextNode(mapItem.sBefore),child);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
elm.appendChild(converter.createTextNode(mapItem.sBefore));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mapItem.sAfter!=null && mapItem.sAfter.length()>0) {
|
|
|
|
elm.appendChild(converter.createTextNode(mapItem.sAfter));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-12 10:35:05 +00:00
|
|
|
// Methods to query individual formatting properties (no inheritance)
|
|
|
|
|
|
|
|
// Does this style contain the bold attribute?
|
|
|
|
private boolean isBold(StyleWithProperties style) {
|
|
|
|
String s = style.getProperty(XMLString.FO_FONT_WEIGHT,false);
|
|
|
|
return s!=null && "bold".equals(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Does this style contain the italics/oblique attribute?
|
|
|
|
private boolean isItalics(StyleWithProperties style) {
|
|
|
|
String s = style.getProperty(XMLString.FO_FONT_STYLE,false);
|
|
|
|
return s!=null && !"normal".equals(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Does this style contain a fixed pitch font?
|
|
|
|
private boolean isFixed(StyleWithProperties style) {
|
|
|
|
String s = style.getProperty(XMLString.STYLE_FONT_NAME,false);
|
|
|
|
String s2 = null;
|
|
|
|
String s3 = null;
|
|
|
|
if (s!=null) {
|
|
|
|
FontDeclaration fd = (FontDeclaration) ofr.getFontDeclarations().getStyle(s);
|
|
|
|
if (fd!=null) {
|
|
|
|
s2 = fd.getFontFamilyGeneric();
|
|
|
|
s3 = fd.getFontPitch();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
s = style.getProperty(XMLString.FO_FONT_FAMILY,false);
|
|
|
|
s2 = style.getProperty(XMLString.STYLE_FONT_FAMILY_GENERIC,false);
|
|
|
|
s3 = style.getProperty(XMLString.STYLE_FONT_PITCH,false);
|
|
|
|
}
|
|
|
|
if ("fixed".equals(s3)) { return true; }
|
|
|
|
if ("modern".equals(s2)) { return true; }
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Does this style specify superscript?
|
|
|
|
private boolean isSuperscript(StyleWithProperties style) {
|
|
|
|
String sPos = style.getProperty(XMLString.STYLE_TEXT_POSITION,false);
|
|
|
|
if (sPos==null) return false;
|
|
|
|
if (sPos.startsWith("sub")) return false;
|
|
|
|
if (sPos.startsWith("-")) return false;
|
|
|
|
if (sPos.startsWith("0%")) return false;
|
|
|
|
return true;
|
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
|
2010-03-12 10:35:05 +00:00
|
|
|
// Does this style specify subscript?
|
|
|
|
private boolean isSubscript(StyleWithProperties style) {
|
|
|
|
String sPos = style.getProperty(XMLString.STYLE_TEXT_POSITION,false);
|
|
|
|
if (sPos==null) return false;
|
|
|
|
if (sPos.startsWith("sub")) return true;
|
|
|
|
if (sPos.startsWith("-")) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Does this style specify underline?
|
|
|
|
private boolean isUnderline(StyleWithProperties style) {
|
|
|
|
String s;
|
|
|
|
if (ofr.isOpenDocument()) {
|
|
|
|
s = style.getProperty(XMLString.STYLE_TEXT_UNDERLINE_STYLE,false);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
s = style.getProperty(XMLString.STYLE_TEXT_UNDERLINE,false);
|
|
|
|
}
|
|
|
|
return s!=null && !"none".equals(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Does this style specify overstrike?
|
|
|
|
private boolean isOverstrike(StyleWithProperties style) {
|
|
|
|
String s;
|
|
|
|
if (ofr.isOpenDocument()) {
|
|
|
|
s = style.getProperty(XMLString.STYLE_TEXT_LINE_THROUGH_STYLE,false);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
s = style.getProperty(XMLString.STYLE_TEXT_CROSSING_OUT,false);
|
|
|
|
}
|
|
|
|
return s!=null && !"none".equals(s);
|
|
|
|
}
|
|
|
|
|
2009-02-20 09:37:06 +00:00
|
|
|
/* apply hard formatting attribute style maps */
|
|
|
|
private Element applyAttributes(Element node, StyleWithProperties style) {
|
|
|
|
// Do nothing if we convert hard formatting
|
|
|
|
if (config.xhtmlFormatting()==XhtmlConfig.CONVERT_ALL || config.xhtmlFormatting()==XhtmlConfig.IGNORE_STYLES) { return node; }
|
|
|
|
// Do nothing if this is not an automatic style
|
|
|
|
if (style==null) { return node; }
|
|
|
|
if (!style.isAutomatic()) { return node; }
|
2010-03-12 10:35:05 +00:00
|
|
|
node = applyAttribute(node,"bold",isBold(style));
|
|
|
|
node = applyAttribute(node,"italics",isItalics(style));
|
|
|
|
node = applyAttribute(node,"fixed",isFixed(style));
|
|
|
|
node = applyAttribute(node,"superscript",isSuperscript(style));
|
|
|
|
node = applyAttribute(node,"subscript",isSubscript(style));
|
|
|
|
node = applyAttribute(node,"underline",isUnderline(style));
|
|
|
|
node = applyAttribute(node,"overstrike",isOverstrike(style));
|
2009-02-20 09:37:06 +00:00
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* apply hard formatting attribute style maps */
|
|
|
|
private Element applyAttribute(Element node, String sAttr, boolean bApply) {
|
2012-03-11 13:05:41 +00:00
|
|
|
if (bApply) {
|
|
|
|
XhtmlStyleMap xattr = config.getXAttrStyleMap();
|
2014-10-27 06:56:26 +00:00
|
|
|
if (xattr.contains(sAttr) && xattr.get(sAttr).sElement.length()>0) {
|
|
|
|
XhtmlStyleMapItem map = xattr.get(sAttr);
|
|
|
|
Element attr = converter.createElement(map.sElement);
|
|
|
|
if (!"(none)".equals(map.sCss)) {
|
|
|
|
attr.setAttribute("class",map.sCss);
|
2012-03-11 13:05:41 +00:00
|
|
|
}
|
|
|
|
node.appendChild(attr);
|
|
|
|
return attr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return node;
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a styled paragraph node */
|
2015-06-11 18:39:29 +00:00
|
|
|
protected Element createParagraph(Element node, String sStyleName) {
|
2009-02-20 09:37:06 +00:00
|
|
|
StyleInfo info = new StyleInfo();
|
|
|
|
getParSc().applyStyle(sStyleName,info);
|
|
|
|
Element par = converter.createElement(info.sTagName);
|
|
|
|
node.appendChild(par);
|
|
|
|
applyStyle(info,par);
|
|
|
|
StyleWithProperties style = ofr.getParStyle(sStyleName);
|
|
|
|
if (style!=null && style.isAutomatic()) {
|
|
|
|
return applyAttributes(par,style);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return par;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create an inline node with background style from paragraph style */
|
|
|
|
private Element createTextBackground(Element node, String sStyleName) {
|
|
|
|
if (config.xhtmlFormatting()==XhtmlConfig.IGNORE_ALL || config.xhtmlFormatting()==XhtmlConfig.IGNORE_HARD) {
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
String sBack = getParSc().getTextBackground(sStyleName);
|
|
|
|
if (sBack.length()>0) {
|
|
|
|
Element span = converter.createElement("span");
|
|
|
|
span.setAttribute("style",sBack);
|
|
|
|
node.appendChild(span);
|
|
|
|
return span;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a styled inline node */
|
|
|
|
private Element createInline(Element node, String sStyleName) {
|
|
|
|
StyleInfo info = new StyleInfo();
|
|
|
|
getTextSc().applyStyle(sStyleName,info);
|
|
|
|
Element newNode = node;
|
|
|
|
if (info.hasAttributes() || !"span".equals(info.sTagName)) {
|
2014-09-06 19:19:17 +00:00
|
|
|
// We (probably) need to create a new element
|
2009-02-20 09:37:06 +00:00
|
|
|
newNode = converter.createElement(info.sTagName);
|
|
|
|
applyStyle(info,newNode);
|
2014-09-06 19:19:17 +00:00
|
|
|
// But we may want to merge it with the previous element
|
|
|
|
Node prev = node.getLastChild();
|
|
|
|
if (prev!=null && Misc.isElement(prev, info.sTagName)) {
|
|
|
|
// The previous node is of the same type, compare attributes
|
|
|
|
Element prevNode = (Element) prev;
|
|
|
|
if (newNode.getAttribute("class").equals(prevNode.getAttribute("class")) &&
|
|
|
|
newNode.getAttribute("style").equals(prevNode.getAttribute("style")) &&
|
|
|
|
newNode.getAttribute("xml:lang").equals(prevNode.getAttribute("xml:lang")) &&
|
|
|
|
newNode.getAttribute("dir").equals(prevNode.getAttribute("dir"))) {
|
|
|
|
// Attribute style mapped elements are *not* merged, we will live with that
|
|
|
|
return applyAttributes(prevNode,ofr.getTextStyle(sStyleName));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
node.appendChild(newNode);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
return applyAttributes(newNode,ofr.getTextStyle(sStyleName));
|
|
|
|
}
|
|
|
|
|
2015-06-11 18:39:29 +00:00
|
|
|
protected int getOutlineLevel(Element node) {
|
2009-02-20 09:37:06 +00:00
|
|
|
return ofr.isOpenDocument() ?
|
|
|
|
Misc.getPosInteger(node.getAttribute(XMLString.TEXT_OUTLINE_LEVEL),1):
|
|
|
|
Misc.getPosInteger(node.getAttribute(XMLString.TEXT_LEVEL),1);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|