From 819d8352c75cbf6a70af3225f0d7f41e71c09927 Mon Sep 17 00:00:00 2001 From: Michael Lee Date: Mon, 18 Jun 2007 19:14:26 +0000 Subject: [PATCH] meeting/urls.py has been restored with .html and .txt url - Legacy-Id: 502 --- ietf/meeting/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/meeting/urls.py b/ietf/meeting/urls.py index 032ceec29..9206b1b4c 100644 --- a/ietf/meeting/urls.py +++ b/ietf/meeting/urls.py @@ -2,7 +2,7 @@ from django.conf.urls.defaults import patterns from ietf.meeting import views urlpatterns = patterns('', - (r'^(?P\d+)/agenda-(?P\S+)/$', views.show_html_agenda), - (r'^(?P\d+)/materials/$', views.show_html_materials), + (r'^(?P\d+)/agenda.(?P\S+)$', views.show_html_agenda), + (r'^(?P\d+)/materials.html$', views.show_html_materials), )