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
453534a8
Kaydet (Commit)
453534a8
authored
Eyl 22, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
added verbose option; added ismap/align/width/height to handle_image args
üst
3c0bfd0d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
htmllib.py
Lib/htmllib.py
+12
-4
No files found.
Lib/htmllib.py
Dosyayı görüntüle @
453534a8
...
...
@@ -14,8 +14,8 @@ from formatter import AS_IS
class
HTMLParser
(
SGMLParser
):
def
__init__
(
self
,
formatter
):
SGMLParser
.
__init__
(
self
)
def
__init__
(
self
,
formatter
,
verbose
=
0
):
SGMLParser
.
__init__
(
self
,
verbose
)
self
.
formatter
=
formatter
self
.
savedata
=
None
self
.
isindex
=
0
...
...
@@ -66,7 +66,7 @@ class HTMLParser(SGMLParser):
# --- Hook for images; should probably be overridden
def
handle_image
(
self
,
src
,
alt
):
def
handle_image
(
self
,
src
,
alt
,
*
args
):
self
.
handle_data
(
alt
)
# --------- Top level elememts
...
...
@@ -348,6 +348,8 @@ class HTMLParser(SGMLParser):
alt
=
'(image)'
ismap
=
''
src
=
''
width
=
0
height
=
0
for
attrname
,
value
in
attrs
:
if
attrname
==
'align'
:
align
=
value
...
...
@@ -357,7 +359,13 @@ class HTMLParser(SGMLParser):
ismap
=
value
if
attrname
==
'src'
:
src
=
value
self
.
handle_image
(
src
,
alt
)
if
attrname
==
'width'
:
try
:
width
=
string
.
atoi
(
value
)
except
:
pass
if
attrname
==
'height'
:
try
:
height
=
string
.
atoi
(
value
)
except
:
pass
self
.
handle_image
(
src
,
alt
,
ismap
,
align
,
width
,
height
)
# --- Really Old Unofficial Deprecated Stuff
...
...
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