On Fri, Sep 16, 2011 at 12:05:19PM +0100, Adrian Smith wrote: > Hi, > > I am looking for .xsd format schema for the latest build of subversion. The > last discussion I found was back in 2005 wich was resolved by making the > build create DTD, RNG and XSD files from RNC schema. > > I have found the path (subversion/svn/schema) wich contains the rnc files and > a referance to building the xsd files in the Makefile.in > (http://svn.apache.org/repos/asf/subversion/trunk/Makefile.in). > > What I was wondering is how would I go about using the version I downloaded > and only building these files? (Not compiling all of svn as I do not have > half of the stuff required installed). >
The generated Makefile would run the equivalent of these commands: cd subversion/svn/schema trang blame.rnc blame.xsd trang info.rnc info.xsd trang list.rnc list.xsd trang log.rnc log.xsd trang status.rnc status.xsd trang props.rnc props.xsd I suppose you could execute them manually to get the .xsd files.

