Fix for page splitter

This commit is contained in:
George Litvinov 2018-03-21 16:15:18 +03:00 committed by Georgy Litvinov
parent 7c630236ac
commit 3176ba0d03

View file

@ -87,7 +87,6 @@ public class PageSplitter {
} }
i++; i++;
} }
return onode; return onode;
} }
private static boolean handleList(Node listFirstPart, Node list){ private static boolean handleList(Node listFirstPart, Node list){
@ -463,6 +462,7 @@ public class PageSplitter {
int i = 0; int i = 0;
NodeList sectionChildNodes = sectionNode.getChildNodes(); NodeList sectionChildNodes = sectionNode.getChildNodes();
while (sectionChildNodes.getLength() > i) { while (sectionChildNodes.getLength() > i) {
Node sectionChildNode = sectionChildNodes.item(0); Node sectionChildNode = sectionChildNodes.item(0);
if ((sectionChildNode.getNodeType() == Node.ELEMENT_NODE)) { if ((sectionChildNode.getNodeType() == Node.ELEMENT_NODE)) {
String nodeName = sectionChildNode.getNodeName(); String nodeName = sectionChildNode.getNodeName();
@ -484,12 +484,17 @@ public class PageSplitter {
removeSPB(sectionNode); removeSPB(sectionNode);
i++; i++;
continue; continue;
} else if (nodeName.equals(XMLString.TABLE_TABLE)) {
if (handleTableTable(sectionChildFirstPart, sectionChildNode)){
sectionFirstPart.appendChild(sectionChildFirstPart);
dataMoved=true;
}
} else if (nodeName.equals(XMLString.TEXT_SECTION)) { } else if (nodeName.equals(XMLString.TEXT_SECTION)) {
if (handleSection(sectionChildFirstPart, sectionChildNode)){ if (handleSection(sectionChildFirstPart, sectionChildNode)){
sectionFirstPart.appendChild(sectionChildFirstPart); sectionFirstPart.appendChild(sectionChildFirstPart);
dataMoved=true; dataMoved=true;
} }
} }
//split node with spb and exit //split node with spb and exit
break; break;
} else { } else {
@ -503,6 +508,7 @@ public class PageSplitter {
} }
} }
return dataMoved; return dataMoved;
} }