2014-04-02 08:46:34 +08:00
|
|
|
import warnings
|
|
|
|
|
2015-01-28 20:35:27 +08:00
|
|
|
from django.conf.urls import include, patterns, url
|
2015-06-23 01:54:35 +08:00
|
|
|
from django.utils.deprecation import RemovedInDjango110Warning
|
2011-10-14 05:34:56 +08:00
|
|
|
|
|
|
|
from .namespace_urls import URLObject
|
|
|
|
from .views import view_class_instance
|
|
|
|
|
2009-07-17 00:16:13 +08:00
|
|
|
testobj3 = URLObject('testapp', 'test-ns3')
|
2015-06-03 23:11:08 +08:00
|
|
|
testobj4 = URLObject('testapp', 'test-ns4')
|
2009-07-17 00:16:13 +08:00
|
|
|
|
2015-06-23 01:54:35 +08:00
|
|
|
# test deprecated patterns() function. convert to list of urls() in Django 1.10
|
2014-11-27 05:21:29 +08:00
|
|
|
with warnings.catch_warnings():
|
2015-06-23 01:54:35 +08:00
|
|
|
warnings.filterwarnings('ignore', category=RemovedInDjango110Warning)
|
2014-04-02 08:46:34 +08:00
|
|
|
|
|
|
|
urlpatterns = patterns('urlpatterns_reverse.views',
|
|
|
|
url(r'^normal/$', 'empty_view', name='inc-normal-view'),
|
2014-04-15 02:12:44 +08:00
|
|
|
url(r'^normal/(?P<arg1>[0-9]+)/(?P<arg2>[0-9]+)/$', 'empty_view', name='inc-normal-view'),
|
2009-07-17 00:16:13 +08:00
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
url(r'^\+\\\$\*/$', 'empty_view', name='inc-special-view'),
|
2011-11-07 09:09:13 +08:00
|
|
|
|
2014-04-15 02:12:44 +08:00
|
|
|
url(r'^mixed_args/([0-9]+)/(?P<arg2>[0-9]+)/$', 'empty_view', name='inc-mixed-args'),
|
|
|
|
url(r'^no_kwargs/([0-9]+)/([0-9]+)/$', 'empty_view', name='inc-no-kwargs'),
|
2010-08-05 15:09:47 +08:00
|
|
|
|
2014-04-15 02:12:44 +08:00
|
|
|
url(r'^view_class/(?P<arg1>[0-9]+)/(?P<arg2>[0-9]+)/$', view_class_instance, name='inc-view-class'),
|
2010-08-06 21:47:56 +08:00
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
(r'^test3/', include(testobj3.urls)),
|
2015-06-03 23:11:08 +08:00
|
|
|
(r'^test4/', include(testobj4.urls)),
|
2014-04-02 08:46:34 +08:00
|
|
|
(r'^ns-included3/', include('urlpatterns_reverse.included_urls', namespace='inc-ns3')),
|
|
|
|
(r'^ns-included4/', include('urlpatterns_reverse.namespace_urls', namespace='inc-ns4')),
|
|
|
|
)
|