Re: [Caml-list] web server interface for Ocaml ( like rack, wsgi, ...)?

2010-09-21 Thread ben kuin
what's wrong with simply proxying the HTTP connections through your favorite webserver to the backend ocsigen/ocamlnet server? Nothing per se. I've tried so set something up with ocsigen, but I had to give up. There seems to be a certain philosophy behind it how you should writing web apps.

[Caml-list] Call for Workshop Proposals (RDP 2011, Novi Sad)

2010-09-21 Thread RTA publicity chair
Federated Conference on Rewriting, Deduction, and Programming RDP 2011 29/5/2011 - 3/6/2011, Novi Sad, Serbia http://www.rdp2011.uns.ac.rs/ -

[Caml-list] difference of [ `A of int] and [ `A of int] ?

2010-09-21 Thread Hendrik Tews
Hi, I am trying to grasp the camlp4 constructor for types TyOfAmp, which is declared as | TyOfAmp of loc and ctyp and ctyp (* t of t *) in camlp4/Camlp4/Camlp4Ast.partial.ml. It is used in the ast of ``[ `A of int]''. Can somebody explain the meaning of [ `A of int]? What is the

Re: [Caml-list] difference of [ `A of int] and [ `A of int] ?

2010-09-21 Thread Jacques Garrigue
On 2010/09/21, at 21:16, Hendrik Tews wrote: I am trying to grasp the camlp4 constructor for types TyOfAmp, which is declared as | TyOfAmp of loc and ctyp and ctyp (* t of t *) in camlp4/Camlp4/Camlp4Ast.partial.ml. It is used in the ast of ``[ `A of int]''. Can somebody explain

Re: [Caml-list] difference of [ `A of int] and [ `A of int] ?

2010-09-21 Thread Hendrik Tews
Thanks for this quick and enlightening answer! Jacques Garrigue writes: Date: Tue, 21 Sep 2010 21:41:01 +0900 Subject: Re: [Caml-list] difference of [ `A of int] and [ `A of int] ? [ `A of int] This is an (impossible) conjunctive type. Basically it says that `A is both

[Caml-list] the Dorothea Parliament can invention with

2010-09-21 Thread is at Kevorkian
The presiding officer enforces the rules of the House, and may warn members who deviate from them. Membrane proteins, by contrast, are difficult to crystallize and are underrepresented in the PDB. ___ Caml-list mailing list. Subscription management:

Re: [Caml-list] web server interface for Ocaml ( like rack, wsgi, ...)?

2010-09-21 Thread Gerd Stolpmann
Am Dienstag, den 21.09.2010, 20:20 +0100 schrieb Richard Jones: On Tue, Sep 21, 2010 at 09:50:36AM +0200, ben kuin wrote: what's wrong with simply proxying the HTTP connections through your favorite webserver to the backend ocsigen/ocamlnet server? Nothing per se. I've tried so set

Re: [Caml-list] web server interface for Ocaml ( like rack, wsgi, ...)?

2010-09-21 Thread Martin Jambon
Richard Jones wrote: On Tue, Sep 21, 2010 at 09:50:36AM +0200, ben kuin wrote: what's wrong with simply proxying the HTTP connections through your favorite webserver to the backend ocsigen/ocamlnet server? Nothing per se. I've tried so set something up with ocsigen, but I had to give up.