Re: Tutorial about web development with Clojure

2011-07-18 Thread Anders Rune Jensen
On Mon, Jul 18, 2011 at 8:04 PM, Tarantoga wrote: > I have splitted it into two projects: the Clojure-WebApp itself > (webapp-0.1.0.jar on clojars.org) and the webexample1. > https://github.com/dbushenko/Clojure-WebApp > https://github.com/dbushenko/webexample1 > Next step now: the detailed guide

Re: Tutorial about web development with Clojure

2011-07-18 Thread Tarantoga
I have splitted it into two projects: the Clojure-WebApp itself (webapp-0.1.0.jar on clojars.org) and the webexample1. https://github.com/dbushenko/Clojure-WebApp https://github.com/dbushenko/webexample1 Next step now: the detailed guide of using Clojure-WebApp. -- You received this message becau

Re: Tutorial about web development with Clojure

2011-07-18 Thread Tarantoga
I have reorganised the code, made some refactoring and added new functionality. For now, it is not just a blog but a more general framework which you can reuse for your own webapps. It is here now: https://github.com/dbushenko/Clojure-WebApp . The enhancements: 1. Added validations for models. 2. A

Re: Tutorial about web development with Clojure

2011-06-29 Thread Sergey Didenko
Nice to see so documented example! A few remarks: 1) IMHO sandbar's approach to authorization is better that this ad-hoc one: it places auth data just in the routes instead of controllers, see https://github.com/brentonashworth/sandbar/wiki/Authentication-and-Authorization 2) It would be nice to

Re: Tutorial about web development with Clojure

2011-06-29 Thread Tarantoga
Dmitry Gutov has improved the tutorial. The code looks much better now! -- 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 wi

Re: Tutorial about web development with Clojure

2011-06-16 Thread Junior Zhang
So cool! -- 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

Re: Tutorial about web development with Clojure

2011-06-16 Thread Can Arel
Thanks , very helpful! 2011/6/11 Tarantoga > Hi all, > > I have implemented a small blog (posts, comments, authentication) with > Clojure using the Rails-like style of development. It is located here: > https://github.com/dbushenko/ClojureBlog. The blog uses the following > principles: > 1) MVC

Tutorial about web development with Clojure

2011-06-12 Thread Tarantoga
Hi all, I have implemented a small blog (posts, comments, authentication) with Clojure using the Rails-like style of development. It is located here: https://github.com/dbushenko/ClojureBlog. The blog uses the following principles: 1) MVC architecture; 2) RESTfull design; 3) Convention over config