Skip to content
Snippets Groups Projects
Commit a315bee7 authored by nimrod's avatar nimrod
Browse files

Stricter return code checks.

parent 9463e4f4
No related branches found
No related tags found
No related merge requests found
from utils import website_handler
URLS = [
{"url": "http://git.shore.co.il/", "codes": [301, 302]},
{"url": "https://git.shore.co.il/", "codes": [301, 302]},
{"url": "http://git.shore.co.il/", "codes": [301]},
{"url": "https://git.shore.co.il/", "codes": [302]},
{"url": "https://git.shore.co.il/explore/"},
]
......
from utils import website_handler
URLS = [
{"url": "http://kodi.shore.co.il/", "codes": [301, 302]},
{"url": "http://kodi.shore.co.il/", "codes": [301]},
{"url": "https://kodi.shore.co.il/", "codes": [401]},
]
......
from utils import website_handler
URLS = [
{"url": "http://nextcloud.shore.co.il/", "codes": [301, 302]},
{"url": "https://nextcloud.shore.co.il/", "codes": [301, 302]},
{"url": "http://nextcloud.shore.co.il/", "codes": [301]},
{"url": "https://nextcloud.shore.co.il/", "codes": [302]},
{"url": "https://nextcloud.shore.co.il/login"},
]
......
from utils import website_handler
URLS = [
{"url": "http://notify.shore.co.il/", "codes": [301, 302]},
{"url": "http://notify.shore.co.il/", "codes": [301]},
{"url": "https://notify.shore.co.il/ping"},
]
......
from utils import website_handler
URLS = [
{"url": "http://registry.shore.co.il/", "codes": [301, 302]},
{"url": "http://registry.shore.co.il/", "codes": [301]},
{"url": "https://registry.shore.co.il/"},
{"url": "https://registry.shore.co.il/v2/_catalog"},
]
......
from utils import website_handler
URLS = [
{"url": "http://transmission.shore.co.il/", "codes": [301, 302]},
{"url": "http://transmission.shore.co.il/", "codes": [301]},
{"url": "https://transmission.shore.co.il/", "codes": [401]},
]
......
from utils import website_handler
URLS = [
{"url": "http://vouch.shore.co.il/", "codes": [301, 302]},
{"url": "http://vouch.shore.co.il/", "codes": [301]},
{"url": "https://vouch.shore.co.il/validate", "codes": [401]},
]
......
from utils import website_handler
URLS = [
{"url": "http://shore.co.il/", "codes": [301, 302]},
{"url": "http://www.shore.co.il/", "codes": [301, 302]},
{"url": "https://shore.co.il/", "codes": [301, 302]},
{"url": "http://shore.co.il/", "codes": [301]},
{"url": "http://www.shore.co.il/", "codes": [301]},
{"url": "https://shore.co.il/", "codes": [301]},
{"url": "https://www.shore.co.il/blog"},
]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment