summaryrefslogtreecommitdiff
path: root/www/hs-HTTP/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2022-02-26Bump all Haskell packages after enabling "split sections" in mk/haskell.mkpho1-2/+2
2022-02-12revbump after changing the default Haskell compilerpho1-2/+2
2022-01-18Bump packages that depends on GHCpho1-2/+2
2021-05-03*: Bump PKGREVISION for ghc-9.0.1pho1-1/+2
2021-04-24Update to HTTP-4000.3.16pho1-4/+3
Version 4000.3.16: release 2021-03-20 * Support GHC-9.0 (Oleg Genrus) * Various dependency bumps (multiple people) * Try all addresses returned by getAddrInfo (Fraser Tweedale)
2021-02-18(*/hs-*) BUILDLINK_API_DEPENDS.ghc <8.10, againmef1-2/+2
2021-02-13(*/hs-*) fix build, not adapted to ghc90 versionmef1-1/+2
2020-01-11Remove dependency on devel/hs-mtl and devel/hs-parsecpho1-3/+1
They are now part of GHC.
2020-01-02Update to HTTP-4000.3.14pho1-4/+4
* If the URI contains "user:pass@" part, use it for Basic Authorization * Add a test harness. * Don't leak a socket when getHostAddr throws an exception. * Send cookies in request format, not response format. * Moved BrowserAction to be a StateT IO, with instances for Applicative, MonadIO, MonadState. * Add method to control size of connection pool. * Consider both host and port when reusing connections. * Handle response code 304 "not modified" properly. * Fix digest authentication by fixing md5 output string rep. * Make the default user agent string follow the package version. * Document lack of HTTPS support and fail when clients try to use it instead of silently falling back to HTTP. * Add helper to set the request type and body.
2016-01-10Bump PKGREVISION for hs-text-1.2.2.0 || hs-hashable-1.2.3.3szptvlfn1-2/+2
2015-08-02Bump PKGREVISION for hs-text-1.2.1.3szptvlfn1-2/+2
2015-06-09Bump PKGREVISION for hs-parsec-3.1.9szptvlfn1-2/+2
2015-06-04Bump PKGREVISION for hs-text-1.2.1.1szptvlfn1-2/+2
2014-12-12Bump PKGREVISION for hs-text-1.2.0.3szptvlfn1-2/+2
2014-12-12Bump PKGREVISION for hs-text-1.2.0.2 || hs-hashable-1.2.3.0szptvlfn1-2/+2
2014-11-23Bump PKGREVISION for hs-transformers-0.4.2.0szptvlfn1-2/+2
2014-10-19Bump PKGREVISION for hs-parsec-3.1.7szptvlfn1-2/+2
2014-09-13Bump PKGREVISION for hs-text-1.2.0.0szptvlfn1-2/+2
2014-09-05Bump PKGREVISION for hs-text-1.1.1.3szptvlfn1-1/+2
2014-07-24Import HTTP-4000.2.17 as www/hs-HTTP,szptvlfn1-0/+14
packaged for wip by pho. The HTTP package supports client-side web programming in Haskell. It lets you set up HTTP connections, transmitting requests and processing the responses coming back, all from within the comforts of Haskell. It's dependent on the network package to operate, but other than that, the implementation is all written in Haskell. A basic API for issuing single HTTP requests + receiving responses is provided. On top of that, a session-level abstraction is also on offer (the BrowserAction monad); it taking care of handling the management of persistent connections, proxies, state (cookies) and authentication credentials required to handle multi-step interactions with a web server. The representation of the bytes flowing across is extensible via the use of a type class, letting you pick the representation of requests and responses that best fits your use. Some pre-packaged, common instances are provided for you (ByteString, String).