mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-24 18:00:24 +00:00
12 lines
289 B
Python
12 lines
289 B
Python
|
|
from UrlData import UrlData
|
||
|
|
|
||
|
|
class JavascriptUrlData(UrlData):
|
||
|
|
"Url link with javascript scheme"
|
||
|
|
|
||
|
|
def check(self, config):
|
||
|
|
self.setWarning("Javascript url ignored")
|
||
|
|
self.logMe(config)
|
||
|
|
|
||
|
|
def __str__(self):
|
||
|
|
return "Javascript link\n"+UrlData.__str__(self)
|