Re: [go-nuts] goxpath: An XPath 1.0 parser

2017-06-14 Thread Jim Robinson
Since he was the initial author of this thread you're replying to, it does seem reasonable enough to also raise the question here. :) On Wednesday, June 14, 2017 at 7:25:08 AM UTC-7, Lutz Horn wrote: > > Hi, > > Am 14.06.2017 15:57 schrieb seamus via golang-nuts: > > Yes referring to

Re: [go-nuts] goxpath: An XPath 1.0 parser

2017-06-14 Thread Lutz Horn
Hi, Am 14.06.2017 15:57 schrieb seamus via golang-nuts: Yes referring to https://github.com/ChrisTrenkamp/goxpath ... You would be Chris Trenkamp. Then you will probably get better answers if you open an issue on this GitHub project. The people here on go-nuts did not write this library nor

Re: [go-nuts] goxpath: An XPath 1.0 parser

2017-06-14 Thread seamus via golang-nuts
Yes referring to https://github.com/ChrisTrenkamp/goxpath YANG is a data modelling language, that may use XML to represent the data stored in a model. Valid relationship between nodes can be expresses as XPATH expressions. These XPATH expression sometimes use current(), for example:

Re: [go-nuts] goxpath: An XPath 1.0 parser

2017-06-14 Thread Lutz Horn
Hi, I've been doing some work on goxpath to use it to evaluate xpath expressions used in YANG. One issue I just hit is the XSLT current() function is used in the YANG files, this fails to evaluate as current() isn't included in the implementation. Did you consider it at all ? * Are you

[go-nuts] goxpath: An XPath 1.0 parser

2017-06-14 Thread seamus via golang-nuts
I've been doing some work on goxpath to use it to evaluate xpath expressions used in YANG. One issue I just hit is the XSLT current() function is used in the YANG files, this fails to evaluate as current() isn't included in the implementation. Did you consider it at all ? -- You received this

Re: [go-nuts] goxpath: An XPath 1.0 parser

2016-06-13 Thread Henrik Johansson
How does it compare to https://godoc.org/launchpad.net/xmlpath? I have been using it with great satisfaction but it is not complete to my knowledge xpath feature wise. mån 13 juni 2016 kl 01:48 skrev Chris Trenkamp : > https://github.com/ChrisTrenkamp/goxpath > > I've