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
This commit is contained in:
manchandavishal 2022-04-29 18:34:53 +05:30
parent 0830c4f4b0
commit e881ae235f
3 changed files with 23 additions and 22 deletions

View File

@ -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<application_id>[^/]+)$', views.LaunchView.as_view(),
name='launch'),
url(r'^detail/(?P<application_id>[^/]+)$',
views.DetailView.as_view(), name='detail'),
url(r'^scale/(?P<application_id>[^/]+)$', views.ScaleView.as_view(),
name='scale'),
url(r'^update/(?P<application_id>[^/]+)$', 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<application_id>[^/]+)$', views.LaunchView.as_view(),
name='launch'),
re_path(r'^detail/(?P<application_id>[^/]+)$',
views.DetailView.as_view(), name='detail'),
re_path(r'^scale/(?P<application_id>[^/]+)$', views.ScaleView.as_view(),
name='scale'),
re_path(r'^update/(?P<application_id>[^/]+)$', views.UpdateView.as_view(),
name='update')
]

View File

@ -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<assembly_id>[^/]+)$', 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<assembly_id>[^/]+)$', views.DetailView.as_view(),
name='detail')
]

View File

@ -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<languagepack_id>[^/]+)$',
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<languagepack_id>[^/]+)$',
views.DetailView.as_view(), name='detail'),
re_path(r'^create$', views.CreateView.as_view(), name='create')
]