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
6133ec65
Kaydet (Commit)
6133ec65
authored
Şub 01, 1997
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Process <img> and <frame> tags. Don't bother skipping second href.
üst
de99d310
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
webchecker.py
Tools/webchecker/webchecker.py
+12
-3
No files found.
Tools/webchecker/webchecker.py
Dosyayı görüntüle @
6133ec65
...
...
@@ -564,11 +564,21 @@ class MyHTMLParser(sgmllib.SGMLParser):
sgmllib
.
SGMLParser
.
__init__
(
self
)
def
start_a
(
self
,
attributes
):
self
.
link_attr
(
attributes
,
'href'
)
def
end_a
(
self
):
pass
def
do_img
(
self
,
attributes
):
self
.
link_attr
(
attributes
,
'src'
,
'lowsrc'
)
def
do_frame
(
self
,
attributes
):
self
.
link_attr
(
attributes
,
'src'
)
def
link_attr
(
self
,
attributes
,
*
args
):
for
name
,
value
in
attributes
:
if
name
==
'href'
:
if
name
in
args
:
if
value
:
value
=
string
.
strip
(
value
)
if
value
:
self
.
links
[
value
]
=
None
return
# match only first href
def
do_base
(
self
,
attributes
):
for
name
,
value
in
attributes
:
...
...
@@ -578,7 +588,6 @@ class MyHTMLParser(sgmllib.SGMLParser):
if
verbose
>
1
:
print
" Base"
,
value
self
.
base
=
value
return
# match only first href
def
getlinks
(
self
):
return
self
.
links
.
keys
()
...
...
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