Changeset 1295
- Timestamp:
- 11/19/05 22:53:28 (3 years ago)
- Files:
-
- django/trunk/docs/syndication_feeds.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/syndication_feeds.txt
r1228 r1295 329 329 This example illustrates all possible attributes and methods for a ``Feed`` class:: 330 330 331 class ExampleFeed(rss.Feed): 331 332 from django.contrib.syndication.feeds import Feed 333 from django.utils import feedgenerator 334 335 class ExampleFeed(Feed): 332 336 333 337 # FEED TYPE -- Optional. This should be a class that subclasses
