#787 closed defect (fixed)
High-level feeds ('Feed' subclasses) don't pick up author details
Reported by: | Owned by: | Adrian Holovaty | |
---|---|---|---|
Component: | contrib.syndication | Version: | |
Severity: | normal | Keywords: | |
Cc: | Triage Stage: | Design decision needed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Feeds created by subclassing django.contrib.syndication.feeds.Feed do not seem to pick up author details - author_name, author_email, author_link. This is especially a problem with Atom feeds, which require either an author element in the root, or per-entry. feedgenerator.py seems to contain all the necessary; it's just the higher level stuff that isn't handling it.
Note:
See TracTickets
for help on using tickets.
(In [1228]) Fixed #787 -- High-level syndication framework now picks up author details. Also updated documentation. Thanks, mattycakes