mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-08 14:44:46 +00:00
Added schemeless URL testing
This commit is contained in:
parent
e081d42ed7
commit
2f56eede1f
3 changed files with 7 additions and 2 deletions
2
TODO.txt
2
TODO.txt
|
|
@ -1,7 +1,5 @@
|
||||||
- [CHECKING] SF #2784996
|
- [CHECKING] SF #2784996
|
||||||
Incorrect URL fragment handling
|
Incorrect URL fragment handling
|
||||||
- [TEST] Test protocol-independent links like
|
|
||||||
<img src="//example.com/logo.png"/>
|
|
||||||
- [CMDLINE] SF #2770077
|
- [CMDLINE] SF #2770077
|
||||||
Titles of bookmarks with umlauts are not printed correctly.
|
Titles of bookmarks with umlauts are not printed correctly.
|
||||||
- [GUI] Add more context menu actions:
|
- [GUI] Add more context menu actions:
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ Just some HTTP links
|
||||||
<a href="http://localhost:8001/">ok</a>
|
<a href="http://localhost:8001/">ok</a>
|
||||||
<a href="http:/localhost:8001/">one slash</a>
|
<a href="http:/localhost:8001/">one slash</a>
|
||||||
<a href="http:localhost:8001/">no slash</a>
|
<a href="http:localhost:8001/">no slash</a>
|
||||||
|
<a href="//localhost:8001/">no scheme</a>
|
||||||
<a href="http://">no url</a>
|
<a href="http://">no url</a>
|
||||||
<a href="http:/">no url, one slash</a>
|
<a href="http:/">no url, one slash</a>
|
||||||
<a href="http:">no url, no slash</a>
|
<a href="http:">no url, no slash</a>
|
||||||
|
|
|
||||||
|
|
@ -56,6 +56,12 @@ name no slash
|
||||||
warning Base URL is not properly normed. Normed URL is http:///localhost%%3A8001/.
|
warning Base URL is not properly normed. Normed URL is http:///localhost%%3A8001/.
|
||||||
error
|
error
|
||||||
|
|
||||||
|
url //localhost:8001/ (cached)
|
||||||
|
cache key http://localhost:8001/
|
||||||
|
real url http://localhost:8001/
|
||||||
|
name no scheme
|
||||||
|
valid
|
||||||
|
|
||||||
url http://
|
url http://
|
||||||
cache key http://
|
cache key http://
|
||||||
real url http://
|
real url http://
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue