﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
2021	Improved Atom feed	ned@…	Adrian Holovaty	"The Atom feed in feedgenerator creates <link href='...'/> elements with no rel attribute.  The Atom spec says this is OK, and should be interepreted as rel='alternate', but Bloglines and Safari don't seem to do it.  So feedgenerator should output rel='alternate' to be more explicit.

Patch: in django\utils\feedgenerator.py, at line 220, change this line:
{{{
handler.addQuickElement(u""link"", u"""", {u""href"": item['link']})
}}}
to:
{{{
handler.addQuickElement(u""link"", u"""", {u""href"": item['link'], u""rel"": u""alternate""})
}}}
"	enhancement	closed	contrib.admin		normal	fixed			Unreviewed	0	0	0	0	0	0
