Added new setting to the /cookies page which enables always showing full document text instead of showing beginning of the document. This fixes issue #551. - Legacy-Id: 2680 Note: SVN reference [2676] has been migrated to Git commit f7a33efea768e70c1865c3bbd084cf82cd512c78
15 lines
494 B
Python
15 lines
494 B
Python
# Copyright The IETF Trust 2010, All Rights Reserved
|
|
|
|
from django.conf.urls.defaults import patterns
|
|
from ietf.cookies import views
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^$', views.settings),
|
|
(r'^new_enough/(?P<days>.*)$', views.new_enough),
|
|
(r'^new_enough/', views.new_enough),
|
|
(r'^expires_soon/(?P<days>.*)$', views.expires_soon),
|
|
(r'^expires_soon/', views.expires_soon),
|
|
(r'^full_draft/(?P<enabled>.*)$', views.full_draft),
|
|
(r'^full_draft/', views.full_draft),
|
|
)
|