You need to bypass authentication for the log viewer. The easiest way
is to use local access in the viewer.
$repo = 'file:///var/lib/svn/repos';
Note that this makes the log readable to all users, and publicly too
if you don't require authentication for /repos-web/open/. File
contents are never accessible through the log, only paths and log
messages.
/Staffan
>
> part of my apache config:
>
> <VirtualHost xxx.xxx.xxx.xxx:443>
> ServerName
www.somedomain.com
>
> SSLEngine on
> ....
>
> <Location /svn>
> DAV svn
> SVNPath /var/lib/svn/repos
>
> order allow,deny
> allow from all
> AuthType Basic
> AuthName "Subversion Repository"
> Require valid-user
> AuthUserFile /etc/apache2/dav_svn.passwd
> AuthzSVNAccessFile /etc/apache2/svn_access_control
> #style
http://www.reposstyle.com/
> SVNIndexXSLT "/repos-web/view/repos.xsl"
> </Location>
> ...
>
> --
>
> You received this message because you are subscribed to the Google Groups "ReposStyle" group.
> To post to this group, send email to
repos...@googlegroups.com.
> To unsubscribe from this group, send email to
reposstyle+...@googlegroups.com.
> For more options, visit this group at
http://groups.google.com/group/reposstyle?hl=en.
>
>
>