Fix for splitting list inside table cell
This commit is contained in:
parent
2f193d8cb5
commit
189558113b
2 changed files with 10 additions and 4 deletions
|
@ -27,7 +27,7 @@ public class ODFPageSplitter {
|
|||
//Loop through the content nodes and split nodes with soft page break
|
||||
while (i < nodes.getLength()){
|
||||
Node child = nodes.item(i);
|
||||
//System.out.println("splitSoftPageBreak ");
|
||||
|
||||
|
||||
//Necessary check if node is an Element
|
||||
if (containsSPB(child)){
|
||||
|
@ -271,7 +271,7 @@ public class ODFPageSplitter {
|
|||
// Loop through the TABLE:TABLE child nodes
|
||||
while (tableChildNodes.getLength() > i) {
|
||||
Node tableChildNode = tableChildNodes.item(i);
|
||||
|
||||
|
||||
if (tableChildNode.getNodeType() == Node.ELEMENT_NODE) {
|
||||
//Node name
|
||||
String tableChildNodeName = tableChildNode.getNodeName();
|
||||
|
@ -495,7 +495,13 @@ public class ODFPageSplitter {
|
|||
cellFirstPart.appendChild(paraFirstPart);
|
||||
dataMoved=true;
|
||||
}
|
||||
}
|
||||
} else if (nodeName.equals(TEXT_LIST)) {
|
||||
Node listFirstPart = cellChildNode.cloneNode(false);
|
||||
if (handleList(listFirstPart, cellChildNode)){
|
||||
cellFirstPart.appendChild(listFirstPart);
|
||||
dataMoved=true;
|
||||
}
|
||||
}
|
||||
break;
|
||||
} else {
|
||||
cellFirstPart.appendChild(cellChildNode);
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
<identifier value="pro.litvinovg.writer2paginatedhtml"/>
|
||||
|
||||
<version value="0.5.5"/>
|
||||
<version value="0.5.6"/>
|
||||
|
||||
<dependencies>
|
||||
<OpenOffice.org-minimal-version d:name="OpenOffice.org 3.0" value="3.0"/>
|
||||
|
|
Loading…
Add table
Reference in a new issue