##// END OF EJS Templates
svn: Add subscriber to generate the mod_dav_svn config on RepoGroupEvents #4082
svn: Add subscriber to generate the mod_dav_svn config on RepoGroupEvents #4082

File last commit:

r558:f9cad2b3 default
r559:61adadbc default
Show More
mod-dav-svn.conf.mako
20 lines | 582 B | application/x-mako | MakoHtmlLexer
# This file is auto generated by RhodeCode. It contains the configuration for
# use with mod_dav_svn.
<Location ${location_root}>
DAV svn
SVNParentPath ${parent_path_root}
SVNListParentPath ${'On' if svn_list_parent_path else 'Off'}
Allow from all
Order allow,deny
</Location>
% for repo_group in repo_groups:
<Location ${location_root}${repo_group.full_path}>
DAV svn
SVNParentPath ${parent_path_root}${repo_group.full_path}
SVNListParentPath ${'On' if svn_list_parent_path else 'Off'}
Allow from all
Order allow,deny
</Location>
% endfor