﻿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
8729	django.contrib.comments feed should allow filtering based on ContentType and object instance.	Kyle Fox		"A common use-case for syndicating comments is to provide a feed of comments attached to a specific object (say, a blog post with ID 42).  This patch allows the comment feed to be filtered based on ContentType and object instance, like so:

'''Comments filtered by ContentType:''' /feeds/comments/<app>.<model>/

Provides a feed of all public comments attached to the specified ContentType.  For example, the URL /feeds/comments/blog.post/ would return all public comments attached to the Post model in the 'blog' app.  Note that the model name needs to be lowercase.


'''Comments filtered by a specific object:''' /feeds/comments/<app>.<model>/<pk_val>/

Provides a feed of all public comments attached to the object specified by the parameters .  For example, the URL /feeds/comments/blog.post/42/ would return all public comments attached to the Post with pk=42 in the 'blog' app.

'''Note:''' This is the first time I've created a ticket/patch, so I would appreciate any advice regarding the code or this ticket.  Thanks."	New feature	closed	contrib.comments	dev	Normal	wontfix	comments, feed, syndication		Accepted	1	1	1	0	0	0
