Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
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
cpython
Commits
fe975a23
Kaydet (Commit)
fe975a23
authored
Ara 26, 2014
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge 3.4 (#23112)
üst
f2ad173e
94cb7a24
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
server.py
Lib/http/server.py
+6
-2
test_httpservers.py
Lib/test/test_httpservers.py
+6
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/http/server.py
Dosyayı görüntüle @
fe975a23
...
...
@@ -648,10 +648,14 @@ class SimpleHTTPRequestHandler(BaseHTTPRequestHandler):
path
=
self
.
translate_path
(
self
.
path
)
f
=
None
if
os
.
path
.
isdir
(
path
):
if
not
self
.
path
.
endswith
(
'/'
):
parts
=
urllib
.
parse
.
urlsplit
(
self
.
path
)
if
not
parts
.
path
.
endswith
(
'/'
):
# redirect browser - doing basically what apache does
self
.
send_response
(
HTTPStatus
.
MOVED_PERMANENTLY
)
self
.
send_header
(
"Location"
,
self
.
path
+
"/"
)
new_parts
=
(
parts
[
0
],
parts
[
1
],
parts
[
2
]
+
'/'
,
parts
[
3
],
parts
[
4
])
new_url
=
urllib
.
parse
.
urlunsplit
(
new_parts
)
self
.
send_header
(
"Location"
,
new_url
)
self
.
end_headers
()
return
None
for
index
in
"index.html"
,
"index.htm"
:
...
...
Lib/test/test_httpservers.py
Dosyayı görüntüle @
fe975a23
...
...
@@ -305,6 +305,12 @@ class SimpleHTTPServerTestCase(BaseTestCase):
self
.
check_status_and_reason
(
response
,
200
)
response
=
self
.
request
(
self
.
tempdir_name
)
self
.
check_status_and_reason
(
response
,
301
)
response
=
self
.
request
(
self
.
tempdir_name
+
'/?hi=2'
)
self
.
check_status_and_reason
(
response
,
200
)
response
=
self
.
request
(
self
.
tempdir_name
+
'?hi=1'
)
self
.
check_status_and_reason
(
response
,
301
)
self
.
assertEqual
(
response
.
getheader
(
"Location"
),
self
.
tempdir_name
+
"/?hi=1"
)
response
=
self
.
request
(
'/ThisDoesNotExist'
)
self
.
check_status_and_reason
(
response
,
404
)
response
=
self
.
request
(
'/'
+
'ThisDoesNotExist'
+
'/'
)
...
...
Misc/NEWS
Dosyayı görüntüle @
fe975a23
...
...
@@ -196,6 +196,9 @@ Core and Builtins
Library
-------
-
Issue
#
23112
:
Fix
SimpleHTTPServer
to
correctly
carry
the
query
string
and
fragment
when
it
redirects
to
add
a
trailing
slash
.
-
Issue
#
21793
:
Added
http
.
HTTPStatus
enums
(
i
.
e
.
HTTPStatus
.
OK
,
HTTPStatus
.
NOT_FOUND
).
Patch
by
Demian
Brecht
.
...
...
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