Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Done
-
Affects Version/s: 0.1.6
-
Fix Version/s: 1.2.0-alpha-2
-
Component/s: api
-
Labels:None
-
Git Pull Request:
Description
"Could not export Node strcuture to XML"
node.getOrCreate("/foo/bar=omg/with/slashes");
fails with that error. problem is parser think it means this:
"/foo/bar=omg" + "/more/nodes"
So need some way of escaping text values:
node.getOrCreate("/foo/bar=omg\\/with\\/escaped
/slashes");
A simple test case on the SPI module should be able to assert if this case is still present.