[Lift] Re: mysterious script

2008-09-30 Thread David Pollak
Lift's changed up to send stuff via separate files rather than inline on the page. On Fri, Sep 26, 2008 at 2:40 PM, Charles F. Munat <[EMAIL PROTECTED]> wrote: > > Daniel Green wrote: > >> Is there an easy way to make this download as a separate .js file > >> instead of inline? Or to suppress it

[Lift] Change and New Features

2008-09-30 Thread David Pollak
Folks, I've moved the JavaScript for Comet and Ajax to separately loaded JS files rather than putting them on the page. LiftRules.autoIncludeComet allows you to determine if the Comet stuff will be automatically included LiftRules.autoIncludeAjax allows you to determine if the Ajax stuff will be

[Lift] Re: Suggestion for JPA Tutorial

2008-09-30 Thread Derek Chen-Becker
I may have some time tomorrow to get it working. My initial goal is actually to get JNDI and JTA working in Jetty so that we have a dev environment that matches the production env. Derek On Tue, Sep 30, 2008 at 5:01 PM, Tim Perrett <[EMAIL PROTECTED]> wrote: > > Awesome - I personally would be v

[Lift] Re: Suggestion for JPA Tutorial

2008-09-30 Thread Tim Perrett
Awesome - I personally would be very interested to hear how you got on wtih hibernate proper. Perhaps you can bosh up a quick sample ;-) Cheers Kris Tim On Sep 30, 11:14 pm, "Kris Nuttycombe" <[EMAIL PROTECTED]> wrote: > Yup, Hibernate & JTA on Glassfish, also with EJB remoting. --~--~---

[Lift] Re: Caching JPA entities and JPA vs Hibernate

2008-09-30 Thread Tim Perrett
Sorry to drag this thread back up - I only just got back round to it (its my hobby project) WARN - No configuration found. Configuring ehcache from ehcache- failsafe.xml found in the classpath: jar:file:/Users/timperrett/.m2/ repository/net/sf/ehcache/ehcache/1.5.0/ehcache-1.5.0.jar!/ehcache- fa

[Lift] Re: Suggestion for JPA Tutorial

2008-09-30 Thread Kris Nuttycombe
Yup, Hibernate & JTA on Glassfish, also with EJB remoting. On Tue, Sep 30, 2008 at 4:12 PM, Tim Perrett <[EMAIL PROTECTED]> wrote: > > Cool Kris - from your posts to the list im guessing your using > hibernate proper and JTA right? > > On Sep 30, 10:21 pm, "Kris Nuttycombe" <[EMAIL PROTECTED]> >

[Lift] Re: Suggestion for JPA Tutorial

2008-09-30 Thread Tim Perrett
Cool Kris - from your posts to the list im guessing your using hibernate proper and JTA right? On Sep 30, 10:21 pm, "Kris Nuttycombe" <[EMAIL PROTECTED]> wrote: > I've been trying to find the time to build out an extension to Derek's > sample app, but between it being crunch time at work and tryi

[Lift] Re: Suggestion for JPA Tutorial

2008-09-30 Thread Kris Nuttycombe
I've been trying to find the time to build out an extension to Derek's sample app, but between it being crunch time at work and trying to spend some time with my 1 year old, I haven't gotten around to it. I should be able to find a couple of hours in the next week or so to work on it, though. Kri

[Lift] Suggestion for JPA Tutorial

2008-09-30 Thread Tim Perrett
Just a quick suggestion for the JPA tutorial Might it be a good idea to explain how to then take that JPA app to production with JNDI? I know thats another aspect of complexity, but it seems like it would be something that most people would want to know... Cheers Tim --~--~-~--~---

[Lift] Re: LiftRules.useXhtmlMimeType got lost...

2008-09-30 Thread David Pollak
On Tue, Sep 30, 2008 at 7:15 AM, Derek Chen-Becker <[EMAIL PROTECTED]>wrote: > No comments? > No time to comment... I try to comment later this week. :-( > > > On Sat, Sep 27, 2008 at 7:51 AM, Derek Chen-Becker <[EMAIL PROTECTED]>wrote: > >> Back in this commit: >> http://github.com/dpp/liftweb

[Lift] Re: Dynamic form building powered by XML

2008-09-30 Thread Tim Perrett
Ok been noodling this - what bout something like: object Wizard extends LiftWizard { val someGlobalVar: String = "something" object ScreenOne = new WizarScreen({ var firstName = TextField(value, FieldType.STRING, { // validation rules go here }) var lastName = TextField(val

[Lift] Re: LiftRules.useXhtmlMimeType got lost...

2008-09-30 Thread Derek Chen-Becker
No comments? On Sat, Sep 27, 2008 at 7:51 AM, Derek Chen-Becker <[EMAIL PROTECTED]>wrote: > Back in this commit: > http://github.com/dpp/liftweb/commit/645d9649a5956f0b67edbe8ded4d1b0136164980 > > If the intention is for LiftRules.determineContentType to be the sole > arbiter of the "Content-Type

[Lift] Re: PayPal Module for Lift

2008-09-30 Thread Tim Perrett
Ok cool - so effectively, code I might need to ask somone to past into boot to use the paypal functionality might look like: val paypalDispatcher: LiftRules.DispatchPf = { case RequestMatcher(r, ParsePath("paypal" :: _ :: Nil, _, _), _, _) => PayPal.processIpnRequest(r) } Im wonderin