11 lines
323 B
Python
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),
|
|
)
|
|
|