[Lift] HTTP Authentication Example

2008-11-21 Thread Tim Perrett
Guys, Im working on this http auth stuff - the code I have so far can be found here: http://github.com/timperrett/lift-http-auth-example/tree/master Right now i have a very strange error occurring with the dispatching code - i would appreciate it if someone can download it, take a look, and

[Lift] Re: Snippets of abstract super class not found

2008-11-21 Thread Joachim A.
David, thanks for the reply! I'm using a trait now instead of the abstract class. Using the trait works well. Joachim --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Lift group. To post to this group, send email to

[Lift] Query param for SQL like?

2008-11-21 Thread Joachim A.
Hi, I'm using 0.10-SNAPSHOT and it's mapper classes. Im wondering how I can do something like select * from Test t where t.name LIKE '%test%. I've found the classes QueryParam, OprEnum and Cmp. I've read in the source code but can't see a way to extend this mechanism wih new operators. I've

[Lift] Re: Query param for SQL like?

2008-11-21 Thread David Pollak
I'll try to add the feature this weekend. On Fri, Nov 21, 2008 at 7:19 AM, Joachim A. [EMAIL PROTECTED]wrote: Hi, I'm using 0.10-SNAPSHOT and it's mapper classes. Im wondering how I can do something like select * from Test t where t.name LIKE '%test%. I've found the classes QueryParam,

[Lift] Bug in Chat example?

2008-11-21 Thread Paul Butcher
So I'm gradually getting my head around lift, in particular the comet support. I'm currently trying to understand how the Chat example's AskName functionality works. I believe that I've uncovered a bug, but I'm not sure why it doesn't work or how to fix it. The Chat class's localSetup method is

[Lift] Re: scala plugin with lift in netbeans

2008-11-21 Thread Mike Pence
This is very useful. Just in time, too. Thanks. On Thu, Nov 20, 2008 at 8:45 AM, TylerWeir [EMAIL PROTECTED] wrote: I've had a good experience with the jVi plugin: http://jvi.sourceforge.net/ I've only played with it so far, but if you're a long time Vi(m) user, it will make moving to

[Lift] Re: HTTP Authentication Example

2008-11-21 Thread Derek Chen-Becker
I'm getting a type mismatch, so I assume that's what you mean by dispatching code. It almost looks like you're mixing up object and class apply semantics, since your call looks like case r @ Req(badger :: Nil, , _) = new SimpleHttpBasicAuth(r){ PlainTextResponse(DFGDF) } The

[Lift] Strange behavior for /index.html

2008-11-21 Thread Derek Chen-Becker
I may be missing something here, but when I browse to the root of my webapp context: http://foo.com/context/ I get served up the index.html template *unprocessed*. If I use the full URL instead: http://foo.com/context/index I get the processed template. The only thing I did was add a SiteMap