Fixed mistake in previous commit

This commit is contained in:
Georgy Litvinov 2020-02-24 22:18:35 +01:00
parent 508b905e5c
commit 6c90059fb0
3 changed files with 24 additions and 12 deletions

View file

@ -67,8 +67,9 @@ public class DocumentPart {
private void calculateParentPath() {
if(path.length() == 1) {
parentPath = "";
} else {
parentPath = path.replaceAll(" [0-9]+$", "");
}
parentPath = path.replaceAll(" [0-9]+$", "");
}
private void extractBody() {
Element excerptContentNode = excerptDoc.getContentNode();

View file

@ -22,6 +22,7 @@ public class DocumentStructure {
private final String PARSERNAME = "w2phtml";
private final String EXCERPT = "Excerpt";
private final String TOC_ELEMENT = "TOCElement";
private final String ELENPHARTICLE = "elenphArticle";
private String documentID = "DOC_ID";
Model m;
@ -33,7 +34,6 @@ public class DocumentStructure {
}
public DocumentStructure(Vector<XhtmlDocument> files) {
this();
System.out.println("DocStructure");
Iterator<XhtmlDocument> filesIterator = files.iterator();
while (filesIterator.hasNext()) {
XhtmlDocument inputDoc = filesIterator.next();
@ -53,15 +53,12 @@ public class DocumentStructure {
if (levels[i].equals("0")) {
String emptyPath = createEmptyPath(levels, i);
if (!inputParts.containsKey(emptyPath)) {
System.out.println("empty path added " + emptyPath);
DocumentPart emptyPart = new DocumentPart(emptyPath);
addPart(emptyPart);
}
}
}
}
}
private String createEmptyPath(String[] levels, int i) {
StringBuilder emptyPath = new StringBuilder();
@ -95,6 +92,14 @@ public class DocumentStructure {
elements.put(docPart.getPath(), element);
attachExcerpt(docPart, element);
}
private void createDocumentElement(DocumentPart docPart) {
String elementName = TS + ELENPHARTICLE + "/" + PARSERNAME + "_" + documentID ;
Resource element = m.createResource(elementName);
elements.put(docPart.getPath(), element);
attachExcerpt(docPart, element);
}
private void createTOCItem(DocumentPart docPart) {
String tocItemName = TS + TOCITEM + "/" + PARSERNAME + "_" + documentID + docPart.getSafePath();
Resource tocItem = m.createResource(tocItemName);
@ -104,9 +109,10 @@ public class DocumentStructure {
tocItem.addLiteral(itemNumber, docPart.getNumber());
tocItem.addProperty(pointsTo, elements.get(docPart.getPath()));
Resource parent = elements.get(docPart.getParentPath());
parent.addProperty(hasTOCItem, tocItem);
if (!docPart.getPath().isEmpty()) {
Resource parent = elements.get(docPart.getParentPath());
m.add(parent, hasTOCItem, tocItem);
}
}
@ -137,7 +143,13 @@ public class DocumentStructure {
private void createElements() {
Set<String> paths = inputParts.keySet();
for (String path : paths) {
createElement(inputParts.get(path));
DocumentPart part = inputParts.get(path);
if (part.getPath().isEmpty()) {
createDocumentElement(part);
} else {
createElement(part);
}
}
}
}

View file

@ -70,7 +70,6 @@ public class Separator {
if (noSplitNeeded(pageNum, curLevel)) {
System.out.println(sLevel + "no split needed");
return hnode;
}
@ -149,7 +148,7 @@ public class Separator {
}
private boolean isSplitTime(int curLevel, int pageNum) {
if ((rdfSeparation || splitLevel >= curLevel ) && converter.outFileHasContent()) {
if ((rdfSeparation || splitLevel >= curLevel )) {
if (alignSplitToPages) {
if (lastSplitPageNum != pageNum) {
return true;