X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FDEVEL%2Focaml-http%2Fdebian%2Fcontrol;h=6fcb97b20a71dbb4a7036f07d7b6a5539b52ef2b;hb=12cc5b2b8e7f7bb0b5e315094b008a293a4df6b1;hp=24b4bed213ec1b72a205e41e62ebefc9a6769450;hpb=2f28bfb47f5fad6b3c5a705d9ede95700416dee8;p=helm.git diff --git a/helm/DEVEL/ocaml-http/debian/control b/helm/DEVEL/ocaml-http/debian/control index 24b4bed21..6fcb97b20 100644 --- a/helm/DEVEL/ocaml-http/debian/control +++ b/helm/DEVEL/ocaml-http/debian/control @@ -1,19 +1,23 @@ -Source: http +Source: ocaml-http Section: devel Priority: optional Maintainer: Stefano Zacchiroli -Build-Depends: debhelper (>> 4.0.0), ocaml-3.06, ocaml-findlib, libpcre-ocaml-dev, libocamlnet-ocaml-dev -Standards-Version: 3.5.7 +Build-Depends: debhelper (>> 4.0.0), ocaml-nox-3.08.3, ocaml-findlib, libpcre-ocaml-dev (>= 5.08.1-3), libocamlnet-ocaml-dev (>= 1.0-1) +Standards-Version: 3.6.1.1 Package: libhttp-ocaml-dev Architecture: any -Depends: ocaml-3.06, libpcre-ocaml-dev, libocamlnet-ocaml-dev -Description: OCaml module to build simple HTTP servers - OCaml module to build simple HTTP server, largely inspired to Perl's +Depends: ocaml-nox-3.08.3, libpcre-ocaml-dev (>= 5.08.1-3), libocamlnet-ocaml-dev (>= 1.0-1) +Description: OCaml library for writing HTTP servers + OCaml HTTP is a library for the Objective Caml programming language, + used to build simple HTTP servers, largely inspired to Perl's HTTP::Daemon module. . - Contains an Http.Daemon module which allow you to create simple HTTP - servers, and a set of facility functions to handle HTTP request and - responses. + In order to implement an HTTP servers the programmer has to provide a + daemon specification which contains, among other parameters, a callback + function invoked by OCaml HTTP on well formed HTTP requests received. + HTTP responses could be sent over an out_channel connected with client + socket, accessible from the callback. . - Contains also classes that enclose HTTP request and responses. + The library contains also facility functions that helps in creating + well formed HTTP responses and a tiny HTTP client.