-
-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prepend HTTPS to Crawl Start URL #2177
Conversation
… (except for URL list) part of fix for #2167
Might be good enough for 1.12.2, as this addresses most common issue, can handle list of urls in a follow-up. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works well (with caveat about list of pages), just one inline comment to address
@@ -996,6 +1008,18 @@ https://archiveweb.page/guide`} | |||
const text = msg("Please enter a valid URL."); | |||
inputEl.helpText = text; | |||
inputEl.setCustomValidity(text); | |||
inputEl.setCustomValidity(text); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This appears to be a duplicate of the line above - maybe a mistake?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yep, good catch!
add validation onblur for url list
Decided to go ahead and just add URL list prepending as well for completion! |
…just using single limit todo: make customizable in the future
Merge 1.12.2 release changes into main, includes: - Collection replay full refresh on metadata / archived items (#2176) - Fix for self-registration default org (#2178) - Prepend missing https in start URL (#2177) - Updated billing to support free trial messaging (#2179) --------- Co-authored-by: sua yoo <[email protected]> Co-authored-by: Henry Wilkinson <[email protected]> Co-authored-by: sua yoo <[email protected]> Co-authored-by: SuaYoo <[email protected]>
Part of fix for #2167:
https://
if URL is considered valid but missing schemehttps://
to each URL in URL list, also run validation onblur for URL list