Changeset 5650
- Timestamp:
- 07/11/07 23:43:29 (1 year ago)
- Files:
-
- django/trunk/docs/syndication_feeds.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/syndication_feeds.txt
r5643 r5650 419 419 # GUID -- One of the following three is optional. The framework looks 420 420 # for them in this order. This property is only used for Atom feeds 421 # (where it is the feed-level id element). If not provided, the feed 422 # link is used as the id. 421 # (where it is the feed-level ID element). If not provided, the feed 422 # link is used as the ID. 423 # 424 # (New in Django development version) 423 425 424 426 def feed_guid(self, obj): 425 427 """ 426 428 Takes the object returned by get_object() and returns the globally 427 unique idfor the feed as a normal Python string.429 unique ID for the feed as a normal Python string. 428 430 """ 429 431 430 432 def feed_guid(self): 431 433 """ 432 Returns the feed's globally unique idas a normal Python string.434 Returns the feed's globally unique ID as a normal Python string. 433 435 """ 434 436 … … 576 578 577 579 # ITEM_GUID -- The following method is optional. This property is 578 # only used for Atom feeds (it is the idelement for an item in an580 # only used for Atom feeds (it is the ID element for an item in an 579 581 # Atom feed). If not provided, the item's link is used by default. 582 # 583 # (New in Django development version) 580 584 581 585 def item_guid(self, obj): 582 586 """ 583 Takes an item, as return by items(), and returns the item's id.584 """ 585 586 # ITEM AUTHOR NAME -- One of the following three is optional. The587 Takes an item, as return by items(), and returns the item's ID. 588 """ 589 590 # ITEM AUTHOR NAME -- One of the following three is optional. The 587 591 # framework looks for them in this order. 588 592
