Re: ANN: funkyweb 0.1.0 - The clojure webframework with route inference

2010-10-07 Thread Patrik Hedman
2010/10/6 Cédric Pineau cedric.pin...@gmail.com Looks nice indeed ! Very REST oriented, isn't it ? Thank you :) Yes, I try to keep it as RESTful as possible One thing : I'm new to clojure and gathering information about the whole ecosystem, including web frameworks, but find it hard to

Re: ANN: funkyweb 0.1.0 - The clojure webframework with route inference

2010-10-07 Thread Cédric Pineau
That's make things clearer to me, and especially James' summary which is simple when exposed but time-consuming to figure out by yourself :-) As for Flash, I've never met such thing in my everyday java world, but it's a nice idea. Thanks to all of you ! -- Cédric -- You received this

Re: ANN: funkyweb 0.1.0 - The clojure webframework with route inference

2010-10-07 Thread Jacek Laskowski
2010/10/7 Cédric Pineau cedric.pin...@gmail.com: As for Flash, I've never met such thing in my everyday java world, but it's a nice idea. The flash scope is quite popular in web frameworks like Seam Framework or Grails (which I believe inherited it from Spring MVC). It then popped up in other

Re: ANN: funkyweb 0.1.0 - The clojure webframework with route inference

2010-10-07 Thread Sean Corfield
2010/10/7 Cédric Pineau cedric.pin...@gmail.com: As for Flash, I've never met such thing in my everyday java world, but it's a nice idea. It's pretty standard in web frameworks. I see it in nearly every MVC framework in CFML and Grails / Rails do it too - as well as several Java web frameworks.

Re: ANN: funkyweb 0.1.0 - The clojure webframework with route inference

2010-10-07 Thread Patrik Hedman
Yes, this is by no means unique to funkyweb. In fact, under the hood it uses the flash middleware provided by ring which is available to all ring based framework. Cheers - Patrik 2010/10/7 Sean Corfield seancorfi...@gmail.com 2010/10/7 Cédric Pineau cedric.pin...@gmail.com: As for Flash,

Re: ANN: funkyweb 0.1.0 - The clojure webframework with route inference

2010-10-07 Thread Cédric Pineau
Flash just can't be so wide spread in the java world. No it can't. It does ??? Oh please, please !!.. ok shame on me :-/ ! Cédric, learning java stuff on clojure's mailing lists :-) ! -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this

ANN: funkyweb 0.1.0 - The clojure webframework with route inference

2010-10-06 Thread Patrik Hedman
I'm pleased to announce the 0.1.0 release of funkyweb, my ring based clojure webframework. It provides the following main abstractions: Controller: Controllers work somewhat like namespaces in that they define the base of the route so any actions defined under a controller will have routes

Re: ANN: funkyweb 0.1.0 - The clojure webframework with route inference

2010-10-06 Thread Scott Jaderholm
Very nice. I really love the docs. Covers how to use almost everything with plenty of example code and short descriptions. I like variadic args, type hints. Doesn't cover how to test a handler (from code) and see response. Maybe move query-string request docs up to where query-string params

Re: ANN: funkyweb 0.1.0 - The clojure webframework with route inference

2010-10-06 Thread Patrik Hedman
2010/10/6 Scott Jaderholm jaderh...@gmail.com Very nice. I really love the docs. Covers how to use almost everything with plenty of example code and short descriptions. Thanks, I'm happy they aren't too confusing :) I like variadic args, type hints. Doesn't cover how to test a handler

Re: ANN: funkyweb 0.1.0 - The clojure webframework with route inference

2010-10-06 Thread Cédric Pineau
Looks nice indeed ! Very REST oriented, isn't it ? One thing : I'm new to clojure and gathering information about the whole ecosystem, including web frameworks, but find it hard to figure what to choose. It would help to have clues of funkyweb's positioning regarding other frameworks such as

Re: ANN: funkyweb 0.1.0 - The clojure webframework with route inference

2010-10-06 Thread Michael Ossareh
2010/10/6 Cédric Pineau cedric.pin...@gmail.com One thing : I'm new to clojure and gathering information about the whole ecosystem, including web frameworks, but find it hard to figure what to choose. This has been raised quite a few times recently. Is this a sign of some critical mass

Re: ANN: funkyweb 0.1.0 - The clojure webframework with route inference

2010-10-06 Thread James Reeves
2010/10/6 Cédric Pineau cedric.pin...@gmail.com:  One thing : I'm new to clojure and gathering information about the whole ecosystem, including web frameworks, but find it hard to figure what to choose. It would help to have clues of funkyweb's positioning regarding other frameworks such as