This is actually a limitation of the JDK, and perhaps of the XPath 1.0 expression syntax (although I've been looking at the BNF to determine just how a LocationPath is a special case of an Expr, and am not finding anything clear -- I would have expected a LocationPath to be one of the PrimaryExpr forms, but it isn't). Regardless, it isn't an issue with binding. Here are some examples: Document dom = ParseUtil.parse("<root>" + " <child>" + " <grandchild>text</grandchild>" + " </child>" + "</root>");...
Core functions
This is actually a limitation of the JDK, and perhaps of the XPath 1.0 expression syntax (although I've been looking at the BNF to determine just how a LocationPath is a special case of an Expr, and am not finding anything clear -- I would have expected a LocationPath to be one of the PrimaryExpr forms, but it isn't). Regardless, it isn't an issue with binding. Here are some examples of using name(): Document dom = ParseUtil.parse("<root>" + " <child>" + " <grandchild>text</grandchild>" + " </child>"...
Core functions
begin version 2: requires JVM 1.6
Updates made, and released as 1.1.19. Tested with: Maven 2.2, Oracle JDK 1.6 Maven...
testDateConversions fails with GMT-14
Updates made, and released as 1.1.19. Tested with: Maven 2.2, Oracle JDK 1.6 Maven...
post-release
tag 1.1.19
release 1.1.19
increase coverage
fix default conversion functions for non-US loc...
It was actually the French locale setting that did it. Date.toString() formats strings...
I managed to reproduce this test failure with: practicalxml trunk (revision 305)...
I managed to reproduce this test failure with: practicalxml trunk (revision 305)...
I was unable to reproduce this. I started by simply trying to parse the specified...
I will take a look at this in the next few days. I'm surprised by the output: it...
testDateConversions fails with GMT-14
testDateConversions fails with GMT-14
update copyright dates
update changelist, comments
re-implement classes in xpath.function using Ab...
add AbstractStringFunction
update XPathWrapper and XPathWrapperFactory to ...
extract SelfDescribingFunction interface from A...
add XPathExample
update example comments
post-release
tag release
release 1.1.18
ParseUtil.parse(File): wrap FileNotFoundExcepti...
add ParseUtil.parse(InputStream)