4
Here is what I am looking for. I will see if I can implement this to access a XOOPS database.
http://www.svnforum.org/2017/viewtopic.php?t=730&sid=00051f6193e7d3257f4756b8afc2e60dHere is the entry for the
tag.
<Location /svn>
DAV svn
SVNPath /path/repository
AuthType Basic
AuthName "Subversion repository"
Auth_MySQL_Username sql_user
Auth_MySQL_Password sql_pw
Auth_MySQL_DB sql_db
Auth_MySQL_Password_Table sql_table
Auth_MySQL_Username_Field username
Auth_MySQL_Password_Field password
Auth_MYSQL_Group_Table sql_table
Auth_MYSQL_Group_Field group
Auth_MySQL_Encrypted_Passwords On
Auth_MySQL_Non_Persistent On
Auth_MYSQL_Empty_Passwords Off
Auth_MySQL On
Require valid-user
<LimitExcept GET PROPFIND OPTIONS REPORT>
Require group admin
LimitExcept>
Location>
<Location /svn/trunk>
Require valid-user
Satisfy Any
<LimitExcept GET PROPFIND OPTIONS REPORT>
Require group admin
LimitExcept>
Location>
<Location /svn/branches/testing>
Require valid-user
<LimitExcept GET PROPFIND OPTIONS REPORT>
Require group admin groupa
LimitExcept>
Location>
In the above the "sql_user" and "sql_pw" is a MySQL user that has the ability to select from the "sql_db".
My myql querry skills are not that strong so I will probably fumble around with this for some time before it is perfect but I think that it is a step in the right direction.