Re: [Caml-list] project management tool

2009-06-12 Thread David MENTRE
Hello Vincent, On Fri, Jun 12, 2009 at 18:17, Vincent Balat wrote: > We have a project to build a forge with such features (based on the Ocsigen > framework). > (The project will be hosted by ocamlcore.org: > http://forge.ocamlcore.org/projects/ocsforge/) I discovered this project through the OCa

Re: [Caml-list] project management tool

2009-06-12 Thread Vincent Balat
Hi, We have a project to build a forge with such features (based on the Ocsigen framework). (The project will be hosted by ocamlcore.org: http://forge.ocamlcore.org/projects/ocsforge/). Actually the project just started and we have no idea when there will be something usable (depending on whet

Re: [Caml-list] ocamllex and python-style indentation

2009-06-12 Thread Andreas Rossberg
On Jun 12, 2009, at 10.20 h, Andrej Bauer wrote: I think I understand the general idea of inserting "virtual" tokens, but the details confuse me still. So starting with if True: x = 3 y = (2 + 4 + 5) else: x = 5 if False: x = 8 z = 2 Martin suggests the followi

Re: [Caml-list] OCaml 3.11.1 released

2009-06-12 Thread Damien Doligez
On 2009-06-12, at 15:02, Stéphane Glondu wrote: The links to the sources seem to be broken. Sorry about that. It is fixed now. -- Damien ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-lis

Re: [Caml-list] ocamllex and python-style indentation

2009-06-12 Thread Martin Jambon
Andrej Bauer wrote: > Thanks to Andreas, I'll have a look at the "old" code. > > I think I understand the general idea of inserting "virtual" tokens, > but the details confuse me still. So starting with > >> if True: >> x = 3 >> y = (2 + >> 4 + 5) >> else: >> x = 5 >> if Fal

Re: [Caml-list] Batteries and portability

2009-06-12 Thread Tiphaine Turpin
The following completed patch works for me. Tiphaine dmitry grebeniuk a écrit : > If you really don't use camomile and it is not used > in batteries indirectly, you can defer initialization. > Apply the patch to camomile: > http://overbld.abcname.net/files/camomile-noprecomp.html > But the patc

Re: [Caml-list] OCaml 3.11.1 released

2009-06-12 Thread Stéphane Glondu
Damien Doligez a écrit : > It is our pleasure to celebrate the 30th anniversary of the first > human-powered flight over the English channel by announcing the > release of OCaml version 3.11.1. This is mainly a bug-fix release, > see the list of changes below. > > It is available here: < http://c

Re: [Caml-list] ocamllex and python-style indentation

2009-06-12 Thread Martin Jambon
Andrej Bauer wrote: > Thanks to Andreas, I'll have a look at the "old" code. > > I think I understand the general idea of inserting "virtual" tokens, > but the details confuse me still. So starting with > >> if True: >> x = 3 >> y = (2 + >> 4 + 5) >> else: >> x = 5 >> if Fal

Re: [Caml-list] OCaml 3.11.1 released

2009-06-12 Thread Damien Doligez
On 2009-06-12, at 14:46, Damien Doligez wrote: It is our pleasure to celebrate the 30th anniversary of the first human-powered flight over the English channel by announcing the release of OCaml version 3.11.1. This is mainly a bug-fix release, see the list of changes below. I forgot one imp

[Caml-list] OCaml 3.11.1 released

2009-06-12 Thread Damien Doligez
Dear OCaml users, It is our pleasure to celebrate the 30th anniversary of the first human-powered flight over the English channel by announcing the release of OCaml version 3.11.1. This is mainly a bug-fix release, see the list of changes below. It is available here: < http://caml.inria.fr/down

[Caml-list] Hunting a memory leak

2009-06-12 Thread Tiphaine Turpin
Hi, I have a serious problem with a memory leak that I cannot spot. My code is basically a while loop, and the heap is constantly growing at each iteration, so I assume that I have some mutable datastructure allocated before entering the loop which grows to much. But all those I can think of are e

Re: [Caml-list] Batteries and portability

2009-06-12 Thread David Rajchenbach-Teller
We could try that, but that looks to me like something that would break more things than it would fix. Cheers, David On Thu, 2009-06-11 at 17:42 +0200, David MENTRE wrote: > Wouldn't it be possible to convert those files into OCaml strings and > use them instead? They would be included in the co

Re: [Caml-list] The state of ML: multi-threaded, saved state and support platforms

2009-06-12 Thread Daniel Bünzli
Le 12 juin 09 à 02:28, Jon Harrop a écrit : e.g. the most popular XML library for OCaml is far from standards compliant and most Don't use the wrong tools. pxp and xmlm follow the standard (xmlm up to exceptions documented here [1]). xmlm is as light as xml-light but is not a toy. If you

Re: [Caml-list] ocamllex and python-style indentation

2009-06-12 Thread Andrej Bauer
Thanks to Andreas, I'll have a look at the "old" code. I think I understand the general idea of inserting "virtual" tokens, but the details confuse me still. So starting with > if True: > x = 3 > y = (2 + > 4 + 5) > else: > x = 5 > if False: > x = 8 > z = 2