packages feed

url 2.1.2 → 2.1.3

raw patch · 2 files changed

+3/−3 lines, 2 files

Files

Network/URL.hs view
@@ -238,9 +238,9 @@ ok_path c   = ok_param c || c `elem` "/=&"  -- XXX: others? check RFC--- | Characters that may appear in the textual representation of a URL+-- | Characters that do not need to be encoded in URL ok_url :: Char -> Bool-ok_url c = isDigit c || isAlphaASCII c || c `elem` ".-;:@$_!*'(),/=&?~%+"+ok_url c = isDigit c || isAlphaASCII c || c `elem` ".-;:@$_!*'(),/=&?~+"  -- Misc --------------------------------------------------------------------------------
url.cabal view
@@ -1,5 +1,5 @@ name:         url-version:      2.1.2+version:      2.1.3 category:     Web synopsis:     A library for working with URLs. description:  A library for working with URLs.