Thomas Weinert
Thomas Weinert
Implement JSON to XML mapping using in Xpath/XSLT 2.0. https://www.w3.org/TR/xpath-functions-31/#func-parse-json
https://www.w3.org/TR/dom41/#interface-parentnode
DOMNode::getNodePath() does not work well with namespaces at the moment. FluentDOM can have a namespace registration on the document, so it should be able to create more specific and readable...
Add `NodeFilter` interface, `NodeIterator` and `TreeWalker` classes. `NodeFilter`: https://developer.mozilla.org/en-US/docs/Web/API/NodeFilter `NodeIterator`: https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator `TreeWalker`: https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker
Select the top level nodes (document element) for new instances if a manipulation function is used before find().
setAttributeNodeNS() actually behaves different from setAttributeNode(). Think about redefining the behavior or at least documenting it: ``` php $dom = new DOMDocument(); $dom->formatOutput = TRUE; $dom->appendChild($dom->createElement('element')); $dom->documentElement->setAttributeNS('urn:foo', 'foo:attribute', 42); $attribute...
I am using jasmine.createSpyObj() in my tests/examples. But this results in an error in UI-Jar. `__ui-jar-temp-module-689e6bd400733cf8e738d027a2ab7e31.js:19 Uncaught ReferenceError: jasmine is not defined` What do I need to change to make...
After reading the open issues I started to refactor the source for them and it got a little out of hand. :-P It is a complete refactoring, changing the approach...