diff --git a/deegree-ogcapi-datasets/src/main/resources/META-INF/schemas/ogcapi/datasets/3.4.0/example.xml b/deegree-ogcapi-datasets/src/main/resources/META-INF/schemas/ogcapi/datasets/3.4.0/example.xml index c665a2f7..d66671ef 100644 --- a/deegree-ogcapi-datasets/src/main/resources/META-INF/schemas/ogcapi/datasets/3.4.0/example.xml +++ b/deegree-ogcapi-datasets/src/main/resources/META-INF/schemas/ogcapi/datasets/3.4.0/example.xml @@ -7,8 +7,8 @@ Description of deegree Datasets deegree - https://deegree-enterprise.de - info@deegree-enterprise.de + https://www.deegree.org + info@deegree.org \ No newline at end of file diff --git a/deegree-ogcapi-features/src/main/resources/META-INF/schemas/ogcapi/features/3.4.0/example.xml b/deegree-ogcapi-features/src/main/resources/META-INF/schemas/ogcapi/features/3.4.0/example.xml index 377f99f3..80a57923 100644 --- a/deegree-ogcapi-features/src/main/resources/META-INF/schemas/ogcapi/features/3.4.0/example.xml +++ b/deegree-ogcapi-features/src/main/resources/META-INF/schemas/ogcapi/features/3.4.0/example.xml @@ -28,8 +28,8 @@ Test - http://deegree-enterprise.de - info@deegree-enterprise.de + https://www.deegree.org + info@deegree.org http://metaver?service=CSW&request=GetRecordById&version=2.0.2&id=89362 http://localhost:8080/linkZuHTml/89362 diff --git a/deegree-ogcapi-features/src/main/resources/collection.html b/deegree-ogcapi-features/src/main/resources/collection.html index 07a0535e..48f17091 100644 --- a/deegree-ogcapi-features/src/main/resources/collection.html +++ b/deegree-ogcapi-features/src/main/resources/collection.html @@ -153,7 +153,7 @@

{{ title }}

Legal Notice - deegree Enterprise Edition + deegree | @@ -238,7 +238,7 @@

{{ title }}

var footerApp = new Vue({ el: '#footer', data: { - helpUrl: '', + helpUrl: createDocumentationUrl(), legalNoticeUrl: '', privacyUrl: '' }, @@ -251,7 +251,9 @@

{{ title }}

dataType: "json", url: createHtmlConfigUrl(), success: function(data) { - self.helpUrl = data.documentationUrl ? data.documentationUrl : createDocumentationUrl(); + if ( data.documentationUrl ) { + self.helpUrl = data.documentationUrl; + } self.legalNoticeUrl = data.legalNoticeUrl; self.privacyUrl = data.privacyUrl; } diff --git a/deegree-ogcapi-features/src/main/resources/collections.html b/deegree-ogcapi-features/src/main/resources/collections.html index 1e1e4745..274eb6ef 100644 --- a/deegree-ogcapi-features/src/main/resources/collections.html +++ b/deegree-ogcapi-features/src/main/resources/collections.html @@ -145,7 +145,7 @@
{{ collection.title }}
Legal Notice
- deegree Enterprise Edition + deegree | @@ -219,7 +219,7 @@
{{ collection.title }}
var footerApp = new Vue({ el: '#footer', data: { - helpUrl: '', + helpUrl: createDocumentationUrl(), legalNoticeUrl: '', privacyUrl: '' }, @@ -232,7 +232,9 @@
{{ collection.title }}
dataType: "json", url: createHtmlConfigUrl(), success: function(data) { - self.helpUrl = data.documentationUrl ? data.documentationUrl : createDocumentationUrl(); + if ( data.documentationUrl ) { + self.helpUrl = data.documentationUrl; + } self.legalNoticeUrl = data.legalNoticeUrl; self.privacyUrl = data.privacyUrl; } diff --git a/deegree-ogcapi-features/src/main/resources/conformance.html b/deegree-ogcapi-features/src/main/resources/conformance.html index d3bff56a..68a87b53 100644 --- a/deegree-ogcapi-features/src/main/resources/conformance.html +++ b/deegree-ogcapi-features/src/main/resources/conformance.html @@ -107,7 +107,7 @@

Conformance Classes

Legal Notice
- deegree Enterprise Edition + deegree | @@ -162,7 +162,7 @@

Conformance Classes

var footerApp = new Vue({ el: '#footer', data: { - helpUrl: '', + helpUrl: createDocumentationUrl(), legalNoticeUrl: '', privacyUrl: '' }, @@ -175,7 +175,9 @@

Conformance Classes

dataType: "json", url: createHtmlConfigUrl(), success: function(data) { - self.helpUrl = data.documentationUrl ? data.documentationUrl : createDocumentationUrl(); + if ( data.documentationUrl ) { + self.helpUrl = data.documentationUrl; + } self.legalNoticeUrl = data.legalNoticeUrl; self.privacyUrl = data.privacyUrl; } diff --git a/deegree-ogcapi-features/src/main/resources/datasets.html b/deegree-ogcapi-features/src/main/resources/datasets.html index 2050d058..def9b749 100644 --- a/deegree-ogcapi-features/src/main/resources/datasets.html +++ b/deegree-ogcapi-features/src/main/resources/datasets.html @@ -117,7 +117,7 @@

Contact

Legal Notice
- deegree Enterprise Edition + deegree | @@ -174,7 +174,7 @@

Contact

var footerApp = new Vue({ el: '#footer', data: { - helpUrl: '', + helpUrl: createDocumentationUrl(), legalNoticeUrl: '', privacyUrl: '' }, @@ -187,7 +187,9 @@

Contact

dataType: "json", url: createHtmlConfigUrl(), success: function(data) { - self.helpUrl = data.documentationUrl ? data.documentationUrl : createDocumentationUrl(); + if ( data.documentationUrl ) { + self.helpUrl = data.documentationUrl; + } self.legalNoticeUrl = data.legalNoticeUrl; self.privacyUrl = data.privacyUrl; } diff --git a/deegree-ogcapi-features/src/main/resources/feature.html b/deegree-ogcapi-features/src/main/resources/feature.html index 43faafbd..6cf242a0 100644 --- a/deegree-ogcapi-features/src/main/resources/feature.html +++ b/deegree-ogcapi-features/src/main/resources/feature.html @@ -234,7 +234,7 @@

Error retrieving feature with ID {{ featureId }}

Legal Notice
- deegree Enterprise Edition + deegree | @@ -327,7 +327,7 @@

Error retrieving feature with ID {{ featureId }}

var footerApp = new Vue({ el: '#footer', data: { - helpUrl: '', + helpUrl: createDocumentationUrl(), legalNoticeUrl: '', privacyUrl: '' }, @@ -340,7 +340,9 @@

Error retrieving feature with ID {{ featureId }}

dataType: "json", url: createHtmlConfigUrl(), success: function(data) { - self.helpUrl = data.documentationUrl ? data.documentationUrl : createDocumentationUrl(); + if ( data.documentationUrl ) { + self.helpUrl = data.documentationUrl; + } self.legalNoticeUrl = data.legalNoticeUrl; self.privacyUrl = data.privacyUrl; } diff --git a/deegree-ogcapi-features/src/main/resources/features.html b/deegree-ogcapi-features/src/main/resources/features.html index ff1dbdb9..26d9ddac 100644 --- a/deegree-ogcapi-features/src/main/resources/features.html +++ b/deegree-ogcapi-features/src/main/resources/features.html @@ -373,7 +373,7 @@
End Period
Legal Notice
- deegree Enterprise Edition + deegree | @@ -691,7 +691,7 @@
End Period
var footerApp = new Vue({ el: '#footer', data: { - helpUrl: '', + helpUrl: createDocumentationUrl(), legalNoticeUrl: '', privacyUrl: '' }, @@ -704,7 +704,9 @@
End Period
dataType: "json", url: createHtmlConfigUrl(), success: function(data) { - self.helpUrl = data.documentationUrl ? data.documentationUrl : createDocumentationUrl(); + if ( data.documentationUrl ) { + self.helpUrl = data.documentationUrl; + } self.legalNoticeUrl = data.legalNoticeUrl; self.privacyUrl = data.privacyUrl; } diff --git a/deegree-ogcapi-features/src/main/resources/landingpage.html b/deegree-ogcapi-features/src/main/resources/landingpage.html index 04c88b08..ba8db875 100644 --- a/deegree-ogcapi-features/src/main/resources/landingpage.html +++ b/deegree-ogcapi-features/src/main/resources/landingpage.html @@ -137,7 +137,7 @@

{{ title }}

Legal Notice
- deegree Enterprise Edition + deegree | @@ -212,7 +212,7 @@

{{ title }}

var footerApp = new Vue({ el: '#footer', data: { - helpUrl: '', + helpUrl: createDocumentationUrl(), legalNoticeUrl: '', privacyUrl: '' }, @@ -225,7 +225,9 @@

{{ title }}

dataType: "json", url: createHtmlConfigUrl(), success: function(data) { - self.helpUrl = data.documentationUrl ? data.documentationUrl : createDocumentationUrl(); + if ( data.documentationUrl ) { + self.helpUrl = data.documentationUrl; + } self.legalNoticeUrl = data.legalNoticeUrl; self.privacyUrl = data.privacyUrl; }