[Lift] Re: Bug in MappedEmail: emailPattern is wrong

2009-09-20 Thread Richard Dallaway
Apologies if I've duplicated the ticket, but I couldn't find it one, and this issue is going to impact me too. http://github.com/dpp/liftweb/issues/#issue/65 Cheers Richard On Fri, Sep 18, 2009 at 6:32 PM, David Pollak wrote: > Please open a ticket > > On Wed, Sep 16, 2009 at 11:27 AM, harryh

[Lift] Re: Session locking...

2009-09-20 Thread Timothy Perrett
Hmm - see what you mean Derek. It seems like it would be really helpful to have a addSetupFunction method on LiftSession - what are your thoughts? Cheers, Tim On Sep 19, 9:17 pm, Derek Chen-Becker wrote: > S.session.foreach { _.addCleanupFunction { sess => ... } }, I think should > work. I have

[Lift] Re: Session locking...

2009-09-20 Thread marius d.
What would addSetupFunction do ? I think this locking mechanism can be irrespective of LiftSession and built into your app. Such as you set a logical lock to a resource that a certain session has access to. Other sessions trying to use that resource would be denied access with a user friendly mes

[Lift] javascript disabled on mobile phone browsers

2009-09-20 Thread koveen
Hi, I am new to this lift group and just starting to build a website for mobile phone users. While I like to use dynamically loaded pages, I am afraid that some older mobile phone browsers don't support Javascript. Is there a way to include Javascript in my web-pages, but to keep a working site

[Lift] Re: Pain Building Lift

2009-09-20 Thread mond ray mond
1.0.2 builds OK on my Mac (as above) but the 1.1 build still gives me the setSQL failures. On further inspection... bash-3.2$ java -version java version "1.6.0_15" Java(TM) SE Runtime Environment (build 1.6.0_15-b03-226) Java HotSpot(TM) 64-Bit Server VM (build 14.1-b02-92, mixed mode) bash

[Lift] Non-autogenerated primary keys

2009-09-20 Thread Thomas
I'm in the process of working with an application that uses UUIDs for the primary keys of all my tables. After updating to 1.1-M5, I started getting "java.lang.NullPointerException: Trying to open an empty Box " excptions. After tracking down what the problem was, it seems that checkin for suppor

[Lift] Re: Pain Building Lift

2009-09-20 Thread runt
Thank you all for the responses. I try and build everything from source - and no it is not always easy but I like doing it. I sudo'd because I was in /usr/local/src - on my machine this did require sudo. I had already played around with lift using the maven commands and from the Eclipse IDE - thi

[Lift] Re: Pain Building Lift

2009-09-20 Thread runt
Thank you all for the responses. I try and build everything from source - and no it is not always easy but I like doing it. I sudo'd because I was in /usr/local/src - on my machine this did require sudo. I had already played around with lift using the maven commands and from the Eclipse IDE - thi

[Lift] Re: Pain Building Lift

2009-09-20 Thread Tim Nelson
The appendices were not included in the printed book. You can get them online here: http://www.apress.com/book/downloadfile/4390 Also, they are included in the os version of the book: http://groups.google.com/group/the-lift-book Tim On Sun, Sep 20, 2009 at 7:44 AM, runt wrote: > > Thank you al

[Lift] Re: Alternate Lift builds?

2009-09-20 Thread Indrajit Raychaudhuri
On 20/09/09 4:46 AM, David Pollak wrote: > Care to take a look at the pom.xml files in the dpp_wip_actorized branch > and make them to the right thing? Done: http://github.com/dpp/liftweb/commit/45dc2e55bd37104aa2a56990914b38a1895b18f6 But the tests don't pass in lift-util hope that's a known

[Lift] Re: Tabs + menu builder

2009-09-20 Thread Jeppe Nejsum Madsen
tiro writes: > Jeppe> We've made primary/secondary navigation where primary > navigation is ... > > I did something similar..found it difficult to work with the default > snippets. > But found it hard, when writing my own group snippet, to identify the > current Loc within the LocGroups Locs. I

[Lift] HSQL support

2009-09-20 Thread sergey
Hi! My question is - does Lift support HSQL now? (I have the following error when trying to create connection to HSQL- scala.MatchError: HSQL Database Engine) Thank you --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Group

[Lift] Re: javascript disabled on mobile phone browsers

2009-09-20 Thread marius d.
Yes .. you can use lift with zero javascript. But obviously you won't have comet, you need to turn off auto Ajax and comet generation from LiftRules LiftRules.enableLiftGC = false; Liftules.autoIncludeComet = session => false Liftules.autoIncludeAjax = session => false Br's, Marius On Sep 20,

[Lift] Re: HSQL support

2009-09-20 Thread David Pollak
On Sun, Sep 20, 2009 at 5:18 PM, sergey wrote: > > Hi! > > My question is - does Lift support HSQL now? > No and we have no plans to support HSQL. We support H2. Is there a particular reason that you need HSQL? > (I have the following error when trying to create connection to HSQL- > scala.M