Refactored and fixed first para style getter in for lists
This commit is contained in:
parent
be1aaef7a2
commit
1f69f93a78
1 changed files with 22 additions and 35 deletions
|
@ -264,7 +264,7 @@ public class TextParser extends Parser {
|
||||||
if (child.getNodeType() == Node.ELEMENT_NODE) {
|
if (child.getNodeType() == Node.ELEMENT_NODE) {
|
||||||
String nodeName = child.getNodeName();
|
String nodeName = child.getNodeName();
|
||||||
// Block splitting
|
// Block splitting
|
||||||
|
//System.out.println(nodeName);
|
||||||
if (OfficeReader.isDrawElement(child)) {
|
if (OfficeReader.isDrawElement(child)) {
|
||||||
getDrawParser().handleDrawElement((Element)child,(Element)hnode,null,nFloatMode);
|
getDrawParser().handleDrawElement((Element)child,(Element)hnode,null,nFloatMode);
|
||||||
}
|
}
|
||||||
|
@ -323,40 +323,7 @@ public class TextParser extends Parser {
|
||||||
nodeName.equals(TEXT_UNORDERED_LIST) || // old
|
nodeName.equals(TEXT_UNORDERED_LIST) || // old
|
||||||
nodeName.equals(TEXT_ORDERED_LIST)) // old
|
nodeName.equals(TEXT_ORDERED_LIST)) // old
|
||||||
{
|
{
|
||||||
StyleWithProperties style = null;
|
StyleWithProperties style = getListFirstParaStyle(child);
|
||||||
String newPageNumberProperty = null;
|
|
||||||
Element para = null;
|
|
||||||
Element head = null;
|
|
||||||
Element item = Misc.getChildByTagName(child, TEXT_LIST_ITEM);
|
|
||||||
if (item != null){
|
|
||||||
NodeList paras = item.getElementsByTagName(TEXT_P);
|
|
||||||
if (paras != null && paras.getLength() > 0){
|
|
||||||
para = (Element) paras.item(0);
|
|
||||||
}
|
|
||||||
NodeList heads = item.getElementsByTagName(TEXT_H);
|
|
||||||
if (heads != null && heads.getLength() > 0){
|
|
||||||
head = (Element) heads.item(0);
|
|
||||||
}
|
|
||||||
if (para != null ){
|
|
||||||
StyleWithProperties paraStyle = ofr.getParStyle(Misc.getAttribute(para,TEXT_STYLE_NAME));
|
|
||||||
if (paraStyle != null) {
|
|
||||||
newPageNumberProperty = paraStyle.getParProperty(STYLE_PAGE_NUMBER, true);
|
|
||||||
}
|
|
||||||
newPageNumberProperty = paraStyle.getParProperty(STYLE_PAGE_NUMBER, true);
|
|
||||||
if (hasMasterPage(paraStyle) || newPageNumberProperty != null){
|
|
||||||
style = paraStyle;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (head != null && style == null){
|
|
||||||
StyleWithProperties headStyle = ofr.getParStyle(Misc.getAttribute(head,TEXT_STYLE_NAME));
|
|
||||||
if (headStyle != null) {
|
|
||||||
newPageNumberProperty = headStyle.getParProperty(STYLE_PAGE_NUMBER, true);
|
|
||||||
}
|
|
||||||
if (hasMasterPage(headStyle) || newPageNumberProperty != null){
|
|
||||||
style = headStyle;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
hnode = processPageBreaks(child, hnode,style);
|
hnode = processPageBreaks(child, hnode,style);
|
||||||
inList = true;
|
inList = true;
|
||||||
if (getListParser().listIsOnlyHeadings(child)) {
|
if (getListParser().listIsOnlyHeadings(child)) {
|
||||||
|
@ -420,6 +387,24 @@ public class TextParser extends Parser {
|
||||||
}
|
}
|
||||||
return hnode;
|
return hnode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private StyleWithProperties getListFirstParaStyle(Node list) {
|
||||||
|
StyleWithProperties style = null;
|
||||||
|
Element listItem = Misc.getChildByTagName(list, TEXT_LIST_ITEM);
|
||||||
|
if (listItem == null){
|
||||||
|
return style;
|
||||||
|
}
|
||||||
|
Element itemChild = Misc.getFirstChildElement(listItem);
|
||||||
|
if (itemChild == null) {
|
||||||
|
return style;
|
||||||
|
}
|
||||||
|
String itemChildName = itemChild.getNodeName();
|
||||||
|
if (!itemChildName.equals(TEXT_H) && !itemChildName.equals(TEXT_P)) {
|
||||||
|
return style;
|
||||||
|
}
|
||||||
|
style = ofr.getParStyle(Misc.getAttribute(itemChild,TEXT_STYLE_NAME));
|
||||||
|
return style;
|
||||||
|
}
|
||||||
|
|
||||||
/* Process a text:section tag (returns current html node) */
|
/* Process a text:section tag (returns current html node) */
|
||||||
private Node handleSection(Node onode, Node hnode) {
|
private Node handleSection(Node onode, Node hnode) {
|
||||||
|
@ -1393,6 +1378,7 @@ public class TextParser extends Parser {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
System.out.println("ERROR MP is null");
|
System.out.println("ERROR MP is null");
|
||||||
|
Debug.printStackTrace();
|
||||||
}
|
}
|
||||||
inHeader = false;
|
inHeader = false;
|
||||||
return node;
|
return node;
|
||||||
|
@ -1427,6 +1413,7 @@ public class TextParser extends Parser {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
System.out.println("ERROR MP is null");
|
System.out.println("ERROR MP is null");
|
||||||
|
Debug.printStackTrace();
|
||||||
}
|
}
|
||||||
inFooter = false;
|
inFooter = false;
|
||||||
return node;
|
return node;
|
||||||
|
|
Loading…
Add table
Reference in a new issue