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 (from code) and see response.
>

That's because at the moment there is no easy to do that without digging
deep into the framework but it is definitely on my todo list.


> Maybe move query-string request docs up to where query-string params
> introduced.
>

Maybe, though they are part of different sections which I don't want to
break up but maybe move the helpers section up so it appears right after the
url helpers section?

I like integer and vector returns.
>
> I'd like cookies-set to take :expires :never so user doesn't have to write
> a far future date out in that special format.
>

That's a great idea


> Wondering about lack of compojure style request destructuring in route.
> Does (request-get) return the request that you then destructure in a let in
> your action?
>

request-get let's you grab specific keys out of the request, which you could
then destructure in a let provided that the key points to a data structure,
but it does not return the entire request itself. If you need access to the
complete request map it's available through
funkyweb.helpers.request/*request*


> Cheers,
> Scott
>
>
> On Wed, Oct 6, 2010 at 3:30 AM, Patrik Hedman <patrik.hed...@gmail.com>wrote:
>
>> 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 generated that starts with the controller name.
>>
>> Action: Actions looks like functions in that they take a name an argument
>> list and a body and they generates routes and url helper functions based on
>> their name and arguments.
>>
>> More information can be found in the readme included with the source code
>> at http://github.com/pmh/funkyweb
>>
>> I would love to hear what you think about it.
>>
>>
>> - Patrik
>>
>> --
>> 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 unsubscribe from this group, send email to
>> clojure+unsubscr...@googlegroups.com<clojure%2bunsubscr...@googlegroups.com>
>> For more options, visit this group at
>> http://groups.google.com/group/clojure?hl=en
>
>
>  --
> 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 unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com<clojure%2bunsubscr...@googlegroups.com>
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en


Cheers
- Patrik

-- 
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 unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to