
This patch set makes manila-ui code work with Django 1.9: - replaces deprecated django.utils.unittest with unittest - removes {% load url from future %} lines - replaces old-style urlpatterns with new ones Also, since Django < 1.7 is not supported any more by upstream, this patch removes Django 1.4 from tests and replaces it with Django 1.9 (while it's not in upstream yet) and Django 1.10. Change-Id: I28f72ba799aeb2f583db00515dceef41c68170af Closes-Bug: #1598169
51 lines
2.2 KiB
Python
51 lines
2.2 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from django.conf.urls import url # noqa
|
|
|
|
from manila_ui.dashboards.admin.shares import views
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.IndexView.as_view(), name='index'),
|
|
url(r'^(?P<share_id>[^/]+)/$', views.DetailView.as_view(), name='detail'),
|
|
url(r'^snapshots/(?P<snapshot_id>[^/]+)$',
|
|
views.SnapshotDetailView.as_view(),
|
|
name='snapshot-detail'),
|
|
url(r'^share_networks/(?P<share_network_id>[^/]+)$',
|
|
views.ShareNetworkDetailView.as_view(),
|
|
name='share_network_detail'),
|
|
url(r'^security_services/(?P<sec_service_id>[^/]+)$',
|
|
views.SecurityServiceDetailView.as_view(),
|
|
name='security_service_detail'),
|
|
url(r'^create_type$', views.CreateShareTypeView.as_view(),
|
|
name='create_type'),
|
|
url(r'^manage_share_type_access/(?P<share_type_id>[^/]+)$',
|
|
views.ManageShareTypeAccessView.as_view(),
|
|
name='manage_share_type_access'),
|
|
url(r'^update_type/(?P<share_type_id>[^/]+)/extra_specs$',
|
|
views.UpdateShareTypeView.as_view(),
|
|
name='update_type'),
|
|
url(r'^share_servers/(?P<share_server_id>[^/]+)$',
|
|
views.ShareServDetail.as_view(),
|
|
name='share_server_detail'),
|
|
url(r'^\?tab=share_tabs__share_servers_tab$', views.IndexView.as_view(),
|
|
name='share_servers_tab'),
|
|
url(r'^share_instances/(?P<share_instance_id>[^/]+)$',
|
|
views.ShareInstanceDetailView.as_view(),
|
|
name='share_instance_detail'),
|
|
url(r'^\?tab=share_tabs__share_instances_tab$', views.IndexView.as_view(),
|
|
name='share_instances_tab'),
|
|
url(r'^manage$', views.ManageShareView.as_view(), name='manage'),
|
|
url(r'^unmanage/(?P<share_id>[^/]+)$', views.UnmanageShareView.as_view(),
|
|
name='unmanage'),
|
|
]
|