diff --git a/pom.xml b/pom.xml index 53ec263..2a86e23 100644 --- a/pom.xml +++ b/pom.xml @@ -7,16 +7,18 @@ Widoco + 1.2.16 + CP1252 1.8 1.8 - 1.8 - 2.11.1 - 1.3.6 - 0.10.1 - 0.9.6 - 0.2.7 + 1.8 + 2.11.1 + 1.3.6 + 0.10.1 + 0.9.6 + 0.2.7 diff --git a/src/main/java/widoco/Configuration.java b/src/main/java/widoco/Configuration.java index fe446c0..41e3ce5 100644 --- a/src/main/java/widoco/Configuration.java +++ b/src/main/java/widoco/Configuration.java @@ -484,6 +484,7 @@ private void completeMetadata(OWLAnnotation a){ License l = new License(); if(isURL(value)){ l.setUrl(value); + l.setName(value); }else{ l.setName(value); } @@ -540,12 +541,7 @@ private void completeMetadata(OWLAnnotation a){ break; case Constants.PROP_BIBO_STATUS: try{ - valueLanguage = a.getValue().asLiteral().get().getLang(); value = a.getValue().asLiteral().get().getLiteral(); - if(this.currentLanguage.equals(valueLanguage)|| - (abstractSection==null || "".equals(abstractSection))){ - abstractSection = value; - } mainOntologyMetadata.setStatus(value); }catch(Exception e){ System.err.println("Error while getting the status. No literal provided");