app/django/contrib/gis/tests/geoapp/sitemaps.py
author Sverre Rabbelier <srabbelier@gmail.com>
Thu, 26 Feb 2009 17:06:17 +0000
changeset 1531 db5d40d9dc43
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Fix alignment of twoline readonly table rows Also removed an unused template tag. Patch by: Sverre Rabbelier

from django.contrib.gis.sitemaps import GeoRSSSitemap, KMLSitemap, KMZSitemap
from models import City, Country
from feeds import feed_dict

sitemaps = {'kml' : KMLSitemap([City, Country]),
            'kmz' : KMZSitemap([City, Country]),
            'georss' : GeoRSSSitemap(feed_dict),
            }