Re: [ANN] dali SVG library 0.7.0

2016-04-05 Thread Pierre Allix
Wow very nice work. It's very close to what I did on github.com/pallix/lacij and https://github.com/pallix/tikkba and I'm wondering if some part could be put in common. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send

#|| notation for the Clojure reader

2013-07-10 Thread Pierre Allix
Hello, I'm using a Clojure library which generates symbols of the form a/b/1. They are symbols representing URI. These symbols cannot be serialized as strings and read back with read-string. a) the symbol function does not validate its inputs. It was discussed here

Re: Namespace loading with defrecord and attempting to call unbound fn

2013-04-16 Thread Pierre Allix
Thank you the patch works. I though it would have made sense to just create a record directly from Java since they can implement Java interfaces. On Monday, April 15, 2013 7:57:28 PM UTC+2, Meikel Brandmeyer (kotarak) wrote: Hi Pierre, does this patch work? 8--8--8 diff --git

Namespace loading with defrecord and attempting to call unbound fn

2013-04-15 Thread Pierre Allix
Hello, When defining a record with defrecord and calling from Java a method of the record which is implemented by calling the function of another namespace, the exception IllegalStateException is thrown with error attempting to call unbound fn. An example of this could be something like that:

Re: Namespace loading with defrecord and attempting to call unbound fn

2013-04-15 Thread Pierre Allix
Hi Meikel, If you look at the source of this project: git clone git://git.berlios.de/markos-license-analyser in the test directory there is a JUnit test where the Clojure record is instantiated through a normal Java 'new' call. The record is imported with a normal Java import. If you want I

Re: clojure.string/capitalize API

2012-12-14 Thread Pierre Allix
I agree that with regards to 'least astonishment' the core fn should capitalize all characters. This is what I'd expect from a fn called 'capitalize'. There is already an upper-case function, thus capitalize should either capitalize the first character or all characters who begin a

clojure.string/capitalize API

2012-12-12 Thread Pierre Allix
Hello, The clojure.string/capitalize function is defined as follow: Converts first character of the string to upper-case, all other characters to lower-case. I think it does not follow principle of least astonishment. I would have expected to convert only the first character. Moreover

Re: leinigen 1.7.1 stalled when used from Jenkins

2012-06-28 Thread Pierre Allix
I found the error. Somehow it was caused by Jenkins started as standalone JAR by the nohup command but nonetheless not properly being daemonized. -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to

leinigen 1.7.1 stalled when used from Jenkins

2012-06-26 Thread Pierre Allix
Hello, I have a build script called from Jenkins that calls lein clean. Unfortunately lein stalled when executed from the script whereas it works fine if I do executed it from the command line. Leiningen is stalled executing this command: java

[ANN] Lacij v.0.6.0

2012-01-23 Thread Pierre Allix
Hello, A new version of Lacij is available. No big changes but bug fixes were done and the library now supports Clojure 1.3! https://github.com/pallix/lacij -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to

[ANN] Lacij v.0.6.0

2012-01-23 Thread Pierre Allix
Hello, A new version of the Tikkba and Lacij libraries are available. No big changes but bug fixes were done and the libraries now supports Clojure 1.3! https://github.com/pallix/tikkba https://github.com/pallix/lacij -- You received this message because you are subscribed to the Google

[ANN] Lacij v.0.4.0

2011-08-11 Thread Pierre Allix
Hello, I'm pleased to announce the release of the version 0.4.0 of the Lacij graph visualization library. The release includes a new automatic layout called hierarchical layout. It is similar to a tree layout or family tree but works on any type of graph (tree or not). An example of this layout

Presentation of the Lacij graph visualization library

2011-06-29 Thread Pierre Allix
Hello, I have uploaded a short presentation of the Lacij graph visualization library. It can be found here: https://docs.google.com/present/view?id=dsjwfrk_1js9ptkcd Lacij is on GitHub: https://github.com/pallix/lacij -- You received this message because you are subscribed to the Google

[ANN] Radial layout for the Lacij graph visualization library

2011-05-17 Thread Pierre Allix
Hello, I'm pleased to announce that a radial layout has been added to the Lacij graph visualization library. Here is an example of how the radial layout looks: https://github.com/pallix/lacij/raw/master/resources/lacij/examples/radial.png It's an implementation of the algorithm described in

Re: Lacij v.0.1 a graph visualization library

2011-05-04 Thread Pierre Allix
it. The version on clojars is 0.1.0-SNAPSHOT, could you upload 0.1.0? How do you build it from source? I can't locate a build script. Thanks, Ambrose On Tue, May 3, 2011 at 9:26 PM, Pierre Allix pierre.allix.w...@googlemail.com wrote: Hello, I would like to announce the version

[ANN] Lacij v.0.1 a graph visualization library

2011-05-03 Thread Pierre Allix
Hello, I would like to announce the version 0.1 of the Lacij library, a graph visualization library written in Clojure. I would be really happy with any feedbacks and comments, on the code or the architecture. Help is welcome to implement additional layout algorithms. From the README file:

[ANN] Tikkba v.0.1 a Clojure library for the creation and the dynamic modification of SVG documents

2011-04-14 Thread Pierre Allix
Hello, I would like to announce the version 0.1 of the Tikkba library, a library for the creation and the dynamic modification of SVG documents. I would be really happy with any feedbacks and comments, on the code or the architecture. While the library is not complete it is already extremely