<?xml version="1.0"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
>
  <channel>
    <title>QA Site</title>
    <link>http://spikef2163i5.cabbycentral.com/</link>
    <description>A blog by spikef2163i5</description>
    <language>de</language>    <item>
      <title>Subversion</title>
      <link>http://spikef2163i5.cabbycentral.com/2008/09/14/subversion.html</link>
      <description>Apart from being used as a developer repository, subversion is used by Trac.
Subversion installation was pretty straightforward.  I installed the RPMs with yum:
# yum install subversion mod_dav_svn
&#8211;Optionally install bindings on behalf of languages
# yum install subversion-perl subversion-ruby  subversion-java
&#8211; create a repository
# svnadmin create /var/www/svn/repository-name
&#8211; edit httpd.conf (the RPM creates /etc/httpd/conf.d/subversion.conf)
LoadModule dav_svn_module     modules/mod_dav_svn.so
LoadModule authz_svn_module   modules/mod_authz_svn.so
&#8211; create a location
&lt;Location /svn&gt;
Options Indexes
Order allow,deny
Allow from all
DAV svn
SVNParentPath /var/www/svn
&lt;LimitExcept GET PROPFIND OPTIONS REPORT&gt;
AuthType Basic
AuthName &#8220;Subversion Login&#8221;
AuthUserFile /var/www/access/.htpasswd
Require valid-user
&lt;/LimitExcept&gt;
&lt;/Location&gt;
&#8211; restart apache
Note on behalf of all you rocketscientists who utilize the SVNParentPath directive:
http://localhost/svn returns 404 Forbidded.  Navigate to http://localhost/svn/respository-name  works.
Set up svn to utilize HTTPS optionally.
</description>
      <pubDate>Sun, 14 Sep 2008 22:50:42 -0400</pubDate>
      <dc:creator>spikef2163i5</dc:creator>
    </item></channel></rss>