Django

Code

Changeset 4101

Show
Ignore:
Timestamp:
11/24/06 23:20:14 (2 years ago)
Author:
adrian
Message:

Fixed #3061 -- Fixed wrong schema URL in sitemap_index.xml template. Thanks, Mateusz Pawlik and John D'Agostino

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/sitemaps/templates/sitemap_index.xml

    r4088 r4101  
    11<?xml version="1.0" encoding="UTF-8"?> 
    2 <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemapindex/0.9"> 
     2<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> 
    33{% for location in sitemaps %}<sitemap><loc>{{ location|escape }}</loc></sitemap>{% endfor %} 
    44</sitemapindex>