[Lift] Re: Please welcome Kris Nuttycombe as a Lift committer

2008-10-14 Thread David Bernard
welcome Kris --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Lift group. To post to this group, send email to liftweb@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more

[Lift] Re: Please welcome Kris Nuttycombe as a Lift committer

2008-10-14 Thread Marius
Welcome Kris! On Oct 14, 2:32 pm, David Pollak [EMAIL PROTECTED] wrote: Folks, I pleased to announce that Kris Nuttycombe has joined the Lift committers. Please join me in welcoming him! Thanks, David -- Lift, the simply functional web frameworkhttp://liftweb.net Collaborative Task

[Lift] Re: Please welcome Kris Nuttycombe as a Lift committer

2008-10-14 Thread TylerWeir
Welcome Kris! On Oct 14, 9:13 am, Tim Perrett [EMAIL PROTECTED] wrote: Welcome Kris! On Oct 14, 1:13 pm, Viktor Klang [EMAIL PROTECTED] wrote: Glad to have you aboard Kris! On Tue, Oct 14, 2008 at 2:00 PM, Marius [EMAIL PROTECTED] wrote: Welcome Kris! On Oct 14, 2:32 pm, David

[Lift] Re: Menu Builder active element

2008-10-14 Thread David Pollak
Bjarte, What version of Lift are you using? In the current trunk-head (0.10-SNAPSHOT, which I would strongly encourage using), you can do: lift:Menu.builder li_item:class=foo li_path:class=bar / And the class of the current menu item will be foo and the class of the li's that are in the

[Lift] Re: Menu Builder active element

2008-10-14 Thread Bjarte S. Karlsen
Hello David, I am using 0.9 it looks like. But I can upgrade to 0.10-SNAPSHOT tonight and check out this change. The only thing I have done in the project is to try to adapt the default template so it is no hassle. Thanks for the response. I belive it will solve my problem :) regards,

[Lift] Re: Please welcome Kris Nuttycombe as a Lift committer

2008-10-14 Thread Viktor Klang
Glad to have you aboard Kris! On Tue, Oct 14, 2008 at 2:00 PM, Marius [EMAIL PROTECTED] wrote: Welcome Kris! On Oct 14, 2:32 pm, David Pollak [EMAIL PROTECTED] wrote: Folks, I pleased to announce that Kris Nuttycombe has joined the Lift committers. Please join me in welcoming him!

[Lift] Re: Configuring a lift webapp for https?

2008-10-14 Thread David Pollak
Kris, You should be able to run Lift as a Servlet rather than a filter by specifying the net.liftweb.http.LiftServlet in your web.xml file. Try this... if it doesn't work, it's a bug in Lift. Thanks, David On Mon, Oct 13, 2008 at 7:49 PM, Kris Nuttycombe [EMAIL PROTECTED]wrote: Hi, all,

[Lift] Please welcome Kris Nuttycombe as a Lift committer

2008-10-14 Thread David Pollak
Folks, I pleased to announce that Kris Nuttycombe has joined the Lift committers. Please join me in welcoming him! Thanks, David -- Lift, the simply functional web framework http://liftweb.net Collaborative Task Management http://much4.us Follow me: http://twitter.com/dpp Git some:

[Lift] A stupid question

2008-10-14 Thread Charles F. Munat
I must be very dense, but these cans are kicking my butt (kicking my can?). No matter what I do, I seem to end up with everything back in the can! I just... want... to get... the goodies... OUT! An example: How do I extract the URI of the current page from S.request? I am currently doing

[Lift] JPA questions (was Re: SnippetFailure)

2008-10-14 Thread Charles F. Munat
A question from the JPADemo... How does one use this: def find[A](clazz: Class[A], id: Any) = em.find[A](clazz, id).asInstanceOf[A] If I have a User model and I want to use find on the EntityManager, what goes where the *** is below: val user = Model.find[User]( ***, userId) Thanks,

[Lift] Re: JPA questions (was Re: SnippetFailure)

2008-10-14 Thread Derek Chen-Becker
You can just do Model.find(classOf[User], userId) and the type on the method will be inferred. Any time you see a Class[A] parameter, it wants the result of a classOf[...]. Derek On Tue, Oct 14, 2008 at 5:52 PM, Charles F. Munat [EMAIL PROTECTED] wrote: A question from the JPADemo... How