network-uri icon indicating copy to clipboard operation
network-uri copied to clipboard

URI manipulation facilities

Results 14 network-uri issues
Sort by recently updated
recently updated
newest added

This would be a really useful utility function to have, though since I don't think `&` and `=` are actually part of the official URI specification I understand if you...

Would it be possible to have a `Data.Text` / `Data.ByteString` implementation of parseURI? I'm a bit native to the work required to implement this, but parsing urls seems to be...

``` haskell Prelude Network.URI> parseURI "http://ex.com/?drink=Øl" Nothing ```

I see that putting a : character in front of the port is clearly intentional : https://github.com/haskell/network-uri/blob/master/Network/URI.hs#L602 Two questions: 1. Could this be a Maybe Int instead of a string?...