~ubuntu-branches/ubuntu/quantal/python-django/quantal

« back to all changes in this revision

Viewing changes to docs/ref/contrib/gis/feeds.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jamie Strandboge
  • Date: 2010-10-12 11:34:35 UTC
  • mfrom: (1.1.12 upstream) (29.1.1 maverick-security)
  • Revision ID: james.westby@ubuntu.com-20101012113435-yy57c8tx6g9anf3e
Tags: 1.2.3-1ubuntu0.1
* SECURITY UPDATE: XSS in CSRF protections. New upstream release
  - CVE-2010-3082
* debian/patches/01_disable_url_verify_regression_tests.diff:
  - updated to disable another test that fails without internet connection
  - patch based on work by Kai Kasurinen and Krzysztof Klimonda
* debian/control: don't Build-Depends on locales-all, which doesn't exist
  in maverick

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.. _ref-gis-feeds:
2
 
 
3
1
================
4
2
Geographic Feeds
5
3
================
8
6
   :synopsis: GeoDjango's framework for generating spatial feeds.
9
7
 
10
8
GeoDjango has its own :class:`Feed` subclass that may embed location information
11
 
in RSS/Atom feeds formatted according to either the `Simple GeoRSS`__ or 
 
9
in RSS/Atom feeds formatted according to either the `Simple GeoRSS`__ or
12
10
`W3C Geo`_ standards.  Because GeoDjango's syndication API is a superset of
13
 
Django's, please consult `Django's syndication documentation <ref-contrib-syndication>`
14
 
for details on general usage.
 
11
Django's, please consult :doc:`Django's syndication documentation
 
12
</ref/contrib/syndication>` for details on general usage.
15
13
 
16
14
.. _W3C Geo: http://www.w3.org/2003/01/geo/
17
15
 
28
26
 
29
27
.. class:: Feed
30
28
 
31
 
   In addition to methods provided by 
 
29
   In addition to methods provided by
32
30
   the :class:`django.contrib.syndication.feeds.Feed`
33
31
   base class, GeoDjango's ``Feed`` class provides
34
32
   the following overrides.  Note that these overrides may be done in multiple ways::