Django

Code

Changeset 6806

Show
Ignore:
Timestamp:
12/01/07 14:08:45 (9 months ago)
Author:
ubernostrum
Message:

Fixed #5860: Documented the correct order in which the syndication framework tries methods for generating item links.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/syndication_feeds.txt

    r6773 r6806  
    604604        # them in this order. 
    605605 
    606         # First, the framework tries the get_absolute_url() method on each item 
    607         # returned by items(). Failing that, it tries these two methods: 
     606        # First, the framework tries the two methods below, in 
     607        # order. Failing that, it falls back to the get_absolute_url() 
     608        # method on each item returned by items(). 
    608609 
    609610        def item_link(self, item):