datatracker/ietf/meeting/urls.py
Henrik Levkowetz cd030d3b43 Adding copyright notices to all python files
- Legacy-Id: 716
2007-06-27 21:16:34 +00:00

11 lines
323 B
Python

# Copyright The IETF Trust 2007, All Rights Reserved
from django.conf.urls.defaults import patterns
from ietf.meeting import views
urlpatterns = patterns('',
(r'^(?P<meeting_num>\d+)/agenda.(?P<html_or_txt>\S+)$', views.show_html_agenda),
(r'^(?P<meeting_num>\d+)/materials.html$', views.show_html_materials),
)