mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-28 11:40:28 +00:00
updated
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@893 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
ef661fe562
commit
6f1f665b1c
3 changed files with 13 additions and 1 deletions
|
|
@ -1,3 +1,10 @@
|
|||
1.8.16
|
||||
* also look at id attributes on anchor check
|
||||
(Closes SF Bug #741131)
|
||||
Changed files: linkcheck/{linkparser,UrlData}.py
|
||||
* minor parser cleanups
|
||||
Changed files: linkcheck/parser/*
|
||||
|
||||
1.8.15
|
||||
* Fix compile errors with C variable declarations in HTML parser.
|
||||
Thanks to Fazal Majid <fazal@majid.fm>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
test_misc
|
||||
url file:///home/calvin/projects/linkchecker/test/html/misc.html
|
||||
valid
|
||||
url file:///home/calvin/projects/linkchecker/test/html/anchor.html
|
||||
valid
|
||||
url http://localhost/
|
||||
valid
|
||||
url hutzli:nixgutt
|
||||
|
|
@ -16,3 +18,6 @@ valid
|
|||
url misc.html
|
||||
cached
|
||||
valid
|
||||
url #myid
|
||||
name Bla
|
||||
valid
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ config["anchors"] = 1
|
|||
config["verbose"] = 1
|
||||
config.disableThreading()
|
||||
htmldir = "test/html"
|
||||
for file in ('misc.html',):
|
||||
for file in ('misc.html','anchor.html'):
|
||||
url = os.path.join(htmldir, file)
|
||||
config.appendUrl(linkcheck.UrlData.GetUrlDataFrom(url, 0, config))
|
||||
linkcheck.checkUrls(config)
|
||||
|
|
|
|||
Loading…
Reference in a new issue