Ticket #9556: syndication_docs_r9370.diff
File syndication_docs_r9370.diff, 674 bytes (added by , 16 years ago) |
---|
-
docs/ref/contrib/syndication.txt
976 976 For example, you might start implementing an iTunes RSS feed generator like so:: 977 977 978 978 class iTunesFeed(Rss201rev2Feed): 979 def root_att ibutes(self):980 attrs = super(iTunesFeed, self).root_att ibutes()979 def root_attributes(self): 980 attrs = super(iTunesFeed, self).root_attributes() 981 981 attrs['xmlns:itunes'] = 'http://www.itunes.com/dtds/podcast-1.0.dtd' 982 982 return attrs 983 983