in order to autogenerate dotted path url pattern names. Updated a number of url reverses to use dotted path, and removed explicit url pattern names as needed. Changed some imports to prevent import of ietf.urls before django initialization was complete. Changed 3 cases of form classes being curried to functions; django 1.10 didn't accept that. Started converting old-style middleware classes to new-style middleware functions (incomplete). Tweaked a nomcom decorator to preserve function names and attributes, like a good decorator should. Replaced the removed django templatetag 'removetags' with our own version which uses bleach, and does sanitizing in addition to removing explicitly mentionied html tags. Rewrote the filename argument handling in a management command which had broken with the upgrade. - Legacy-Id: 12818
18 lines
991 B
Python
18 lines
991 B
Python
|
|
from ietf.doc import views_status_change, views_doc
|
|
from ietf.utils.urls import url
|
|
|
|
urlpatterns = [
|
|
url(r'^state/$', views_status_change.change_state),
|
|
url(r'^submit/$', views_status_change.submit, name='status_change_submit'),
|
|
url(r'^ad/$', views_status_change.edit_ad, name='status_change_ad'),
|
|
url(r'^title/$', views_status_change.edit_title, name='status_change_title'),
|
|
url(r'^approve/$', views_status_change.approve, name='status_change_approve'),
|
|
url(r'^relations/$', views_status_change.edit_relations, name='status_change_relations'),
|
|
url(r'^last-call/$', views_status_change.last_call, name='status_change_last_call'),
|
|
url(r'^telechat/$', views_doc.telechat_date, name='status_change_telechat_date'),
|
|
url(r'^notices/$', views_doc.edit_notify, name='status_change_notices'),
|
|
]
|
|
|
|
|