SVN authentication using mod_auth_mysql
Here's a tip by leop:
For subversion you need the "SVN backend" module - http://drupal.org/project/versioncontrol_svn - not the CVS one.
Step 1: create an SVN repository (skip this if you already have one)
svnadmin create /home/joe/testreposvn co file:///home/joe/testrepo /home/joe/testrepo-checkoutcd /home/joe/testrepo-checkoutecho "Blah" > a.txtsvn add a.txtsvn commit -m 'Initial Blah!'Step 2: set up your Drupal site with that repository
Here's a tip by leop: