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
a5bd7f2c
Kaydet (Commit)
a5bd7f2c
authored
Kas 23, 2014
tarafından
Berker Peksag
Kaydeden (comit)
Tim Graham
Kas 24, 2014
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #13694 -- Made SafeMIMEText's constructor compatible with MIMEText.
üst
3199ea8e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
8 deletions
+11
-8
message.py
django/core/mail/message.py
+11
-8
No files found.
django/core/mail/message.py
Dosyayı görüntüle @
a5bd7f2c
...
...
@@ -166,24 +166,27 @@ class SafeMIMEMessage(MIMEMixin, MIMEMessage):
class
SafeMIMEText
(
MIMEMixin
,
MIMEText
):
def
__init__
(
self
,
text
,
subtype
,
charset
):
self
.
encoding
=
charset
if
charset
==
'utf-8'
:
def
__init__
(
self
,
_text
,
_subtype
=
'plain'
,
_charset
=
None
):
self
.
encoding
=
_
charset
if
_
charset
==
'utf-8'
:
# Unfortunately, Python < 3.5 doesn't support setting a Charset instance
# as MIMEText init parameter (http://bugs.python.org/issue16324).
# We do it manually and trigger re-encoding of the payload.
MIMEText
.
__init__
(
self
,
text
,
subtype
,
None
)
MIMEText
.
__init__
(
self
,
_text
,
_
subtype
,
None
)
del
self
[
'Content-Transfer-Encoding'
]
# Workaround for versions without http://bugs.python.org/issue19063
if
(
3
,
2
)
<
sys
.
version_info
<
(
3
,
3
,
4
):
payload
=
text
.
encode
(
utf8_charset
.
output_charset
)
payload
=
_
text
.
encode
(
utf8_charset
.
output_charset
)
self
.
_payload
=
payload
.
decode
(
'ascii'
,
'surrogateescape'
)
self
.
set_charset
(
utf8_charset
)
else
:
self
.
set_payload
(
text
,
utf8_charset
)
self
.
replace_header
(
'Content-Type'
,
'text/
%
s; charset="
%
s"'
%
(
subtype
,
charset
))
self
.
set_payload
(
_text
,
utf8_charset
)
self
.
replace_header
(
'Content-Type'
,
'text/
%
s; charset="
%
s"'
%
(
_subtype
,
_charset
))
elif
_charset
is
None
:
# the default value of '_charset' is 'us-ascii' on Python 2
MIMEText
.
__init__
(
self
,
_text
,
_subtype
)
else
:
MIMEText
.
__init__
(
self
,
text
,
subtype
,
charset
)
MIMEText
.
__init__
(
self
,
_text
,
_subtype
,
_
charset
)
def
__setitem__
(
self
,
name
,
val
):
name
,
val
=
forbid_multi_line_headers
(
name
,
val
,
self
.
encoding
)
...
...
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