@netwerk-digitaal-erfgoed/network-of-terms-catalog 10.2.0 → 10.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -97,18 +97,18 @@ WHERE {
97
97
  CONCAT(
98
98
  IF(BOUND(?birthDate), CONCAT(?birthDate, " "), ""),
99
99
  IF(STRLEN(?birthPlace_en) > 0, CONCAT("(", ?birthPlace_en, ") "), ""),
100
- IF(BOUND(?deathDate) || BOUND(?deathPlace_en)," - "," – ; ")),
100
+ IF(BOUND(?deathDate) || STRLEN(?deathPlace_en) >0, " - ", " – ; ")),
101
101
  ""
102
102
  ),
103
- IF(BOUND(?deathDate) || BOUND(?deathPlace_en),
103
+ IF(BOUND(?deathDate) || STRLEN(?deathPlace_en) > 0,
104
104
  CONCAT(
105
- IF(BOUND(?birthDate) || BOUND(?birthPlace_en), "", "– "),
105
+ IF(BOUND(?birthDate) || STRLEN(?birthPlace_en) > 0, "", "– "),
106
106
  IF(BOUND(?deathDate), CONCAT(?deathDate, " "), ""),
107
- IF(STRLEN(?deathPlace_nl) > 0, CONCAT("(", ?deathPlace_en, ")"), ""),
107
+ IF(STRLEN(?deathPlace_en) > 0, CONCAT("(", ?deathPlace_en, ")"), ""),
108
108
  "; "),
109
109
  ""
110
110
  ),
111
- IF(STRLEN(?additionalTypes_nl) > 0, CONCAT(?additionalTypes_en, ". "), ""),
111
+ IF(STRLEN(?additionalTypes_en) > 0, CONCAT(?additionalTypes_en, ". "), ""),
112
112
  IF(STRLEN(?descriptions) > 0, CONCAT(?descriptions, ". "), "")
113
113
  ),
114
114
  "en"
@@ -97,18 +97,18 @@ WHERE {
97
97
  CONCAT(
98
98
  IF(BOUND(?birthDate), CONCAT(?birthDate, " "), ""),
99
99
  IF(STRLEN(?birthPlace_en) > 0, CONCAT("(", ?birthPlace_en, ") "), ""),
100
- IF(BOUND(?deathDate) || BOUND(?deathPlace_en)," - "," – ; ")),
100
+ IF(BOUND(?deathDate) || STRLEN(?deathPlace_en) >0, " - ", " – ; ")),
101
101
  ""
102
102
  ),
103
- IF(BOUND(?deathDate) || BOUND(?deathPlace_en),
103
+ IF(BOUND(?deathDate) || STRLEN(?deathPlace_en) > 0,
104
104
  CONCAT(
105
- IF(BOUND(?birthDate) || BOUND(?birthPlace_en), "", "– "),
105
+ IF(BOUND(?birthDate) || STRLEN(?birthPlace_en) > 0, "", "– "),
106
106
  IF(BOUND(?deathDate), CONCAT(?deathDate, " "), ""),
107
- IF(STRLEN(?deathPlace_nl) > 0, CONCAT("(", ?deathPlace_en, ")"), ""),
107
+ IF(STRLEN(?deathPlace_en) > 0, CONCAT("(", ?deathPlace_en, ")"), ""),
108
108
  "; "),
109
109
  ""
110
110
  ),
111
- IF(STRLEN(?additionalTypes_nl) > 0, CONCAT(?additionalTypes_en, ". "), ""),
111
+ IF(STRLEN(?additionalTypes_en) > 0, CONCAT(?additionalTypes_en, ". "), ""),
112
112
  IF(STRLEN(?descriptions) > 0, CONCAT(?descriptions, ". "), "")
113
113
  ),
114
114
  "en"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netwerk-digitaal-erfgoed/network-of-terms-catalog",
3
- "version": "10.2.0",
3
+ "version": "10.2.1",
4
4
  "type": "module",
5
5
  "description": "Catalog of Network of Terms datasets",
6
6
  "repository": {