packages feed

haxr 3000.9 → 3000.9.0.1

raw patch · 5 files changed

+10/−8 lines, 5 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

examples/Makefile view
@@ -1,5 +1,5 @@ GHC = ghc-GHCFLAGS = -O2 -package haxr -fallow-overlapping-instances+GHCFLAGS = -O2 -package haxr -XOverlappingInstances  TEST_PROGS = make-stubs parse_response \              person_server person_client raw_call \
examples/raw_call.hs view
@@ -2,10 +2,11 @@ -- server and prints the response to standard output. Must be editied  -- to use the right server URL. -import System (getArgs, exitFailure)-import IO (hPutStrLn, stderr) import Data.Char import Network.URI+import System.Environment (getArgs)+import System.Exit (exitFailure)+import System.IO (hPutStrLn, stderr)  import Network.XmlRpc.Internals import Network.HTTP
examples/test_client.hs view
@@ -1,8 +1,9 @@ -- A simple client that calls the methods in test_server.hs -import System (getArgs, exitFailure)-import IO (hPutStrLn, stderr)-import Time+import System.Environment (getArgs)+import System.Exit (exitFailure)+import System.IO (hPutStrLn, stderr)+import System.Time  import Network.XmlRpc.Client 
examples/test_server.hs view
@@ -1,6 +1,6 @@ -- A simple server -import Time+import System.Time import Network.XmlRpc.Server  add :: Int -> Int -> IO Int
haxr.cabal view
@@ -1,5 +1,5 @@ Name: haxr-Version: 3000.9+Version: 3000.9.0.1 Cabal-version: >=1.6 Build-type: Simple Copyright: Bjorn Bringert, 2003-2006