app/django/contrib/gis/tests/geoapp/sitemaps.py
author Sverre Rabbelier <srabbelier@gmail.com>
Wed, 11 Mar 2009 21:28:48 +0000
changeset 1796 5cd78a7aacdd
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Allow for query caching in pick Turn the caching on for /user/pick 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),
            }