[Lift] Re: Improving our eclipse experience (was: Why can eclipse never find: org.mortbay.jetty.webapp.WebAppContext)

2009-04-20 Thread Timothy Perrett
I renamed it that because this is about making it easier for newbies to get up and running with eclipse - its not a problem per-say, as everything compiles just fine without it, but this will no doubt save a lot of head scratching which can only be a good thing :-) On Apr 20, 1:07 am, Miles

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

2009-04-20 Thread Timothy Perrett
Thats odd - I added: dependency groupIdorg.mortbay.jetty/groupId artifactIdjetty/artifactId version6.1.16/version scopeprovided/scope /dependency to my pom.xml, but still eclipse cannot find the appropriate class? Cheers, Tim On Apr 20, 8:27 am, Timothy Perrett

[Lift] Re: Lift works on Google App Engine (within the confines of what's possible)

2009-04-20 Thread samreid
If GAE is not a good home for Lift applications, can you recommend some alternate hosts? Are there any free alternates? Thanks, Sam Reid On Apr 17, 3:57 pm, David Pollak feeder.of.the.be...@gmail.com wrote: Folks, I've just committed a version of Lift (including the Lift Example) that runs

[Lift] Scala Exception

2009-04-20 Thread sailormoo...@gmail.com
Hi : need help for the following again. Thanks ^.^ [WARNING] Exception in thread main java.lang.RuntimeException: malformed Scala signature of Room at 12608; reference type _1 of none refers to nonexisting s ymbol. [WARNING] at scala.tools.nsc.symtab.classfile.UnPickler

[Lift] ajax form that submits multiple values?

2009-04-20 Thread ivan
I am just getting started with lift and I am now trying to change a normal form to an ajax form but the method processEntryAdd is never called. def addUser(xhtml : Group) : NodeSeq = { var firstName = var lastName = def processEntryAdd() { Log.info(processEntryAdd: +

[Lift] Re: Scala Exception

2009-04-20 Thread TylerWeir
Did you clean first? Is this new code? Can you copy the code in that it's complaining about? In the future, include more information in the original message. You'll get more help if you make it easy to help you. On Apr 20, 1:26 am, sailormoo...@gmail.com sailormoo...@gmail.com wrote: Hi :

[Lift] Re: Improving our eclipse experience (was: Why can eclipse never find: org.mortbay.jetty.webapp.WebAppContext)

2009-04-20 Thread Josh Suereth
On Sun, Apr 19, 2009 at 8:07 PM, Miles Sabin mi...@milessabin.com wrote: I think that all of this sounds generally positive, but I have to ask ... Why is this thread (now) titled Improving out Eclipse experience? What is Eclipse doing wrong here? Cheers, Miles TBH my biggest

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

2009-04-20 Thread Timothy Perrett
Ooops!! Just realized i posted this in the wrong place. Sorry guys. On Apr 20, 8:56 am, Timothy Perrett timo...@getintheloop.eu wrote: Thats odd - I added:     dependency       groupIdorg.mortbay.jetty/groupId       artifactIdjetty/artifactId       version6.1.16/version      

[Lift] Re: Improving our eclipse experience (was: Why can eclipse never find: org.mortbay.jetty.webapp.WebAppContext)

2009-04-20 Thread Timothy Perrett
Thats odd - I added: dependency groupIdorg.mortbay.jetty/groupId artifactIdjetty/artifactId version6.1.16/version scopeprovided/scope /dependency to my pom.xml, but still eclipse cannot find the appropriate class? Cheers, Tim

[Lift] Re: Object typecast to Mapper

2009-04-20 Thread Sergey Andreev
Hi Amit, Try that one def bindObject[T : AnyRef](className: Class[T]): Option[Object] = { val sClassName = className.getPackage.getName.concat(.Wrap.concat(className.getSimpleName)) try { Some(Class.forName(sClassName.replaceFirst(com.vtech,

[Lift] Re: Liftweb without Maven?

2009-04-20 Thread Sean Reque
Wow, strong words.  I'm wondering what it was about maven that caused this productivity loss?  So far my shop has not run into this, in fact, we've had the opposite vs. Ant.  Granted, Raven and Buildr are different beasts. I apologize for the strong words. I think I was still angry from

[Lift] Re: Lift works on Google App Engine (within the confines of what's possible)

2009-04-20 Thread Jeremy Mawson
Yes, for those who wish to tinker and share their tinkerings with the world, the zero cost entry point* is good. I'm also interested in any opinions of which free services are better than GAE for Lift apps. Cheers Jeremy * - yes, I know there is a billing model for increased bandwidth and other

[Lift] Re: How to create dynamic table in response

2009-04-20 Thread Dmitry Lipovoi
Is it what you looking for? http://wiki.liftweb.net/index.php/Lift_View_First On Mon, Apr 20, 2009 at 4:37 PM, pravin pravinka...@gmail.com wrote: Hi, I want to create dynamic table into response. I have list of objects just i want to place them into table. Also i have to to place these

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

2009-04-20 Thread 刘浩
Hi, Could anyone share the impelmentation of your JPA demo in GAE? Actually I encounter some problem during deploy them in GAE. a. The keys, GAE do not like Long as Key in OneToMany relation, So I use the Key type provided by GAE b. Model.mergeAndFlush(author) did not work as I expected. It

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

2009-04-20 Thread Atsuhiko Yamanaka
Hi, On Mon, Apr 20, 2009 at 10:16 PM, 刘浩 sniperliu...@gmail.com wrote: Hi, Could anyone share the impelmentation of your JPA demo in GAE? Actually I encounter some problem during deploy them in GAE. a. The keys, GAE do not like Long as Key in OneToMany relation, So I use the Key type

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

2009-04-20 Thread Atsuhiko Yamanaka
Hi, On Sun, Apr 12, 2009 at 11:00 PM, Atsuhiko Yamanaka FYI, it must be trivial, but I have confirmed that Lift(org.scala_libs.jpa) has persistence via BigTable through JPA on GAE/J by using entity classes in Java! FYI, I have confirmed that, by using datanucleus-enhancer-1.1.2[1], Scala

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

2009-04-20 Thread 刘浩
Thanks a lot. I will try. 2009/4/20 Atsuhiko Yamanaka atsuhiko.yaman...@gmail.com Hi, On Sun, Apr 12, 2009 at 11:00 PM, Atsuhiko Yamanaka FYI, it must be trivial, but I have confirmed that Lift(org.scala_libs.jpa) has persistence via BigTable through JPA on GAE/J by using entity

[Lift] Re: Liftweb without Maven?

2009-04-20 Thread Josh Suereth
Maven does not really use Jelly anymore (in Maven2). I agree a Maven1 was rather ridiculous. Maven2 takes the idea that the pom should just be configuration + declaration, not implementation details. It's a breath of fresh air from other build tools (even Maven1). The issue still becomes how

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

2009-04-20 Thread Atsuhiko Yamanaka
Hi, On Mon, Apr 20, 2009 at 11:24 PM, 刘浩 sniperliu...@gmail.com wrote: Thanks a lot. I will try. I want to share my Author.scala and Book.scala for further references. I have pasted them at http://gist.github.com/98561 Sincerely, -- Atsuhiko Yamanaka JCraft,Inc. 1-14-20 HONCHO AOBA-KU,

[Lift] where's the wiki

2009-04-20 Thread Tim P
Hi Where exactly is the wiki referenced from on the main liftweb.net site? I can't see any links Tim --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Lift group. To post to this group, send email to

[Lift] Re: Error message undecipherable

2009-04-20 Thread Charles F. Munat
There are three constructors for UnprefixedAttribute (used to add unprefixed attributes to XML elements). All three return an instance of scala.xml.MetaData (attributes are a subclass of MetaData). The first takes: a String, an Option containing a Seq of scala.xml.Nodes, and another piece of

[Lift] developing Scala/Lift using Eclipse

2009-04-20 Thread kmed
Hello all, I just started learning Scala and came across Lift. I am using Eclipse Ganymede with the Scala-Plugin. How do I fully include the Lift- sources to navigate (Strg+Click) into the Lift-Classes? Currently Eclipse does not even understand the absolute _root_-package- thingy. It's pretty

[Lift] Minimal Authorization API for Lift

2009-04-20 Thread BrettK
Hello, I'm trying to integrate lift with CAS. It looks like I'll need to extend HttpAuthentication and UnauthorizedResponse. I looked at the OpenId sources though and they don't seem to extend or make reference to either of these traits. It appears I'll also need to implement MetaMegaProtoUser

[Lift] Re: developing Scala/Lift using Eclipse

2009-04-20 Thread Lee Mighdoll
I've seen that problem, though I don't recall exactly when. Perhaps your your classpath variables aren't set up correctly? With your project highlighted in the project explorer, try the following menu sequence: Project Properties Java Build Path Libraries. On my version, I see a bunch of