Django

Code

Changeset 5357

Show
Ignore:
Timestamp:
05/26/07 05:36:36 (1 year ago)
Author:
mtredinnick
Message:

Fixed #4323 -- Added the ability to display author names without email
addresses to RSS 2.0 feeds.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/AUTHORS

    r5302 r5357  
    231231    Milton Waddams 
    232232    wam-djangobug@wamber.net 
     233    wangchun <yaohua2000@gmail.com> 
    233234    Dan Watson <http://theidioteque.net/> 
    234235    Chris Wesseling <Chris.Wesseling@cwi.nl> 
  • django/trunk/django/utils/feedgenerator.py

    r4981 r5357  
    169169            elif item["author_email"]: 
    170170                handler.addQuickElement(u"author", item["author_email"]) 
     171            elif item["author_name"]: 
     172                handler.addQuickElement(u"dc:creator", item["author_name"], {"xmlns:dc": u"http://purl.org/dc/elements/1.1/"}) 
    171173 
    172174            if item['pubdate'] is not None: