Improved conditions in process breaks
This commit is contained in:
parent
be7047683d
commit
37699b8b5a
2 changed files with 7 additions and 8 deletions
|
@ -247,7 +247,7 @@ public class Separator {
|
|||
/**
|
||||
* Opens main document section heading tag
|
||||
*/
|
||||
public Node startDocument(Node hnode, String title, int pageNum) {
|
||||
public Node startDocumentSeparation(Node hnode, String title, int pageNum) {
|
||||
if (!greenstoneSeparation && !needPagination()) {
|
||||
return hnode;
|
||||
}
|
||||
|
|
|
@ -1205,12 +1205,12 @@ public class TextParser extends Parser {
|
|||
if (wasProcessedWithSection(currentNode, style)) {
|
||||
return hnode;
|
||||
}
|
||||
|
||||
if (currentMasterPage == null && style != null) {
|
||||
//Document wasn't started yet.
|
||||
boolean firstSeparation = (currentMasterPage == null) ;
|
||||
if (firstSeparation && style != null) {
|
||||
hnode = startDocument(hnode, style);
|
||||
hnode = docSep.whatToDoWithOutlineNodeOnPage(currentNode, hnode, pageNum);
|
||||
} else if (isPageBreakFound(style)) {
|
||||
}
|
||||
|
||||
if (isPageBreakFound(style) && !firstSeparation) {
|
||||
if (hasBreakBefore(style)) {
|
||||
|
||||
if (currentNode.getNodeName() == TEXT_SECTION) {
|
||||
|
@ -1337,11 +1337,10 @@ public class TextParser extends Parser {
|
|||
}
|
||||
//Start tagging
|
||||
String sTitle = converter.getTitle();
|
||||
hnode = docSep.startDocument(hnode, sTitle,pageNum);
|
||||
hnode = docSep.startDocumentSeparation(hnode, sTitle,pageNum);
|
||||
|
||||
//Print header
|
||||
addHeader(hnode);
|
||||
//hnode = enterPageContainer(hnode);
|
||||
return hnode;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue