-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #425 from openzim/double_slash_main
Stop checking main entry processability when it is already found
- Loading branch information
Showing
6 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<title>Test website</title> | ||
<link rel="apple-touch-icon" sizes="180x180" href="./icons/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="./icons/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="./icons/favicon-16x16.png"> | ||
<link rel="manifest" href="./icons/site.webmanifest"> | ||
<link rel="shortcut icon" href="./icons/favicon.ico"> | ||
</head> | ||
|
||
<body> | ||
|
||
<h2>Double slash in URLs</h2> | ||
|
||
<a href=".//">.//</a> | ||
<a href="./double-slash//test1">./double-slash//test1</a> | ||
<a href="./double-slash/test1">./double-slash/test1</a> | ||
<a href="./double-slash/test2">./double-slash/test2</a> | ||
<a href="./double-slash//test2">./double-slash//test2</a> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters