datatracker/ietf/group/urls.py
Ole Laursen 083b3138c6 Rename group AJAX URL parameter to acronym instead of groupname since
it is in fact the acronym, not the name of the group
 - Legacy-Id: 7064
2013-12-24 12:49:25 +00:00

10 lines
199 B
Python

# Copyright The IETF Trust 2007, All Rights Reserved
from django.conf.urls import patterns, url
urlpatterns = patterns('',
(r'^(?P<acronym>[a-z0-9]+).json$', 'ietf.group.ajax.group_json'),
)