[Lift] Re: Where are the dragons hiding?

2009-11-23 Thread ngocdaothanh
Is Lift suitable for web for mobiles? Generally web for mobiles (especially in Japan) has some characteristics: * No JavaScript support * No cookie support * Non standard HTML tags Thanks I think this thread contains the key dragons in Lift.  Basically, it boils down to: Lift is highly

[Lift] Re: Where are the dragons hiding?

2009-11-23 Thread Marius
It should be just fine. You can tell lift to not use Ajax or any JS at all. There are some flags in LiftRules to do that. LiftRules.setAutoIncludeComet = false; LiftRules.setAutoIncludeAjax = false; Besides that just don't use JS in your markup or don't use Lift's ajax stuff. Lift works with

Re: [Lift] Re: Where are the dragons hiding?

2009-11-23 Thread Jeppe Nejsum Madsen
Marius marius.dan...@gmail.com writes: It should be just fine. You can tell lift to not use Ajax or any JS at all. There are some flags in LiftRules to do that. LiftRules.setAutoIncludeComet = false; LiftRules.setAutoIncludeAjax = false; Besides that just don't use JS in your markup or

Re: [Lift] Re: Where are the dragons hiding?

2009-11-23 Thread David Pollak
On Mon, Nov 23, 2009 at 7:24 AM, Jeppe Nejsum Madsen je...@ingolfs.dkwrote: Marius marius.dan...@gmail.com writes: It should be just fine. You can tell lift to not use Ajax or any JS at all. There are some flags in LiftRules to do that. LiftRules.setAutoIncludeComet = false;

[Lift] Re: Where are the dragons hiding?

2009-11-19 Thread Paul Butcher
On Nov 19, 12:37 am, David Pollak feeder.of.the.be...@gmail.com wrote: But one of the key things to keep in mind regarding Lift is how we as a community handle problems.  One of the biggest, nastiest bugs in Lift-land crept into the code in the last few

[Lift] Re: Where are the dragons hiding?

2009-11-18 Thread cody koeninger
On Nov 18, 11:32 am, harryh har...@gmail.com wrote: - Don't use Lift with MySQL, they don't play nicely.  Use PostgreSQL Can you elaborate? -- You received this message because you are subscribed to the Google Groups Lift group. To post to this group, send email to

[Lift] Re: Where are the dragons hiding?

2009-11-18 Thread Marius
If I may .. this statement is confusing leading to incorrect interpretation. Lift works with MySQL as ANY Java application. Harry may have referred to Lift's Mapper framework which for MySql may be some problems that I'm not aware of. But if MySQL becomes critical for you I'm sure things can be

[Lift] Re: Where are the dragons hiding?

2009-11-18 Thread harryh
See this thread: http://groups.google.com/group/liftweb/browse_thread/thread/4a174ecf34873967/ In which we discuss how certain queries generated by Mapper perform very poorly on MySQL. Certainly this problem could be addressed, but until it is using Mapper with MySQL will be problematic.

Re: [Lift] Re: Where are the dragons hiding?

2009-11-18 Thread Eros Candelaresi
Hi, Marius wrote: On Nov 18, 6:31 pm, Paul Butcher p...@paulbutcher.com wrote: I'm seriously considering Lift for a new project. I know what the benefits of Scala and Lift are (that's why I'm seriously considering this as a route forwards :-) What I'm wondering is whether there are any

[Lift] Re: Where are the dragons hiding?

2009-11-18 Thread Paul Butcher
Thanks everyone - that's exactly the kind of information that I was looking for. Now all I need to do is persuade my colleagues that selecting a young technology (again) is a good idea ;-) Thanks again, paul.butcher-msgCount++ -- You received this message because you are subscribed to the

Re: [Lift] Re: Where are the dragons hiding?

2009-11-18 Thread David Pollak
Paul, I think this thread contains the key dragons in Lift. Basically, it boils down to: Lift is highly stateful... that has its pluses and minuses. We're working on mitigating the minuses (session replication and persistence). But one of the key things to keep in mind regarding Lift is how we