[Lift] Re: Facebook Application

2010-02-09 Thread Leo Lännenmäki
/dpp/liftweb/commit/3b6686201e3b7f22100e52a04734fd4c... Leo, if you're trying to use fb connect, hopefully this will help you out (I would suggest using connect rather than redirecting to FB) Will push out to master pending your comments and RB. - Jon On Feb 5, 2010, at 10:35 AM, Leo

[Lift] Re: Facebook Application

2010-02-05 Thread Leo Lännenmäki
Hi, I have only tried to do a couple of things with the Facebook module (I'm using 2.0-M1) and I have gotten some of the stuff to actually work :) Photo upload would be something like this: import java.io.File import org.apache.commons.io.FileUtils import net.liftweb.ext_api.facebook._ import

[Lift] Re: S.params disappear?

2010-02-05 Thread Leo Lännenmäki
Hmpf. Same problem here :( def statefulDispatchTable: LiftRules.DispatchPF = { ... case r...@req(List(api, foo), , PutRequest) = () = update(req) ... } def update(req: Req): LiftResponse = { for (name - req.paramNames) { Log.info(name) Log.info(req.param(name).openOr(empty)) }

[Lift] Re: S.params disappear?

2010-02-05 Thread Leo Lännenmäki
Hmpf. I have got the Tomcat PUT problem also. def statefulDispatchTable: LiftRules.DispatchPF = { ... case r...@req(List(api, foo), , PutRequest) = () = update(req) ... } def update(req: Req): LiftResponse = { for (name - req.paramNames) { Log.info(name)

[Lift] Re: Building war for production mode.

2009-11-28 Thread Leo Lännenmäki
Hi, I'm a Lift newbie so I don't know if my way is the right way but here goes: I generated my app using the archetype lift-archetype-basic in order to get the database configuration stuff to Boot.scala. Then i created two files src/main/webapp/WEB-INF/classes/props/default.props and