# HG changeset patch # User Martin Bornhold # Date 2016-09-27 07:02:55 # Node ID f8eb995c50e42a5c21da3f097d2fc07428e16042 # Parent c0c2529a7aada8b317d3098bc86287ba0642dc68 svn-support: Disable all mako default filters. #4244 Mako default filter may change the value in a way that breaks the apache configuration. E.g. when applying HTML escaping. diff --git a/rhodecode/svn_support/templates/mod-dav-svn.conf.mako b/rhodecode/svn_support/templates/mod-dav-svn.conf.mako --- a/rhodecode/svn_support/templates/mod-dav-svn.conf.mako +++ b/rhodecode/svn_support/templates/mod-dav-svn.conf.mako @@ -26,21 +26,21 @@ # - + # The mod_dav_svn module takes the username from the apache request object. # Without authorization this will be empty and no username is logged for the # transactions. This will result in "(no author)" for each revision. The # following directives implement a fake authentication that allows every # username/password combination. AuthType Basic - AuthName ${rhodecode_realm} + AuthName ${rhodecode_realm|n} AuthBasicProvider anon Anonymous * Require valid-user DAV svn - SVNParentPath ${parent_path_root} - SVNListParentPath ${'On' if svn_list_parent_path else 'Off'} + SVNParentPath ${parent_path_root|n} + SVNListParentPath ${'On' if svn_list_parent_path else 'Off'|n} Allow from all Order allow,deny @@ -48,16 +48,16 @@ % for location, parent_path in repo_group_paths: - + AuthType Basic - AuthName ${rhodecode_realm} + AuthName ${rhodecode_realm|n} AuthBasicProvider anon Anonymous * Require valid-user DAV svn - SVNParentPath ${parent_path} - SVNListParentPath ${'On' if svn_list_parent_path else 'Off'} + SVNParentPath ${parent_path|n} + SVNListParentPath ${'On' if svn_list_parent_path else 'Off'|n} Allow from all Order allow,deny