﻿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
6188	Support for flexible URLs for complex feeds	Guilherme M. Gondim (semente) <semente@…>	nobody	"If I have this in my URL configuration:

{{{
feeds = {
    'rss': RssEntriesByTagFeed,
    'atom': AtomEntriesByTagFeed,
}
urlpatterns = patterns('',
    url(
        regex  = '^tag/(?P<url>.*)/$',
        view   = 'django.contrib.syndication.views.feed',
        kwargs = dict(feed_dict=feeds)
    ),
)
}}}

...I can't access my tags feeds with tag/example/rss/ (rss is my slug, example is my param), but I can with tag/rss/example/.

I attach a patch like a suggestion for change this to support flexibles URLs for complex feeds.

[[BR]]

Example with the new view (in patch):

{{{
    url(
        regex  = '^tag/(?P<param>[^/]+)/(?P<slug>(rss|atom))/$',
        view   = 'django.contrib.syndication.views.feed',
        kwargs = dict(feed_dict=feeds)
    ), 
}}}

[[BR]]

''Support for GET parameters would be cool.''"		closed	contrib.syndication	dev		fixed	view feed rss syndication		Design decision needed	1	0	0	0	0	0
