Thursday, 25 July 2002
More fun with Subversion, after recovering carefully from the repository corruption. In addition to the standard HTML output mode there's also an XML+XSLT+CSS one. Here's the relevant portion of my httpd.conf:
<Location /repos/dev> DAV svn SVNPath /var/svn/repos/dev SVNReposName "sabi.net development" <LimitExcept GET PROPFIND OPTIONS REPORT> Require valid-user </LimitExcept> AuthType Basic AuthName "sabi.net Subversion repository" AuthUserFile /var/svn/users </Location> <Location /repos/dev-xml> DAV svn SVNPath /var/svn/repos/dev SVNReposName "sabi.net development (XML)" SVNIndexXSLT /svnindex.xsl <LimitExcept GET PROPFIND OPTIONS REPORT> Deny from all </LimitExcept> </Location>