ObjectBox 1.0.1 released

Martin Klang <[email protected]> Tue, 20 Jul 2004 20:39:15 +0100
Newsgroups gmane.text.xml.o-xml
Message-ID <[email protected]>
ObjectBox 1.0.1 released

The new version of the o:XML compiler/interpretor fixes a couple of 
XPath bugs, in particular one which produced the wrong result set for 
the descendant-or-self axis.

There's also a new 'o:sort' mapping, similar to xsl:sort. It arranges 
the nodes it encloses according to a given sort criteria (any XPath 
expression), and may be used like this:

<o:sort select="name">
   <author>
     <name>Fred</name>
   </author>
   <author>
     <name>Ella</name>
   </author>
   <author>
     <name>Rutger</name>
   </author>
</o:sort>

which would produce:
   <author>
     <name>Ella</name>
   </author>
   <author>
     <name>Fred</name>
   </author>
   <author>
     <name>Rutger</name>
   </author>

More information will soon be available in the programming guide.
The web site is currently undergoing some major maintenance, a new 
version will be published very soon.

To download the new release, please visit:
http://downloads.pingdynasty.com/o-xml/ObjectBox


best regards,

/m