[Lift] Re: Where to start

2009-04-09 Thread Darren Hague
You may also wish to have a look at ESME, an Apache Incubator project which expands on Skittr in a number of ways. There is OpenID sign-on, search (via Lucene/Compass), a DSL for filtering routing messages, an HTTP-based API, and much more. Check out http://blog.esme.us and

[Lift] Re: Proposed URL Shortening widget

2009-04-05 Thread Darren Hague
ESME is an open-source Enterprise-focussed microblogging system written in Scala on Lift. Please see http://blog.esme.us/ for more details, and http://incubator.apache.org/esme to get to the source code etc. Cheers, Darren (ESME Tech Lead) On Apr 5, 2:36 am, Chad Skinner chadwskin...@gmail.com

[Lift] Re: [ANN] Lift 1.0 is released

2009-02-27 Thread Darren Hague
Stability at last! :-) Seriously, well done to all the committers and all the great people on this group that help newbies like me build awesome Lift-based apps. Major thanks to David, without whom ESME would be merely a poor clone of Skittr with some SAP stuff on top. Cheers! Darren

[Lift] Re: *** MAJOR BREAKING CHANGES *** LiftRules abstractions

2008-12-18 Thread Darren Hague
Dano (or David), Care to share what your changes were? I'm facing the same problem right now with ESME - lots of LiftRules.append* and LiftRules.prepend* in Boot.scala which will not compile any more - even Googling LiftRules RulesSeq returns no results at all... :-( Cheers, Darren On Dec 15,

[Lift] Re: *** MAJOR BREAKING CHANGES *** LiftRules abstractions

2008-12-18 Thread Darren Hague
this:  // Old and busted LiftRules.prependDispatch(RestAPI.dispatch) // New hotness LiftRules.dispatch.prepend(RestAPI.dispatch) Lather, rinse and repeat for dispatch, rewrite, etc Better, or worse? Ty On Dec 18, 4:47 pm, Darren Hague dha...@fortybeans.com wrote: Dano (or David

[Lift] Re: *** MAJOR BREAKING CHANGES *** LiftRules abstractions

2008-12-18 Thread Darren Hague
) } LiftRules.appendViewDispatch { case user_view :: _ = UserView } LiftRules.appendEarly(makeUtf8) appendView - viewDispatch.append almost worked, except that the case line failed to compile. - Darren On Dec 18, 10:39 pm, Darren Hague dha...@fortybeans.com wrote: A bit better, thanks - that fixed

[Lift] Re: *** MAJOR BREAKING CHANGES *** LiftRules abstractions

2008-12-18 Thread Darren Hague
, Any LiftRules.append* or LiftRules.prepend* becomes LiftRules.*.append or LiftRules.*.prepend e.g.: LiftRules.prependTemplate(User.templates) - LiftRules.template.prepend(User.templates) On Thu, Dec 18, 2008 at 2:39 PM, Darren Hague dha...@fortybeans.com wrote: A bit better, thanks

[Lift] Re: *** MAJOR BREAKING CHANGES *** LiftRules abstractions

2008-12-18 Thread Darren Hague
Apache ESME source is now fixed building cleanly again - thanks to David for this. Cheers, Darren On Dec 18, 10:48 pm, Darren Hague dha...@fortybeans.com wrote: David, error: value template is not a member of object net.liftweb.http.LiftRules I removed net/liftweb from my Maven repo