[Lift] Exception thrown in Firefox but not in IE. What Gives????

2009-04-11 Thread glenn
I'm getting concerned about the viability of a Lift/JQuery web solution. I am trying to implement a widget around the jquery.mbContainerPlus.1.7.6 plugin. I can get it to work in IE 7, but not in Firefox 3.08, where I get the following firebug error: [Exception... Component returned failure

[Lift] maven lift-archtype 1.0 generators don't work with jetty version 7.0.0.

2009-04-11 Thread glenn
By the way, the maven lift-archetype-basic and blank ver 1.0 project generators don't work with jetty versions greater than 6.1.16. The new jetty 7.0.0 does not contain WebAppContext.class, which Lift requires. Glenn Silverman --~--~-~--~~~---~--~~ You received

[Lift] Scala and Lift/JavaFX code similarieties

2009-04-11 Thread glenn
Has anyone looked at JavaFX lately? Is there a common code base, or is it just coincidence that it looks and behaves a lot like Scala? Glenn Silverman --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Lift group. To

[Lift] Re: Build Comet applications using Scala, Lift, and jQuery

2009-04-11 Thread 刘浩
I am studying the Comet example from developerworks. But encounter below problems. I build the code with Lift 1.0 release a. Compatible problem in AuctionActor.scala Line29 val button = button type=button{S.?(Bid Now!)}/button % (onclick -

[Lift] Re: n00b question on code in Starting with Lift (and some feedback)

2009-04-11 Thread David Pollak
On Sat, Apr 11, 2009 at 6:18 AM, Antony Courtney antony.court...@gmail.comwrote: I am an experienced Java / C++ / Haskell programmer, but new to Scala and Lift. I've been learning Scala for a few weeks and am just starting to learn about Lift. This question may show more about my ignorance

[Lift] Re: [scala] Google App Engine for Scala!

2009-04-11 Thread David Pollak
On Sat, Apr 11, 2009 at 12:53 AM, Atsuhiko Yamanaka atsuhiko.yaman...@gmail.com wrote: Hi, On Fri, Apr 10, 2009 at 10:03 PM, David Pollak feeder.of.the.be...@gmail.com wrote: Thank you! Thank you! Thank you! I'd like to kiss you (but my wife might get upset) Next time you come to the

[Lift] Re: Scala and Lift/JavaFX code similarieties

2009-04-11 Thread David Pollak
On Fri, Apr 10, 2009 at 10:14 PM, glenn gl...@exmbly.com wrote: Has anyone looked at JavaFX lately? Is there a common code base, or is it just coincidence that it looks and behaves a lot like Scala? No common code base that I know of. Perhaps the JavaFX guys are just borrowing great ideas

[Lift] Re: Exception thrown in Firefox but not in IE. What Gives????

2009-04-11 Thread David Pollak
On Fri, Apr 10, 2009 at 9:49 PM, glenn gl...@exmbly.com wrote: I'm getting concerned about the viability of a Lift/JQuery web solution. I am trying to implement a widget around the jquery.mbContainerPlus.1.7.6 plugin. I can get it to work in IE 7, but not in Firefox 3.08, where I get the

[Lift] Re: maven lift-archtype 1.0 generators don't work with jetty version 7.0.0.

2009-04-11 Thread David Pollak
On Fri, Apr 10, 2009 at 10:03 PM, glenn gl...@exmbly.com wrote: By the way, the maven lift-archetype-basic and blank ver 1.0 project generators don't work with jetty versions greater than 6.1.16. The new jetty 7.0.0 does not contain WebAppContext.class, which Lift requires. Yes. This is

[Lift] Re: [scala] Google App Engine for Scala!

2009-04-11 Thread Atsuhiko Yamanaka
Hi, On Sat, Apr 11, 2009 at 10:43 PM, David Pollak feeder.of.the.be...@gmail.com wrote: GAE supports JPA and there's a lot of Lift JPA support... so maybe we can update the example code to use JPA and we'll have persistence via BigTable. I may have missed something, but it seems that the

[Lift] Re: Google App Engine for Scala!

2009-04-11 Thread walterc
cool, guys, looking forward to it, especially the current thread actor bit. On Apr 11, 9:43 pm, David Pollak feeder.of.the.be...@gmail.com wrote: On Sat, Apr 11, 2009 at 12:53 AM, Atsuhiko Yamanaka atsuhiko.yaman...@gmail.com wrote: Hi, On Fri, Apr 10, 2009 at 10:03 PM, David Pollak

[Lift] Re: [scala] Google App Engine for Scala!

2009-04-11 Thread João Pereira
Hi, I'm trying to have a simple lift app running on GAE. The app is generated from the archetype-blank I can deploy it on GAE, but I'm getting : Failed LiftFilter java.lang.NoClassDefFoundError: java.net.InetAddress is a restricted class. Please see the Google App Engine developer's guide for

[Lift] Re: n00b question on code in Starting with Lift (and some feedback)

2009-04-11 Thread David Pollak
On Sat, Apr 11, 2009 at 7:32 AM, Antony Courtney antony.court...@gmail.comwrote: Thanks, David, that is tremendously helpful. Clearly I was just missing the object import. While Starting with Lift shouldn't be a Scala tutorial, I think it would be quite helpful in this case to mention

[Lift] Re: Exception thrown in Firefox but not in IE. What Gives????

2009-04-11 Thread glenn
Dave, I appreciate your input. I've tried many permutations of code to try to get this to work. The ![CDATA[ block didn;t work. I even just put all the code into default.html as-is - no widget at all, no special parsing involved, and still no luck. I did get rid of the Firefox error by removing

[Lift] Re: Exception thrown in Firefox but not in IE. What Gives????

2009-04-11 Thread David Pollak
Please post a simple example that fails on Firefox. I'll clean it up for you. On Sat, Apr 11, 2009 at 11:42 AM, glenn gl...@exmbly.com wrote: Dave, I appreciate your input. I've tried many permutations of code to try to get this to work. The ![CDATA[ block didn;t work. I even just put all

[Lift] Re: TemplateCache

2009-04-11 Thread marius d.
I just committed a SoftReferenceCache implementation in utils and it is used by InMemoryCache. So far testing it looks pretty good. The point of a SoftReferenceMap is probably obvious to prevent (as much as possible) OOME. This is fine IMHO cause it's more important to have the application

[Lift] Re: TemplateCache

2009-04-11 Thread marius d.
I committed it of course in wip-marius-template-cache branch. On Apr 11, 11:16 pm, marius d. marius.dan...@gmail.com wrote: I just committed a SoftReferenceCache implementation in utils and it is used by InMemoryCache. So far testing it looks pretty good. The point of a SoftReferenceMap is

[Lift] Re: Lift helloworld on App Engine: java.lang.NoClassDefFoundError: Could not initialize class net.liftweb.http.LiftRules$

2009-04-11 Thread David Pollak
See this fork of Lift:http://github.com/ymnk/liftweb/tree/master We'll roll the changes into 1.1-SNAPSHOT next week. On Sat, Apr 11, 2009 at 6:18 PM, Dave Briccetti da...@davebsoft.com wrote: Hi. Should this be working now, or are we waiting for code changes? 1. ... 2. W 04-11

[Lift] Re: stateful vs stateless snippet

2009-04-11 Thread Oliver Lambert
On Sun, Apr 12, 2009 at 7:14 AM, marius d. marius.dan...@gmail.com wrote: The StatefulSnippet is not a snippet instance that is always used in the context of your session. Yikes! in that case, I wrote a whole application based on false assumption. It says in the lift book a StatefulSnippet

[Lift] JPA or JDO best for us on Google App Engine?

2009-04-11 Thread mal3
We are going to use the Google App Engine (GAE) for our app using GWT with the new Google GWT Eclipse plugin support. Our Scala and Lift skills are not up to the task of doing it in Lift right now. Once we have Exploring Lift and Beginning Scala books in our hot little hands in May, we will

[Lift] Re: JPA or JDO best for us on Google App Engine?

2009-04-11 Thread Oliver Lambert
On Sun, Apr 12, 2009 at 2:54 PM, David Pollak feeder.of.the.be...@gmail.com wrote: On Sat, Apr 11, 2009 at 8:36 PM, mal3 malcolm.gor...@gmail.com wrote: We are going to use the Google App Engine (GAE) for our app using GWT with the new Google GWT Eclipse plugin support. Our Scala and

[Lift] Re: JPA or JDO best for us on Google App Engine?

2009-04-11 Thread David Pollak
On Sat, Apr 11, 2009 at 10:21 PM, Oliver Lambert olambo...@gmail.comwrote: On Sun, Apr 12, 2009 at 2:54 PM, David Pollak feeder.of.the.be...@gmail.com wrote: On Sat, Apr 11, 2009 at 8:36 PM, mal3 malcolm.gor...@gmail.com wrote: We are going to use the Google App Engine (GAE) for our

[Lift] Re: stateful vs stateless snippet

2009-04-11 Thread marius d.
As I said you CAN use it to span the same snippet instance for multiple pages. Please see the two fundamental functions offered by StatefulSnippet: link and redirect. Lift book provided correct information. On Apr 12, 5:44 am, Oliver Lambert olambo...@gmail.com wrote: On Sun, Apr 12, 2009 at

[Lift] Re: stateful vs stateless snippet

2009-04-11 Thread marius d.
Oh and if that helps from the Scaladoc: * If the StatefulSnippet is used to render a form, a hidden field is added to * the form that causes the same instance to be used on the page that is the * target of the form submission. On Apr 12, 8:49 am, marius d. marius.dan...@gmail.com wrote: