Checks, if the only text content of this node is whitespace
* @param node the node to check (should be a paragraph node or a child * of a paragraph node) @@ -1073,14 +1109,6 @@ public class OfficeReader { }*/ } - private Element getParagraph(Element node) { - Element parent = (Element) node.getParentNode(); - if (parent.getTagName().equals(XMLString.TEXT_P) || parent.getTagName().equals(XMLString.TEXT_H)) { - return parent; - } - return getParagraph(parent); - } - private void traverseContent(Element node, String sListStyleName, int nListLevel, int nParLevel) { // Handle this node first String sName = node.getTagName(); diff --git a/source/java/writer2latex/xhtml/DrawConverter.java b/source/java/writer2latex/xhtml/DrawConverter.java index 5fea04f..85c5c4f 100644 --- a/source/java/writer2latex/xhtml/DrawConverter.java +++ b/source/java/writer2latex/xhtml/DrawConverter.java @@ -20,7 +20,7 @@ * * All Rights Reserved. * - * Version 1.4 (2014-08-12) + * Version 1.4 (2014-08-20) * */ @@ -360,6 +360,8 @@ public class DrawConverter extends ConverterHelper { hnodeBlock.appendChild(div); hnode = div; } + + boolean bNoTextPar = OfficeReader.isNoTextPar(OfficeReader.getParagraph(onode)); String sHref = Misc.getAttribute(onode, XMLString.XLINK_HREF); if (sHref!=null) { // Embedded object in package or linked object @@ -376,7 +378,7 @@ public class DrawConverter extends ConverterHelper { } try { hnode.appendChild(converter.createTextNode(" ")); - getMathCv().convert(replacementImage,xmlObject.getContentDOM().getDocumentElement(),hnode); + getMathCv().convert(replacementImage,xmlObject.getContentDOM().getDocumentElement(),hnode,bNoTextPar); hnode.appendChild(converter.createTextNode(" ")); } catch (SAXException e) { @@ -415,7 +417,7 @@ public class DrawConverter extends ConverterHelper { replacementImage = Misc.getChildByTagName(getFrame(onode),XMLString.DRAW_IMAGE); } hnode.appendChild(converter.createTextNode(" ")); - getMathCv().convert(replacementImage,formula,hnode); + getMathCv().convert(replacementImage,formula,hnode,bNoTextPar); hnode.appendChild(converter.createTextNode(" ")); } else { // unsupported object diff --git a/source/java/writer2latex/xhtml/MathConverter.java b/source/java/writer2latex/xhtml/MathConverter.java index 3750792..5aba3f8 100644 --- a/source/java/writer2latex/xhtml/MathConverter.java +++ b/source/java/writer2latex/xhtml/MathConverter.java @@ -20,7 +20,7 @@ * * All Rights Reserved. * - * Version 1.4 (2014-08-13) + * Version 1.4 (2014-08-20) * */ @@ -70,9 +70,9 @@ public class MathConverter extends ConverterHelper { * @param onode the math node * @param hnode the xhtml node to which content should be added */ - public void convert(Node image, Element onode, Node hnode) { + public void convert(Node image, Element onode, Node hnode, boolean bAllowDisplayStyle) { if (bSupportMathML) { - convertAsMathML(onode,hnode); + convertAsMathML(onode,hnode,bAllowDisplayStyle); } else { convertAsImageOrText(image,onode,hnode); @@ -182,15 +182,33 @@ public class MathConverter extends ConverterHelper { } // For xhtml+mathml: Insert the mathml, removing the namespace (if any) and the annotation - public void convertAsMathML(Node onode, Node hnode) { + private void convertAsMathML(Element onode, Node hnode, boolean bAllowDisplay) { + Element math = converter.createElement("math"); + if (onode.hasAttribute("xmlns:math")) { + math.setAttribute("xmlns", onode.getAttribute("xmlns:math")); + } + else if (onode.hasAttribute("xmlns")) { + math.setAttribute("xmlns", onode.getAttribute("xmlns")); + } + if (bAllowDisplay && onode.hasAttribute("display")) { + // Starting with version 4.2, LO exports display="block" for display equations + // This is a good thing, but in XHTML we can unfortunately only allow this for + // paragraphs with no other text content + math.setAttribute("display", onode.getAttribute("display")); + } + hnode.appendChild(math); + convertMathMLNodeList(onode.getChildNodes(), math); + } + + private void convertElementAsMathML(Node onode, Node hnode) { if (onode.getNodeType()==Node.ELEMENT_NODE) { if (onode.getNodeName().equals(XMLString.SEMANTICS)) { // Since OOo 3.2 // ignore this construction - convertNodeList(onode.getChildNodes(),hnode); + convertMathMLNodeList(onode.getChildNodes(),hnode); } else if (onode.getNodeName().equals(XMLString.MATH_SEMANTICS)) { // ignore this construction - convertNodeList(onode.getChildNodes(),hnode); + convertMathMLNodeList(onode.getChildNodes(),hnode); } else if (onode.getNodeName().equals(XMLString.ANNOTATION)) { // Since OOo 3.2 // ignore the annotation (StarMath) completely @@ -202,20 +220,18 @@ public class MathConverter extends ConverterHelper { } else { String sElementName = stripNamespace(onode.getNodeName()); - Element newNode = hnode.getOwnerDocument().createElement(sElementName); + Element newNode = converter.createElement(sElementName); hnode.appendChild(newNode); if (onode.hasAttributes()) { NamedNodeMap attr = onode.getAttributes(); int nLen = attr.getLength(); for (int i=0; i