| changeset 0 | 0d40e90630ef |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/lib/django/contrib/gis/tests/geoapp/sitemaps.py Wed Jan 20 00:34:04 2010 +0100 @@ -0,0 +1,8 @@ +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), + }