Re: JSON library for clojure 1.3

2011-08-08 Thread Arthur Edelstein
Hi Stuart, I've added a JIRA ticket (CLJ-826). Thanks, Arthur On Aug 7, 7:19 am, Stuart Sierra the.stuart.sie...@gmail.com wrote: Hi Arthur, I think thos would make a reasonable addition. If you'll make a JIRA ticket in the backlog, I'll see if I can push it forward. Ultimately, it will be

Re: JSON library for clojure 1.3

2011-08-08 Thread Stuart Sierra
Thanks, Arthur. I've placed it in Backlog because it's a feature enhancement. Regards, -Stuart -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are

Re: JSON library for clojure 1.3

2011-08-07 Thread Stuart Sierra
Hi Arthur, I think thos would make a reasonable addition. If you'll make a JIRA ticket in the backlog, I'll see if I can push it forward. Ultimately, it will be Rich's decision, of course. Thanks, -Stuart Sierra clojure.com -- You received this message because you are subscribed to the

Re: JSON library for clojure 1.3

2011-08-07 Thread Aaron Bedra
Perhaps we can put these in core.incubator for now so they have a place to live in the 1.3 world. The function for this library is the staging of things that are destined for core itself, so it might not be a bad idea. Cheers, Aaron Bedra -- Clojure/core http://clojure.com On 08/07/2011

Re: JSON library for clojure 1.3

2011-08-07 Thread Sean Corfield
Wouldn't string.incubator be better, for possible inclusion in clojure.string (rather than core.incubator for clojure.core). Seems more consistent... Otherwise things will be moving from c.contrib.foo to c.core.incubator and then (possibly) to c.foo... On Sun, Aug 7, 2011 at 12:17 PM, Aaron Bedra

Re: JSON library for clojure 1.3

2011-08-06 Thread Arthur Edelstein
From clojure.contrib.string 1.2, I have found myself using drop, take, and butlast. (These are more than just wrappers for String/substring, because they behave nicely when indices exceed the string length.) I like these methods in part because they match the behavior of corresponding sequence

Re: JSON library for clojure 1.3

2011-08-05 Thread Stuart Sierra
Are there any features you found essential in clojure.contrib.str-utils{2|3} that are not included in clojure.string? Please let me know, and we can consider tickets for those specific functions. -Stuart Sierra clojure.com -- You received this message because you are subscribed to the Google

Re: JSON library for clojure 1.3

2011-08-02 Thread Vincent
yes ..it is working / great Thanks a lot Vincent -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To

Re: JSON library for clojure 1.3

2011-08-02 Thread Chas Emerick
On Aug 1, 2011, at 6:49 PM, OGINO Masanori wrote: Similar question: where is clojure.contrib.string for 1.3? +1 http://dev.clojure.org/display/design/Contrib+Library+Names c.c.string is not included in this list. Is there any plans to go to modular contrib (string.incubator,

Re: JSON library for clojure 1.3

2011-08-02 Thread OGINO Masanori
FWIW, many functions from c.c.string were migrated to the core clojure.string namespace starting in Clojure v1.2.0 Indeed but others aren't there yet. Will the rest be migrated in clojure.string until 1.3 release date? If not, probably we need modular c.c.string for performance-sensitive

Re: JSON library for clojure 1.3

2011-08-01 Thread Stuart Sierra
clojure.contrib.json has been continued as clojure.data.json: https://github.com/clojure/data.json It should work in 1.3 -Stuart Sierra clojure.com -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to

Re: JSON library for clojure 1.3

2011-08-01 Thread Arthur Edelstein
Similar question: where is clojure.contrib.string for 1.3? There are a lot of useful functions in clojure.contrib.string that aren't in clojure.string 1.3. Thanks! :) Arthur On Aug 1, 5:57 am, Stuart Sierra the.stuart.sie...@gmail.com wrote: clojure.contrib.json has been continued as

Re: JSON library for clojure 1.3

2011-08-01 Thread OGINO Masanori
Similar question: where is clojure.contrib.string for 1.3? +1 http://dev.clojure.org/display/design/Contrib+Library+Names c.c.string is not included in this list. Is there any plans to go to modular contrib (string.incubator, tools.string, etc.)? -- Name: OGINO Masanori (荻野 雅紀) E-mail:

Re: JSON library for clojure 1.3

2011-08-01 Thread Vincent
how can i test using clooj ide... will lein deps, then run clooj allow me test in repl window -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated

Re: JSON library for clojure 1.3

2011-08-01 Thread Arthur Edelstein
On Aug 1, 7:34 pm, Vincent vincent@gmail.com wrote: how can i test using clooj ide... will lein deps, then run clooj allow me test in repl window Yes, please give it a try. Any jar in the lib directory (as typically deposited by lein or cake) should be available on the classpath. After

JSON library for clojure 1.3

2011-07-22 Thread Islon Scherer
Is there a clojure json library that works in clojure 1.3? I tried danlarkin/clojure-json but it gives me error: java.lang.IllegalArgumentException: Unable to resolve classname: IPersistentMap, compiling:(org/danlarkin/json/encoder.clj:144) -- You received this message because you are

Re: JSON library for clojure 1.3

2011-07-22 Thread Wilson MacGyver
I'm still using https://github.com/mmcgrana/clj-json with 1.2, it's worth a try though, since it's just a wrapper for jackson. On Fri, Jul 22, 2011 at 5:05 PM, Islon Scherer islonsche...@gmail.com wrote: Is there a clojure json library that works in clojure 1.3? I tried danlarkin/clojure-json

Re: JSON library for clojure 1.3

2011-07-22 Thread Sean Corfield
On Fri, Jul 22, 2011 at 2:05 PM, Islon Scherer islonsche...@gmail.com wrote: Is there a clojure json library that works in clojure 1.3? How about: [org.clojure/data.json 0.1.1] (formerly clojure.contrib.json)? -- Sean A Corfield -- (904) 302-SEAN An Architect's View -- http://corfield.org/

Re: JSON library for clojure 1.3

2011-07-22 Thread Islon Scherer
Thanks Sean, org.clojure/data.json worked like a charm. -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first

Re: JSON library for clojure 1.3

2011-07-22 Thread Lee Hinman
On Jul 22, 3:05 pm, Islon Scherer islonsche...@gmail.com wrote: Is there a clojure json library that works in clojure 1.3? I tried danlarkin/clojure-json but it gives me error: java.lang.IllegalArgumentException: Unable to resolve classname: IPersistentMap,

Re: JSON library for clojure 1.3

2011-07-22 Thread Islon Scherer
I'll take a look, but I only need basic json encoding/decoding right now. Islon -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be