X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/da4ff24177c122a81ecae0e7693ffe2a3276ba1a..e10030e66aab8b55dab8b8ba507a9140243129fa:/src/wlxml/wlxml.js diff --git a/src/wlxml/wlxml.js b/src/wlxml/wlxml.js index 21623c5..ef70d3d 100644 --- a/src/wlxml/wlxml.js +++ b/src/wlxml/wlxml.js @@ -4,8 +4,9 @@ define([ 'smartxml/smartxml', 'smartxml/transformations', 'wlxml/extensions/metadata/metadata', - 'wlxml/extensions/comments/comments' -], function($, _, smartxml, transformations, metadataExtension, commentExtension) { + 'wlxml/extensions/comments/comments', + 'wlxml/extensions/edumed/edumed' +], function($, _, smartxml, transformations, metadataExtension, commentExtension, edumedExtension) { 'use strict'; @@ -24,11 +25,39 @@ var WLXMLDocumentNodeMethods = { me.concat(this.parents()).some(function(node) { if(node.is(query)) { toret = node; + } + return !!toret || (!node.sameNode(this) && node.isContextRoot()); + }.bind(this)); + + return toret; + }, + isContextRoot: function() { + var me = this.nodeType === Node.ELEMENT_NODE ? [this] : [], + toret = false; + if(!this.parent()) { + return true; + } + me.concat(this.parents()).some(function(node) { + if(_.isFunction(node.object.isContextRoot) && node.object.isContextRoot(this)) { + toret = true; return true; } - }); + }.bind(this)); return toret; }, + getContextRoot: function() { + var contextRoot; + [this].concat(this.parents()).some(function(n) { + if(n.isContextRoot()) { + contextRoot = n; + return true; + } + }); + return contextRoot; + }, + hasSameContextRoot: function(other) { + return this.getContextRoot().sameNode(other.getContextRoot()); + } }; var getClassLists = function(klassName) { @@ -90,6 +119,16 @@ $.extend(WLXMLElementNode.prototype, WLXMLDocumentNodeMethods, smartxml.ElementN return child.is(query); }.bind(this)); }, + find: function(query) { + var doc = this.document; + return this._$.find('*') + .map(function() { + return doc.createDocumentNode(this); + }) + .filter(function() { + return this.is(query); + }); + }, _getXMLDOMToDump: function() { var DOM = this._$.clone(true, true), @@ -145,33 +184,18 @@ $.extend(WLXMLElementNode.prototype, WLXMLDocumentNodeMethods, smartxml.ElementN $(this).prepend(metaNode); } } - }); - - return DOM; } }); -// WLXMLElementNode.prototype.transformations.register(transformations.createContextTransformation({ -// name: 'wlxml.setMetaAttribute', -// impl: function(args) { -// this.setMetaAttribute(args.name, args.value); -// }, -// getChangeRoot: function() { -// return this.context; -// } -// })); - - var WLXMLDocumentNode = function() { smartxml.DocumentNode.apply(this, arguments); }; WLXMLDocumentNode.prototype = Object.create(smartxml.DocumentNode.prototype); - var WLXMLTextNode = function() { smartxml.TextNode.apply(this, arguments); }; @@ -183,7 +207,7 @@ $.extend(WLXMLTextNode.prototype, WLXMLDocumentNodeMethods, { var WLXMLDocument = function(xml, options) { this.classMethods = {}; this.classTransformations = {}; - smartxml.Document.call(this, xml, [metadataExtension, commentExtension]); + smartxml.Document.call(this, xml, [metadataExtension, commentExtension, edumedExtension]); this.options = options; }; @@ -316,7 +340,6 @@ $.extend(WLXMLDocument.prototype, { }, registerExtension: function(extension) { - //debugger; smartxml.Document.prototype.registerExtension.call(this, extension); var doc = this;