Skip to content
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

Stop percent-encoding of numbers. #4

Merged
merged 1 commit into from
Aug 8, 2016
Merged

Stop percent-encoding of numbers. #4

merged 1 commit into from
Aug 8, 2016

Commits on Jul 24, 2016

  1. Stop percent-encoding of numbers.

    RFC 3986 states that numbers are unreserved characters:
    
    Characters that are allowed in a URI but do not have a reserved purpose
    are called unreserved. These include uppercase and lowercase letters,
    decimal digits, hyphen, period, underscore, and tilde.
    
    unreserved  = ALPHA / DIGIT / "-" / "." / "_" / "~"
    [...]
    
    For consistency, percent-encoded octets in the ranges of ALPHA (%41-%5A
    and %61-%7A), DIGIT (%30-%39), hyphen (%2D), period (%2E), underscore
    (%5F), or tilde (%7E) should not be created by URI producers
    DanTup committed Jul 24, 2016
    Configuration menu
    Copy the full SHA
    44b5c66 View commit details
    Browse the repository at this point in the history