uri-conduit 0.2.0 → 0.2.0.1
raw patch · 2 files changed
+5/−3 lines, 2 filesdep ~failure
Dependency ranges changed: failure
Files
- Network/URI/Conduit/File.hs +3/−1
- uri-conduit.cabal +2/−2
Network/URI/Conduit/File.hs view
@@ -28,10 +28,12 @@ Nothing -> do wd <- F.getWorkingDirectory let fp = wd FP.</> FP.decodeString s- parseURI $ T.append "file://" $ T.map fixSlash $ either id id $ FP.toText fp+ parseURI $ T.append "file://" $ T.concatMap fixSpace $ T.map fixSlash $ either id id $ FP.toText fp where fixSlash '\\' = '/' fixSlash c = c+ fixSpace ' ' = "%20"+ fixSpace c = T.singleton c fileScheme :: Scheme fileScheme = Scheme
uri-conduit.cabal view
@@ -1,5 +1,5 @@ Name: uri-conduit-Version: 0.2.0+Version: 0.2.0.1 Synopsis: Read and write URIs Homepage: http://github.com/snoyberg/xml License: BSD3@@ -21,7 +21,7 @@ , bytestring >= 0.9 && < 0.10 , network >= 2.2 && < 2.4 , containers >= 0.2 && < 0.5- , failure >= 0.1 && < 0.2+ , failure >= 0.1 && < 0.3 , monad-control >= 0.3 && < 0.4 , system-filepath >= 0.4.3 && < 0.5 , system-fileio >= 0.3.3 && < 0.4