Changed urlpattern order to list the more specific of overlapping patterns first, and made the rfc feed per year pattern more permissive.

- Legacy-Id: 14393
This commit is contained in:
Henrik Levkowetz 2017-12-04 16:32:58 +00:00
parent 2395e7e6b9
commit 7237a800ae

View file

@ -18,6 +18,6 @@ urlpatterns = [
url(r'^ipr/$', LatestIprDisclosuresFeed()),
url(r'^liaison/(?P<kind>recent|from|to|subject)/(?:(?P<search>[^/]+)/)?$', LiaisonStatementsFeed()),
url(r'^wg-proceedings/$', LatestMeetingMaterialFeed()),
url(r'^rfc/(?P<year>\d{4})/?$', RfcFeed()),
url(r'^rfc/$', RfcFeed()),
url(r'^rfc/(?P<year>\d{4})/$', RfcFeed()),
]