Changeset 5139
- Timestamp:
- 05/02/07 15:31:15 (1 year ago)
- Files:
-
- django/trunk/docs/syndication_feeds.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/syndication_feeds.txt
r5064 r5139 647 647 """ 648 648 Takes an item, as returned by items(), and returns the item's 649 enclosure mimetype.649 enclosure MIME type. 650 650 """ 651 651 652 652 def item_enclosure_mime_type(self): 653 653 """ 654 Returns the enclosure length, in bytes,for every item in the feed.655 """ 656 657 item_enclosure_mime_type = "audio/mpeg" # Hard-coded enclosure mime-type.654 Returns the enclosure MIME type for every item in the feed. 655 """ 656 657 item_enclosure_mime_type = "audio/mpeg" # Hard-coded enclosure MIME type. 658 658 659 659 # ITEM PUBDATE -- It's optional to use one of these three. This is a
