Package zinnia :: Module feeds :: Class EntryFeed
[hide private]

Class EntryFeed

source code


Base Entry Feed

Nested Classes [hide private]

Inherited from django.contrib.syndication.views.Feed: feed_type

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
item_pubdate(self, item)
Publication date of an entry
source code
 
item_categories(self, item)
Entry's categories
source code
 
item_author_name(self, item)
Returns the first author of an entry
source code
 
item_author_email(self, item)
Returns the first author's email
source code
 
item_author_link(self, item)
Returns the author's URL
source code
 
item_enclosure_url(self, item)
Returns an image for enclosure
source code
 
item_enclosure_length(self, item)
Hardcoded enclosure length
source code
 
item_enclosure_mime_type(self, item)
Hardcoded enclosure mimetype
source code

Inherited from django.contrib.syndication.views.Feed: __call__, feed_extra_kwargs, get_feed, get_object, item_description, item_extra_kwargs, item_link, item_title

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  title_template = 'feeds/entry_title.html'
  description_template = 'feeds/entry_description.html'
  feed_copyright = 'Zinnia'
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)