meeting/urls.py has been restored with .html and .txt url

- Legacy-Id: 502
This commit is contained in:
Michael Lee 2007-06-18 19:14:26 +00:00
parent 814c18c41f
commit 819d8352c7

View file

@ -2,7 +2,7 @@ from django.conf.urls.defaults import patterns
from ietf.meeting import views from ietf.meeting import views
urlpatterns = patterns('', urlpatterns = patterns('',
(r'^(?P<meeting_num>\d+)/agenda-(?P<html_or_txt>\S+)/$', views.show_html_agenda), (r'^(?P<meeting_num>\d+)/agenda.(?P<html_or_txt>\S+)$', views.show_html_agenda),
(r'^(?P<meeting_num>\d+)/materials/$', views.show_html_materials), (r'^(?P<meeting_num>\d+)/materials.html$', views.show_html_materials),
) )