class documentation

This is a subclass of the `Feed` from `django.contrib.syndication`. This allows users to define a `geometry(obj)` and/or `item_geometry(item)` methods on their own subclasses so that geo-referenced information may placed in the feed.

Method feed_extra_kwargs Return an extra keyword arguments dictionary that is used when initializing the feed generator.
Method item_extra_kwargs Return an extra keyword arguments dictionary that is used with the `add_item` call of the feed generator.

Inherited from Feed:

Method __call__ Undocumented
Method get_context_data Return a dictionary to use as extra context if either ``self.description_template`` or ``self.item_template`` are used.
Method get_feed Return a feedgenerator.DefaultFeed object, fully populated, for this feed. Raise FeedDoesNotExist for invalid parameters.
Method get_object Undocumented
Method item_description Undocumented
Method item_enclosures Undocumented
Method item_link Undocumented
Method item_title Undocumented
Class Variable description_template Undocumented
Class Variable language Undocumented
Class Variable title_template Undocumented
Method _get_dynamic_attr Undocumented
def feed_extra_kwargs(self, obj): (source)

Return an extra keyword arguments dictionary that is used when initializing the feed generator.

def item_extra_kwargs(self, item): (source)

Return an extra keyword arguments dictionary that is used with the `add_item` call of the feed generator.