--- subversion/subversion/mod_dav_svn/repos.c.orig 2003-07-05 14:44:59.000000000 +0300 +++ subversion/subversion/mod_dav_svn/repos.c 2003-07-08 20:56:45.000000000 +0300 @@ -2006,6 +2006,11 @@ href = ap_escape_uri(entry_pool, href); + /* + * quote the name with XML characteristics for display in both + * the XML and HTML formats. + * */ + name = apr_xml_quote_string(entry_pool, name, 1); if (gen_html) { ap_fprintf(output, bb, @@ -2015,7 +2020,7 @@ else { const char *const tag = (is_dir ? "dir" : "file"); - name = apr_xml_quote_string(entry_pool, name, 1); + href = apr_xml_quote_string(entry_pool, href, 1); /* ### This is where the we could search for props */