#|| 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 https://groups.google.com

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 cou

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

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 ema

[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 usa

Re: Feedback Request

2011-04-19 Thread Pierre Allix
Such a wrapper can be really useful. There is also swing-utils in contribs. We also have a few wrapper functions for our project, you may find them interesting: http://bit.ly/h1RN6r -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this grou

[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: La

Re: Lacij v.0.1 a graph visualization library

2011-05-04 Thread Pierre Allix
27;d love to try 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 < > > > > > >

[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

Bug in jayq clj->js function ?

2012-10-22 Thread Pierre Allix
Hello everybody, I'm having a bug with the following code: https://gist.github.com/3932130 The test-merge-convert function returns undefined instead of returning an object but even more strangely the code works if I remove the data with the key :sct_comparison_desc inside the first map. I'm u

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 convert

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 se

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 Group

[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 c

[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 clojure

[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 Groups

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 -Xbootclasspath/a:/home/jboss/.m2/repository/or

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 clojure@googlegr