[Lift] Re: Scope issues with CometActors

2009-08-28 Thread Spencer Uresk
for passing setup information to CometActors. On Thu, Aug 27, 2009 at 7:28 PM, Spencer Uresk sur...@gmail.com wrote: Hey all, I'm trying to build an app that takes advantage of the Comet support in Lift. This is a simple app that displays all messages from a given person and shows new messages

[Lift] Scope issues with CometActors

2009-08-27 Thread Spencer Uresk
Hey all, I'm trying to build an app that takes advantage of the Comet support in Lift. This is a simple app that displays all messages from a given person and shows new messages as they are added. At first, I struggled with trying to pull the request parameter (the url looks like this -

[Lift] Re: This is the official support channel for Lift

2009-07-10 Thread Spencer Uresk
   - GitHub... don't message me on GitHub.  None of the Lift committer will    pull from your repository.  The Lift IP is clean which means that unless you    are a committer and you have written the code yourself, it doesn't get into    Lift.  This allows businesses to use Lift knowing

[Lift] Re: Scala job site written in Lift + a newcomer's experience

2009-07-08 Thread Spencer Uresk
Thanks! The hosting experience is quite good - since it just results in a WAR, I was able to drop it onto my dedicated server that runs a single Tomcat instance with a bunch of Grails and plain Java web apps. It only took a few minutes to setup and deploy. I really thought it would be fun to host

[Lift] Re: Scala job site written in Lift + a newcomer's experience

2009-07-06 Thread Spencer Uresk
are interested in collaborating with Tim I'm sure something good would come up. Tim, any thoughts? Br's, Marius On Jul 6, 7:36 am, Spencer Uresk sur...@gmail.com wrote: Hey all, I hope this isn't considered spammy, but I wanted to send out a link   to a new website I built using Lift

[Lift] Re: Scala job site written in Lift + a newcomer's experience

2009-07-06 Thread Spencer Uresk
together a job board as well. If you don't mind, I'll point scala-jobs.com to your site. Ty On Jul 6, 5:17 am, Ellis ellis.whiteh...@gmail.com wrote: Nice. :) On Jul 6, 6:36 am, Spencer Uresk sur...@gmail.com wrote: Hey all, I hope this isn't considered spammy, but I wanted

[Lift] Re: Scala job site written in Lift + a newcomer's experience

2009-07-06 Thread Spencer Uresk
, 12:36 am, Spencer Uresk sur...@gmail.com wrote: Hey all, I hope this isn't considered spammy, but I wanted to send out a link   to a new website I built using Lift and share my experiences as a   Scala and Lift newbie. I've played around with Scala off and on for over a year now

[Lift] Re: Getting the generated id from a mapper instance

2009-07-05 Thread Spencer Uresk
? Peter Robinett On Jul 4, 2:14 am, Spencer Uresk sur...@gmail.com wrote: I'm having a bit of trouble with a mapper class I'm trying to make. Everything is working fine, except that I cannot get the id of the newly-saved class - it always returns the default value (-1L). Here is what my class

[Lift] Scala job site written in Lift + a newcomer's experience

2009-07-05 Thread Spencer Uresk
Hey all, I hope this isn't considered spammy, but I wanted to send out a link to a new website I built using Lift and share my experiences as a Scala and Lift newbie. I've played around with Scala off and on for over a year now, and also looked at Lift once or twice during that time.

[Lift] Getting the generated id from a mapper instance

2009-07-04 Thread Spencer Uresk
I'm having a bit of trouble with a mapper class I'm trying to make. Everything is working fine, except that I cannot get the id of the newly-saved class - it always returns the default value (-1L). Here is what my class looks like: object Job extends Job with LongKeyedMetaMapper[Job] { }