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
af9d10aa
Kaydet (Commit)
af9d10aa
authored
Eyl 13, 2010
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
logging: enhanced HTTPHandler
üst
1b5646ac
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
4 deletions
+16
-4
handlers.py
Lib/logging/handlers.py
+14
-4
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/logging/handlers.py
Dosyayı görüntüle @
af9d10aa
...
...
@@ -977,7 +977,7 @@ class HTTPHandler(logging.Handler):
A class which sends records to a Web server, using either GET or
POST semantics.
"""
def
__init__
(
self
,
host
,
url
,
method
=
"GET"
):
def
__init__
(
self
,
host
,
url
,
method
=
"GET"
,
secure
=
False
,
credentials
=
None
):
"""
Initialize the instance with the host, the request URL, and the method
("GET" or "POST")
...
...
@@ -989,12 +989,14 @@ class HTTPHandler(logging.Handler):
self
.
host
=
host
self
.
url
=
url
self
.
method
=
method
self
.
secure
=
secure
self
.
credentials
=
credentials
def
mapLogRecord
(
self
,
record
):
"""
Default implementation of mapping the log record into a dict
that is sent as the CGI data. Overwrite in your class.
Contributed by Franz
Glasner.
Contributed by Franz Glasner.
"""
return
record
.
__dict__
...
...
@@ -1007,7 +1009,10 @@ class HTTPHandler(logging.Handler):
try
:
import
http.client
,
urllib
.
parse
host
=
self
.
host
h
=
http
.
client
.
HTTP
(
host
)
if
self
.
secure
:
h
=
http
.
client
.
HTTPSConnection
(
host
)
else
:
h
=
http
.
client
.
HTTPConnection
(
host
)
url
=
self
.
url
data
=
urllib
.
parse
.
urlencode
(
self
.
mapLogRecord
(
record
))
if
self
.
method
==
"GET"
:
...
...
@@ -1027,8 +1032,13 @@ class HTTPHandler(logging.Handler):
h
.
putheader
(
"Content-type"
,
"application/x-www-form-urlencoded"
)
h
.
putheader
(
"Content-length"
,
str
(
len
(
data
)))
if
self
.
credentials
:
import
base64
s
=
(
'u
%
s:
%
s'
%
self
.
credentials
)
.
encode
(
'utf-8'
)
s
=
'Basic '
+
base64
.
b64encode
(
s
)
.
strip
()
h
.
putheader
(
'Authorization'
,
s
)
h
.
endheaders
(
data
if
self
.
method
==
"POST"
else
None
)
h
.
getre
ply
()
#can't do anything with the result
h
.
getre
sponse
()
#can't do anything with the result
except
(
KeyboardInterrupt
,
SystemExit
):
raise
except
:
...
...
Misc/NEWS
Dosyayı görüntüle @
af9d10aa
...
...
@@ -40,6 +40,8 @@ Core and Builtins
Library
-------
- logging: Enhanced HTTPHandler with secure and credentials initializers.
- Issue #767645: Set os.path.supports_unicode_filenames to True on Mac OS X
(macpath module).
...
...
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