[Lift] Re: Code generation plugin for SBT

2010-01-11 Thread Brian Hsu
Hello, I'm interested in this project. Just in case that there are someone eles is working on this too. Currently I have started working on the part of generate Lift website skeleton corresponding to lift-archetype-blank / lift-archetype-basic in mvn repo. I've not finished it yet, but as soon

[Lift] Re: Is this correct way to handle RESTful like URL in Lift Framework?

2010-01-10 Thread Brian Hsu
:: _, suffix, reqType) = // return a () = LiftResponse } or for non REST API you could use LiftRules.statefulRewrite.append { case RewriteRequest(ParsePath(test :: _, _, _, _), reqType, request) = ... } Br's, Marius On Jan 10, 7:32 am, Brian Hsu brianhsu@gmail.com wrote: -- You

[Lift] Is this correct way to handle RESTful like URL in Lift Framework?

2010-01-09 Thread Brian Hsu
If I have a URL like http://localhost/Test/edit/{id} and I would like the {id} transform to a parameter instead of URL path part. The problem is that if I have a template named edit.html under webapp/ Test, which is the template I use to edit an item. And I have a Menu instance like the