anti-xml icon indicating copy to clipboard operation
anti-xml copied to clipboard

The scala.xml library has some very annoying issues. Time for a clean-room replacement!

Results 12 anti-xml issues
Sort by recently updated
recently updated
newest added

This batch of commits adds partial XPath like axes support (via pimping) to Zipper. This is done using the ZipperAxes class and the shiftHoles method on ZIpper, see the corresponding...

An attempt to break `Zipper` into traits as per #76. Not sure whether this is the most elegant way to do this... As there's a bunch of ZipperXXX files now,...

Are there plans to release anti-xml for Scala 2.10? I see that there's no.arktekk:anti-xml_2.10:0.5.1 in Maven Central, but that doesn't look like an official anti-xml release. Or is it?

Suppose you have ``` val xml : Elem = .convert ``` and I want to modify the document to ``. ``` val bar_zipper : Zipper[Elem] = xml \ "bar" val...

Hi, ``` scala def syncElems(e1: Elem, e2: Elem): Elem = { val fullAttrs = e1.attrs.filterNot(_._2.isEmpty) val newAttrs = e2.attrs.filterNot( at => fullAttrs.keys exists (at._1 == _)).filter( at => e1.attrs.keys exists...

I know Anti-XML is not an XHTML library, but if you want to be able to use it for XHTML (as I did want to), you should know that while...

I'm grabbing the XHTML 1.0 from this page: http://en.wikipedia.org/wiki/Adams_State_College As one big string blob. This is in Scala 2.9.1. on Windows 7, JRE 1.6. When i try to perform: var...

The TODO list is quite outdated by now, and should probably be revised. Also, I'm looking for a new issue to tackle, so having an updated list would definitely help...

I've been trying to use anti-xml to parse and generate some XML documents that use some elements from the atom namespace [1](http://www.w3.org/2005/Atom). My code uses our own private namespace, but...