Added more code for endnotes
This commit is contained in:
parent
5bb29b8b6c
commit
f596ad224d
3 changed files with 32 additions and 48 deletions
|
@ -93,10 +93,7 @@ class NoteConverter extends ConverterHelper {
|
||||||
noteList = new ArrayList<Node>();
|
noteList = new ArrayList<Node>();
|
||||||
notes.put(section, noteList);
|
notes.put(section, noteList);
|
||||||
}
|
}
|
||||||
|
|
||||||
noteList.add(onode);
|
noteList.add(onode);
|
||||||
System.out.println("add note to section " + section + " notelist size is " + noteList.size());
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean hasNotes() {
|
boolean hasNotes() {
|
||||||
|
|
|
@ -50,10 +50,11 @@ public class PageSplitter {
|
||||||
onode.insertBefore(childFirstPart, child);
|
onode.insertBefore(childFirstPart, child);
|
||||||
}
|
}
|
||||||
} else if (nodeName.equals(TEXT_SECTION)) {
|
} else if (nodeName.equals(TEXT_SECTION)) {
|
||||||
if (handleSection(childFirstPart, child)){
|
Node sectionFirstPart = handleSection(child);
|
||||||
onode.insertBefore(childFirstPart, child);
|
if (sectionFirstPart != null) {
|
||||||
style = ofr.getSectionStyle(Misc.getAttribute(child, TEXT_SECTION));
|
onode.insertBefore(sectionFirstPart, child);
|
||||||
}
|
style = ofr.getSectionStyle(Misc.getAttribute(child, TEXT_SECTION));
|
||||||
|
}
|
||||||
} else if (nodeName.equals(TEXT_TABLE_OF_CONTENT)){
|
} else if (nodeName.equals(TEXT_TABLE_OF_CONTENT)){
|
||||||
//HACK
|
//HACK
|
||||||
containsSPB(childFirstPart);
|
containsSPB(childFirstPart);
|
||||||
|
@ -454,7 +455,10 @@ public class PageSplitter {
|
||||||
}
|
}
|
||||||
return dataMoved;
|
return dataMoved;
|
||||||
}
|
}
|
||||||
private static boolean handleSection(Node sectionFirstPart, Node section) {
|
private static Node handleSection(Node section) {
|
||||||
|
setLastAttribute(section);
|
||||||
|
Node sectionFirstPart = section.cloneNode(false);
|
||||||
|
removeLastAttribute(sectionFirstPart);
|
||||||
boolean dataMoved = false;
|
boolean dataMoved = false;
|
||||||
// Node counter
|
// Node counter
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
@ -488,8 +492,9 @@ public class PageSplitter {
|
||||||
dataMoved=true;
|
dataMoved=true;
|
||||||
}
|
}
|
||||||
} else if (nodeName.equals(TEXT_SECTION)) {
|
} else if (nodeName.equals(TEXT_SECTION)) {
|
||||||
if (handleSection(childFirstPart, child)){
|
Node childSectionFirstPart = handleSection(child);
|
||||||
sectionFirstPart.appendChild(childFirstPart);
|
if (childSectionFirstPart != null){
|
||||||
|
sectionFirstPart.appendChild(childSectionFirstPart);
|
||||||
dataMoved=true;
|
dataMoved=true;
|
||||||
}
|
}
|
||||||
} else if (nodeName.equals(TEXT_LIST)) {
|
} else if (nodeName.equals(TEXT_LIST)) {
|
||||||
|
@ -511,11 +516,23 @@ public class PageSplitter {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
if (dataMoved) {
|
||||||
return dataMoved;
|
return sectionFirstPart;
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private static void removeLastAttribute(Node section) {
|
||||||
|
Element sectionEl = (Element) section;
|
||||||
|
sectionEl.setAttribute("last", "false");
|
||||||
|
}
|
||||||
|
private static void setLastAttribute(Node section) {
|
||||||
|
Element sectionEl = (Element) section;
|
||||||
|
sectionEl.setAttribute("last", "true");
|
||||||
|
}
|
||||||
private static Node handleParagraph(Node para) {
|
private static Node handleParagraph(Node para) {
|
||||||
//System.out.println("handlePara");
|
//System.out.println("handlePara");
|
||||||
Node paraBefore = para.cloneNode(false);
|
Node paraBefore = para.cloneNode(false);
|
||||||
|
@ -582,21 +599,17 @@ public class PageSplitter {
|
||||||
NodeList childs = span.getChildNodes();
|
NodeList childs = span.getChildNodes();
|
||||||
int i = 0;
|
int i = 0;
|
||||||
while (childs.getLength() > i) {
|
while (childs.getLength() > i) {
|
||||||
System.out.println("In WHILE HANDLE SPAN");
|
|
||||||
Node child = childs.item(i);
|
Node child = childs.item(i);
|
||||||
if (child.getNodeType() == Node.ELEMENT_NODE) {
|
if (child.getNodeType() == Node.ELEMENT_NODE) {
|
||||||
if (containsSPB(child)) {
|
if (containsSPB(child)) {
|
||||||
if (child.getNodeName().equals(TEXT_NOTE)) {
|
if (child.getNodeName().equals(TEXT_NOTE)) {
|
||||||
System.out.println("handle TextNote in span");
|
|
||||||
splitSoftPageBreak(((Element)child).getElementsByTagName(TEXT_NOTE_BODY).item(0), officeReader);
|
splitSoftPageBreak(((Element)child).getElementsByTagName(TEXT_NOTE_BODY).item(0), officeReader);
|
||||||
} else if (child.getNodeName().equals(TEXT_SPAN)){
|
} else if (child.getNodeName().equals(TEXT_SPAN)){
|
||||||
handleSpan(child);
|
handleSpan(child);
|
||||||
} else {
|
} else {
|
||||||
System.out.println("SPB INSIDE SPAN! HELP!");
|
System.out.println("SPB INSIDE SPAN! HELP!");
|
||||||
//Debug.printNode(child);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
|
@ -192,23 +192,6 @@ public class TextConverter extends ConverterHelper {
|
||||||
bInToc = false;
|
bInToc = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*private Element exitPageContainer(Element hnode) {
|
|
||||||
System.out.println("exit page container");
|
|
||||||
|
|
||||||
String className = ((Element) hnode).getAttribute("class");
|
|
||||||
if (!className.equals("pageContainer")) {
|
|
||||||
System.out.println("Can't exit not my container!");
|
|
||||||
Debug.printNode(hnode);
|
|
||||||
for (StackTraceElement ste : Thread.currentThread().getStackTrace()) {
|
|
||||||
System.out.println(ste);
|
|
||||||
}
|
|
||||||
System.exit(1);
|
|
||||||
}
|
|
||||||
Element parentNode = (Element) hnode.getParentNode();
|
|
||||||
System.out.println("parent node name " + parentNode.getNodeName());
|
|
||||||
return parentNode;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
private void insertEndnotes(Element hnode, String section) {
|
private void insertEndnotes(Element hnode, String section) {
|
||||||
inEndnote = true;
|
inEndnote = true;
|
||||||
endCv.insertEndnotes(hnode,section);
|
endCv.insertEndnotes(hnode,section);
|
||||||
|
@ -550,6 +533,9 @@ public class TextConverter extends ConverterHelper {
|
||||||
// Unlike headings, paragraphs and spans, text:display is not attached to the style:
|
// Unlike headings, paragraphs and spans, text:display is not attached to the style:
|
||||||
String lastSection = currentSection;
|
String lastSection = currentSection;
|
||||||
String sectionName = Misc.getAttribute(onode,TEXT_NAME);
|
String sectionName = Misc.getAttribute(onode,TEXT_NAME);
|
||||||
|
String last = Misc.getAttribute(onode,"last");
|
||||||
|
boolean isLast = false;
|
||||||
|
if (last != null && last.equals("true")) { isLast = true;}
|
||||||
|
|
||||||
String savedStyle = docSep.getPageContainerStyle();
|
String savedStyle = docSep.getPageContainerStyle();
|
||||||
if (!bDisplayHiddenText && "none".equals(Misc.getAttribute(onode,TEXT_DISPLAY))) { return hnode; }
|
if (!bDisplayHiddenText && "none".equals(Misc.getAttribute(onode,TEXT_DISPLAY))) { return hnode; }
|
||||||
|
@ -559,8 +545,9 @@ public class TextConverter extends ConverterHelper {
|
||||||
|
|
||||||
hnode = docSep.openPage(hnode, pageNum);
|
hnode = docSep.openPage(hnode, pageNum);
|
||||||
hnode = traverseBlockText(onode, hnode);
|
hnode = traverseBlockText(onode, hnode);
|
||||||
System.out.println("sectionname " + sectionName);
|
if (isLast) {
|
||||||
insertEndnotes((Element) hnode, sectionName);
|
insertEndnotes((Element) hnode, sectionName);
|
||||||
|
}
|
||||||
currentSection = lastSection;
|
currentSection = lastSection;
|
||||||
docSep.setPageContainerStyle(savedStyle);
|
docSep.setPageContainerStyle(savedStyle);
|
||||||
|
|
||||||
|
@ -1795,17 +1782,6 @@ public class TextConverter extends ConverterHelper {
|
||||||
return hnode;
|
return hnode;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*private Node enterPageContainer(Node hnode) {
|
|
||||||
System.out.println("enter page container " + hnode.getNodeName());
|
|
||||||
if (hnode == null) {
|
|
||||||
System.out.println("hnode is null");
|
|
||||||
}
|
|
||||||
Element container = converter.createElement("div");
|
|
||||||
container.setAttribute("class", "pageContainer");
|
|
||||||
hnode.appendChild(container);
|
|
||||||
return container;
|
|
||||||
}*/
|
|
||||||
|
|
||||||
private void fitPageNumberToMasterPageStyle() {
|
private void fitPageNumberToMasterPageStyle() {
|
||||||
// TODO: READ master-page style
|
// TODO: READ master-page style
|
||||||
|
|
||||||
|
@ -1841,7 +1817,6 @@ public class TextConverter extends ConverterHelper {
|
||||||
|
|
||||||
String sMasterPage = style.getMasterPageName();
|
String sMasterPage = style.getMasterPageName();
|
||||||
if (sMasterPage != null && sMasterPage.length() > 0) {
|
if (sMasterPage != null && sMasterPage.length() > 0) {
|
||||||
// System.out.println("GETPAGEBREAK SUCCESS MASTERPAGE STYLE FOUND " + currentMasterPage);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1862,7 +1837,6 @@ public class TextConverter extends ConverterHelper {
|
||||||
currentMasterPage = nextMasterPage;
|
currentMasterPage = nextMasterPage;
|
||||||
MasterPage masterPage = ofr.getFullMasterPage(currentMasterPage);
|
MasterPage masterPage = ofr.getFullMasterPage(currentMasterPage);
|
||||||
nextMasterPage = masterPage.getProperty(STYLE_NEXT_STYLE_NAME);
|
nextMasterPage = masterPage.getProperty(STYLE_NEXT_STYLE_NAME);
|
||||||
// System.out.println("Next master page is " + nextMasterPage);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue