From e881ae235f369afea7f276f091eabe01ddb79a1b Mon Sep 17 00:00:00 2001 From: manchandavishal Date: Fri, 29 Apr 2022 18:34:53 +0530 Subject: [PATCH] Address RemovedInDjango40Warning In Django 3.1, django.conf.urls.url() is deprecated in favor of django.urls.re_path(). For more info see [1] These were already replaced in Horizon repo by [2]. [1] https://docs.djangoproject.com/en/4.0/releases/3.1/#id2 [2] https://review.opendev.org/c/openstack/horizon/+/827093 Change-Id: I4e59574223b3df314d9e9a331ad33664720b3ac3 --- solumdashboard/applications/urls.py | 24 ++++++++++++------------ solumdashboard/assemblies/urls.py | 9 +++++---- solumdashboard/languagepacks/urls.py | 12 ++++++------ 3 files changed, 23 insertions(+), 22 deletions(-) diff --git a/solumdashboard/applications/urls.py b/solumdashboard/applications/urls.py index 170b4a6..dff5364 100644 --- a/solumdashboard/applications/urls.py +++ b/solumdashboard/applications/urls.py @@ -13,21 +13,21 @@ # See the License for the specific language governing permissions and # limitations under the License. -from django.conf.urls import url +from django.urls import re_path import solumdashboard.applications.views as views urlpatterns = [ - url(r'^$', views.IndexView.as_view(), name='index'), - url(r'^$', views.IndexView.as_view(), name='applications'), - url(r'^create$', views.CreateView.as_view(), name='create'), - url(r'^launch/(?P[^/]+)$', views.LaunchView.as_view(), - name='launch'), - url(r'^detail/(?P[^/]+)$', - views.DetailView.as_view(), name='detail'), - url(r'^scale/(?P[^/]+)$', views.ScaleView.as_view(), - name='scale'), - url(r'^update/(?P[^/]+)$', views.UpdateView.as_view(), - name='update') + re_path(r'^$', views.IndexView.as_view(), name='index'), + re_path(r'^$', views.IndexView.as_view(), name='applications'), + re_path(r'^create$', views.CreateView.as_view(), name='create'), + re_path(r'^launch/(?P[^/]+)$', views.LaunchView.as_view(), + name='launch'), + re_path(r'^detail/(?P[^/]+)$', + views.DetailView.as_view(), name='detail'), + re_path(r'^scale/(?P[^/]+)$', views.ScaleView.as_view(), + name='scale'), + re_path(r'^update/(?P[^/]+)$', views.UpdateView.as_view(), + name='update') ] diff --git a/solumdashboard/assemblies/urls.py b/solumdashboard/assemblies/urls.py index 9a4ca92..3a6da7b 100644 --- a/solumdashboard/assemblies/urls.py +++ b/solumdashboard/assemblies/urls.py @@ -13,13 +13,14 @@ # See the License for the specific language governing permissions and # limitations under the License. -from django.conf.urls import url +from django.urls import re_path import solumdashboard.assemblies.views as views urlpatterns = [ - url(r'^$', views.IndexView.as_view(), name='index'), - url(r'^$', views.IndexView.as_view(), name='assemblies'), - url(r'^(?P[^/]+)$', views.DetailView.as_view(), name='detail') + re_path(r'^$', views.IndexView.as_view(), name='index'), + re_path(r'^$', views.IndexView.as_view(), name='assemblies'), + re_path(r'^(?P[^/]+)$', views.DetailView.as_view(), + name='detail') ] diff --git a/solumdashboard/languagepacks/urls.py b/solumdashboard/languagepacks/urls.py index 46733b9..8ae2e2e 100644 --- a/solumdashboard/languagepacks/urls.py +++ b/solumdashboard/languagepacks/urls.py @@ -13,14 +13,14 @@ # See the License for the specific language governing permissions and # limitations under the License. -from django.conf.urls import url +from django.urls import re_path from solumdashboard.languagepacks import views urlpatterns = [ - url(r'^$', views.IndexView.as_view(), name='index'), - url(r'^$', views.IndexView.as_view(), name='languagepacks'), - url(r'^detail/(?P[^/]+)$', - views.DetailView.as_view(), name='detail'), - url(r'^create$', views.CreateView.as_view(), name='create') + re_path(r'^$', views.IndexView.as_view(), name='index'), + re_path(r'^$', views.IndexView.as_view(), name='languagepacks'), + re_path(r'^detail/(?P[^/]+)$', + views.DetailView.as_view(), name='detail'), + re_path(r'^create$', views.CreateView.as_view(), name='create') ]