Additional check to avoid empty excerpts

This commit is contained in:
Georgy Litvinov 2020-03-03 13:09:31 +01:00
parent bee3e73f7b
commit 71b9e01059

View file

@ -247,6 +247,9 @@ public class DocumentStructure {
if (docPart.isEmpty()) { if (docPart.isEmpty()) {
return; return;
} }
if (docPart.getBody().isEmpty() && isMaster(element)) {
return;
}
Resource excerpt = createExcerpt(docPart); Resource excerpt = createExcerpt(docPart);
excerpt.addProperty( RDFS.label, docPart.getName()); excerpt.addProperty( RDFS.label, docPart.getName());
Property hasText = m.createProperty(TS + "hasText"); Property hasText = m.createProperty(TS + "hasText");
@ -255,6 +258,9 @@ public class DocumentStructure {
addMetadataProperties(excerpt,docPart.getMetadata()); addMetadataProperties(excerpt,docPart.getMetadata());
} }
} }
private boolean isMaster(Resource element) {
return element.getNameSpace().contains(TS + ELENPHARTICLE);
}
public void createTree() { public void createTree() {
createElements(); createElements();