diff -r 6641e941ef1e -r ff1a9aa48cfd app/django/contrib/sitemaps/templates/sitemap.xml --- a/app/django/contrib/sitemaps/templates/sitemap.xml Tue Oct 14 12:36:55 2008 +0000 +++ b/app/django/contrib/sitemaps/templates/sitemap.xml Tue Oct 14 16:00:59 2008 +0000 @@ -1,9 +1,9 @@ -{% autoescape off %} + {% spaceless %} {% for url in urlset %} - {{ url.location|escape }} + {{ url.location }} {% if url.lastmod %}{{ url.lastmod|date:"Y-m-d" }}{% endif %} {% if url.changefreq %}{{ url.changefreq }}{% endif %} {% if url.priority %}{{ url.priority }}{% endif %} @@ -11,4 +11,3 @@ {% endfor %} {% endspaceless %} -{% endautoescape %}