@lblod/graph-rdfa-processor 2.1.9 → 2.1.10
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.
- package/bug13.html +837 -0
- package/dist/rdfa-graph.js +4 -4
- package/package.json +1 -1
- package/src/rdfa-graph.js +483 -485
- package/test/test.js +27 -27
package/dist/rdfa-graph.js
CHANGED
@@ -7,6 +7,8 @@ exports.RDFaPredicate = exports.RDFaSubject = exports.RDFaGraph = void 0;
|
|
7
7
|
|
8
8
|
var _node = _interopRequireDefault(require("./node"));
|
9
9
|
|
10
|
+
var _xmlserializer = require("xmlserializer");
|
11
|
+
|
10
12
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
13
|
|
12
14
|
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
@@ -405,12 +407,11 @@ function () {
|
|
405
407
|
var object = pnode.objects[i];
|
406
408
|
|
407
409
|
if (object.type == RDFaProcessor.XMLLiteralURI) {
|
408
|
-
var serializer = new XMLSerializer();
|
409
410
|
var value = "";
|
410
411
|
|
411
412
|
for (var x = 0; x < object.value.length; x++) {
|
412
413
|
if (object.value[x].nodeType == _node.default.ELEMENT_NODE) {
|
413
|
-
value +=
|
414
|
+
value += (0, _xmlserializer.serializeToString)(object.value[x]);
|
414
415
|
} else if (object.value[x].nodeType == _node.default.TEXT_NODE) {
|
415
416
|
value += object.value[x].nodeValue;
|
416
417
|
}
|
@@ -519,7 +520,6 @@ function () {
|
|
519
520
|
} else if (this.objects[i].type == "http://www.w3.org/2001/XMLSchema#integer" || this.objects[i].type == "http://www.w3.org/2001/XMLSchema#decimal" || this.objects[i].type == "http://www.w3.org/2001/XMLSchema#double" || this.objects[i].type == "http://www.w3.org/2001/XMLSchema#boolean") {
|
520
521
|
s += '"' + this.objects[i].value + '"' + "^^<" + this.objects[i].type + ">";
|
521
522
|
} else if (this.objects[i].type == "http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral") {
|
522
|
-
var serializer = new XMLSerializer();
|
523
523
|
var value = "";
|
524
524
|
|
525
525
|
for (var x = 0; x < this.objects[i].value.length; x++) {
|
@@ -538,7 +538,7 @@ function () {
|
|
538
538
|
e.setAttributeNS("http://www.w3.org/2000/xmlns/", prefixes[p].length == 0 ? "xmlns" : "xmlns:" + prefixes[p], prefixMap[prefixes[p]]);
|
539
539
|
}
|
540
540
|
|
541
|
-
value +=
|
541
|
+
value += (0, _xmlserializer.serializeToString)(e);
|
542
542
|
} else if (this.objects[i].value[x].nodeType == _node.default.TEXT_NODE) {
|
543
543
|
value += this.objects[i].value[x].nodeValue;
|
544
544
|
}
|
package/package.json
CHANGED