kantan.xpath icon indicating copy to clipboard operation
kantan.xpath copied to clipboard

XPath wrapper for Scala

Results 17 kantan.xpath issues
Sort by recently updated
recently updated
newest added

## About this PR 📦 Updates [org.scala-sbt:sbt](https://github.com/sbt/sbt) from `1.6.2` to `1.10.0` 📜 [GitHub Release Notes](https://github.com/sbt/sbt/releases/tag/v1.10.0) - [Version Diff](https://github.com/sbt/sbt/compare/v1.6.2...v1.10.0) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve...

## About this PR 📦 Updates * [org.scala-lang:scala-library](https://github.com/scala/scala) * [org.scala-lang:scala-reflect](https://github.com/scala/scala) from `2.12.15` to `2.12.19` 📜 [GitHub Release Notes](https://github.com/scala/scala/releases/tag/v2.12.19) - [Version Diff](https://github.com/scala/scala/compare/v2.12.15...v2.12.19) ## Usage ✅ **Please merge!** I'll automatically update this...

Hey! Are there any plans on supporting Scala 3 in this library? I'm ready to invest my time in this, if there's a possibility for my work to be merged...

Updates * org.scala-lang:scala-library * org.scala-lang:scala-reflect from 2.13.6 to 2.13.8. I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like to skip...

Updates [org.scala-sbt:sbt](https://github.com/sbt/sbt) from 1.5.5 to 1.5.8. [GitHub Release Notes](https://github.com/sbt/sbt/releases/tag/v1.5.8) - [Version Diff](https://github.com/sbt/sbt/compare/v1.5.5...v1.5.8) I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd...

Updates [com.nrinaudo:kantan.sbt-kantan](https://github.com/nrinaudo/kantan.sbt) from 2.7.5 to 2.8.0. [GitHub Release Notes](https://github.com/nrinaudo/kantan.sbt/releases/tag/v2.8.0) - [Version Diff](https://github.com/nrinaudo/kantan.sbt/compare/v2.7.5...v2.8.0) I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd...

```scala scala> "".evalXPath[Element](xp".") res0: kantan.xpath.XPathResult[org.w3c.dom.Element] = Left(TypeError: class com.sun.org.apache.xerces.internal.dom.DeferredDocumentImpl cannot be cast to class org.w3c.dom.Element (com.sun.org.apache.xerces.internal.dom.DeferredDocumentImpl and org.w3c.dom.Element are in module java.xml of loader 'bootstrap')) ``` NodeDecoder[Element] should probably have...

When dealing with relatively big hierarchies with a multiplicity of case classes, and parsing multiple XML document files, it becomes relatively hard to identify specific problems in the XML and/or...

At the moment this library only supports NODE/NODESET as the return data type. This might confuse a person unfamiliar with inner workings of Java's XPath implementation (like me): ```scala scala>...