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
I tested the urip.Parse method against each of the examples in the RFC: https://datatracker.ietf.org/doc/html/rfc3986#section-1.1.2
urip.Parse
All of these parse without raising an exception. However the LDAP example - although parsing without raising an exception - gives an incomplete URI.
Example:
data = []byte("ldap://[2001:db8::7]/c=GB?objectClass?one") uri, err := urip.Parse(data) if err != nil { fmt.Println(err.Error()) return } fmt.Printf("uri : %s\n", uri) fmt.Printf("scheme : %s\n", uri.Scheme)
gives the following output:
uri : ldap:// scheme : ldap
(I should say this is a minor issue - and the library is generally useful to me - so thanks for developing this and sharing it!)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I tested the
urip.Parse
method against each of the examples in the RFC:https://datatracker.ietf.org/doc/html/rfc3986#section-1.1.2
All of these parse without raising an exception. However the LDAP example - although parsing without raising an exception - gives an incomplete URI.
Example:
gives the following output:
(I should say this is a minor issue - and the library is generally useful to me - so thanks for developing this and sharing it!)
The text was updated successfully, but these errors were encountered: