We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Description:
Enhance the flexibility of the GitHub repository URL input field on our form.
Objective:
Update the repository URL form field to handle the following input variations and normalize inputs:
github.com/user/repo
user/repo
https://github.com/user/repo
https://github.com/user/repo?query=string#fragment
Tasks:
Review Current Implementation: RepositoryURLForm is where most of the work should happen.
RepositoryURLForm
Update Validation Logic: Ensure the validate_repo_url function can accurately validate the supported input formats.
validate_repo_url
Enhance Cleaning Logic: Modify the clean_repo_url method to:
clean_repo_url
https://github.com/
Implement and update Test Cases: Create/update tests to confirm:
Documentation Update: Revise documentation to clearly explain the input formats supported and the behavior regarding extraneous URL components.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description:
Enhance the flexibility of the GitHub repository URL input field on our form.
Objective:
Update the repository URL form field to handle the following input variations and normalize inputs:
github.com/user/repo
user/repo
https://github.com/user/repo
https://github.com/user/repo?query=string#fragment
. Remove them.Tasks:
Review Current Implementation:
RepositoryURLForm
is where most of the work should happen.Update Validation Logic: Ensure the
validate_repo_url
function can accurately validate the supported input formats.Enhance Cleaning Logic: Modify the
clean_repo_url
method to:https://github.com/
where necessary.Implement and update Test Cases: Create/update tests to confirm:
Documentation Update: Revise documentation to clearly explain the input formats supported and the behavior regarding extraneous URL components.
The text was updated successfully, but these errors were encountered: