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
adcf8233
Kaydet (Commit)
adcf8233
authored
Eki 01, 2015
tarafından
Kaleb Elwert
Kaydeden (comit)
Tim Graham
Eki 02, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #25490 -- Made the logout() view send "no-cache" headers.
üst
37a5a363
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
0 deletions
+13
-0
views.py
django/contrib/auth/views.py
+1
-0
1.10.txt
docs/releases/1.10.txt
+4
-0
test_views.py
tests/auth_tests/test_views.py
+8
-0
No files found.
django/contrib/auth/views.py
Dosyayı görüntüle @
adcf8233
...
...
@@ -92,6 +92,7 @@ def login(request, template_name='registration/login.html',
@deprecate_current_app
@never_cache
def
logout
(
request
,
next_page
=
None
,
template_name
=
'registration/logged_out.html'
,
redirect_field_name
=
REDIRECT_FIELD_NAME
,
...
...
docs/releases/1.10.txt
Dosyayı görüntüle @
adcf8233
...
...
@@ -47,6 +47,10 @@ Minor features
subclassed ``django.contrib.auth.hashers.PBKDF2PasswordHasher`` to change the
default value.
* The :func:`~django.contrib.auth.views.logout` view sends "no-cache" headers
to prevent an issue where Safari caches redirects and prevents a user from
being able to log out.
:mod:`django.contrib.contenttypes`
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
...
tests/auth_tests/test_views.py
Dosyayı görüntüle @
adcf8233
...
...
@@ -770,6 +770,14 @@ class LogoutTest(AuthViewsTestCase):
response
=
self
.
client
.
get
(
'/logout/'
)
self
.
assertIn
(
'site'
,
response
.
context
)
def
test_logout_doesnt_cache
(
self
):
"""
The logout() view should send "no-cache" headers for reasons described
in #25490.
"""
response
=
self
.
client
.
get
(
'/logout/'
)
self
.
assertIn
(
'no-store'
,
response
[
'Cache-Control'
])
def
test_logout_with_overridden_redirect_url
(
self
):
# Bug 11223
self
.
login
()
...
...
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