]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/DEVEL/ocaml-http/debian/control
debian changes target release 0.1.0
[helm.git] / helm / DEVEL / ocaml-http / debian / control
index d01f5bd82a8c899e044496a9486bd48a13f4c199..616ece3ff30778d6942b47f795156fa948e9b2a3 100644 (file)
@@ -2,18 +2,22 @@ Source: ocaml-http
 Section: devel
 Priority: optional
 Maintainer: Stefano Zacchiroli <zack@debian.org>
-Build-Depends: debhelper (>> 4.0.0), ocaml-nox-3.08, ocaml-findlib, libpcre-ocaml-dev (>= 4.30.0), libocamlnet-ocaml-dev (>= 0.98), graphviz
+Build-Depends: debhelper (>> 4.0.0), ocaml-nox-3.08, ocaml-findlib, libpcre-ocaml-dev (>= 4.30.0), libocamlnet-ocaml-dev (>= 0.98)
 Standards-Version: 3.6.1.1
 
 Package: libhttp-ocaml-dev
 Architecture: any
 Depends: ocaml-nox-3.08, libpcre-ocaml-dev (>= 4.30.0), libocamlnet-ocaml-dev (>= 0.98)
-Description: OCaml module to build simple HTTP servers
- OCaml module to build simple HTTP server, largely inspired to Perl's
+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.