Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
49f97b64
Kaydet (Commit)
49f97b64
authored
Tem 31, 2018
tarafından
Adam Johnson
Kaydeden (comit)
Tim Graham
Tem 31, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Refs #24733 -- Documented arguments for custom error views.
üst
b4fa94ae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
urls.txt
docs/ref/urls.txt
+6
-6
No files found.
docs/ref/urls.txt
Dosyayı görüntüle @
49f97b64
...
...
@@ -154,8 +154,8 @@ that should be called if the HTTP client has sent a request that caused an error
condition and a response with a status code of 400.
By default, this is :func:`django.views.defaults.bad_request`. If you
implement a custom view, be sure it
returns an
:class:`~django.http.HttpResponseBadRequest`.
implement a custom view, be sure it
accepts ``request`` and ``exception``
arguments and returns an
:class:`~django.http.HttpResponseBadRequest`.
``handler403``
==============
...
...
@@ -167,8 +167,8 @@ that should be called if the user doesn't have the permissions required to
access a resource.
By default, this is :func:`django.views.defaults.permission_denied`. If you
implement a custom view, be sure it
returns an
:class:`~django.http.HttpResponseForbidden`.
implement a custom view, be sure it
accepts ``request`` and ``exception``
arguments and returns an
:class:`~django.http.HttpResponseForbidden`.
``handler404``
==============
...
...
@@ -179,8 +179,8 @@ A callable, or a string representing the full Python import path to the view
that should be called if none of the URL patterns match.
By default, this is :func:`django.views.defaults.page_not_found`. If you
implement a custom view, be sure it
returns an
:class:`~django.http.HttpResponseNotFound`.
implement a custom view, be sure it
accepts ``request`` and ``exception``
arguments and returns an
:class:`~django.http.HttpResponseNotFound`.
``handler500``
==============
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment