Additional check to avoid empty excerpts
This commit is contained in:
parent
bee3e73f7b
commit
71b9e01059
1 changed files with 6 additions and 0 deletions
|
@ -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();
|
||||||
|
|
Loading…
Add table
Reference in a new issue