git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@893 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2003-05-21 22:31:02 +00:00
parent ef661fe562
commit 6f1f665b1c
3 changed files with 13 additions and 1 deletions

View file

@ -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>

View file

@ -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

View file

@ -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)