summaryrefslogtreecommitdiff
path: root/www/hs-HTTP
AgeCommit message (Collapse)AuthorFilesLines
2016-01-10Bump PKGREVISION for hs-text-1.2.2.0 || hs-hashable-1.2.3.3szptvlfn2-4/+4
2015-11-04Add SHA512 digests for distfiles for www categoryagc1-1/+2
Problems found locating distfiles: Package haskell-cgi: missing distfile haskell-cgi-20001206.tar.gz Package nginx: missing distfile array-var-nginx-module-0.04.tar.gz Package nginx: missing distfile encrypted-session-nginx-module-0.04.tar.gz Package nginx: missing distfile headers-more-nginx-module-0.261.tar.gz Package nginx: missing distfile nginx_http_push_module-0.692.tar.gz Package nginx: missing distfile set-misc-nginx-module-0.29.tar.gz Package nginx-devel: missing distfile echo-nginx-module-0.58.tar.gz Package nginx-devel: missing distfile form-input-nginx-module-0.11.tar.gz Package nginx-devel: missing distfile lua-nginx-module-0.9.16.tar.gz Package nginx-devel: missing distfile nginx_http_push_module-0.692.tar.gz Package nginx-devel: missing distfile set-misc-nginx-module-0.29.tar.gz Package php-owncloud: missing distfile owncloud-8.2.0.tar.bz2 Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-08-02Bump PKGREVISION for hs-text-1.2.1.3szptvlfn2-4/+4
2015-06-09Bump PKGREVISION for hs-parsec-3.1.9szptvlfn2-4/+4
2015-06-04Bump PKGREVISION for hs-text-1.2.1.1szptvlfn2-4/+4
2014-12-12Bump PKGREVISION for hs-text-1.2.0.3szptvlfn2-4/+4
2014-12-12Bump PKGREVISION for hs-text-1.2.0.2 || hs-hashable-1.2.3.0szptvlfn2-4/+4
2014-11-23Bump PKGREVISION for hs-transformers-0.4.2.0szptvlfn2-4/+4
2014-10-19Bump PKGREVISION for hs-parsec-3.1.7szptvlfn2-4/+4
2014-09-13Bump PKGREVISION for hs-text-1.2.0.0szptvlfn2-4/+4
2014-09-05Bump PKGREVISION for hs-text-1.1.1.3szptvlfn1-1/+2
2014-08-29make it clear what package depend onszptvlfn1-1/+2
discussed with wiz@.
2014-07-24Import HTTP-4000.2.17 as www/hs-HTTP,szptvlfn5-0/+134
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).