Changeset 6773
- Timestamp:
- 11/29/07 23:27:49 (11 months ago)
- Files:
-
- django/trunk/docs/syndication_feeds.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/syndication_feeds.txt
r6741 r6773 565 565 """ 566 566 Takes the object returned by get_object() and returns the feed's 567 TTL (Time to live) as a normal Python string.567 TTL (Time To Live) as a normal Python string. 568 568 """ 569 569 570 570 def ttl(self): 571 571 """ 572 Returns the feed's ttlas a normal Python string.573 """ 574 575 ttl = 600 # Hard-coded Time to live.572 Returns the feed's TTL as a normal Python string. 573 """ 574 575 ttl = 600 # Hard-coded Time To Live. 576 576 577 577 # ITEMS -- One of the following three is required. The framework looks
