[Lift] Re: Overriding date/time formatting

2009-10-07 Thread Dirk Louwers
Yes, I am indeed using version. My solution is now properly working and does this as follows: 1) It has a dateParser and dateFormatter that are set to another field by default: defaultDateFormat. The dateParser will be used to parse and format the form fields. The dateFormatter is for display

[Lift] Re: Override the display names for (Mega)ProtoUser

2009-10-07 Thread Dirk Louwers
Hi, Not to be an evil hijacker of threads, but can anyone supply me the english Lift core resource bundle? I would like to work on a dutch translation. Best, Dirk Louwers On Oct 7, 7:43 am, Heiko Seeberger heiko.seeber...@googlemail.com wrote: Jeppe, You are my hero ;-) Thanks, Heiko

[Lift] Re: Override the display names for (Mega)ProtoUser

2009-10-07 Thread Heiko Seeberger
Take it from here: http://github.com/dpp/liftweb/tree/master/lift/src/main/resources/i18n/ Heiko 2009/10/7 Dirk Louwers dirk.louw...@stormlantern.nl Hi, Not to be an evil hijacker of threads, but can anyone supply me the english Lift core resource bundle? I would like to work on a dutch

[Lift] Re: Overriding date/time formatting

2009-10-07 Thread Jeppe Nejsum Madsen
Dirk Louwers dirk.louw...@stormlantern.nl writes: If it would be at all usefull I'd be happy to share the code. Please do. I'll eventually have to support different locales at some point /Jeppe --~--~-~--~~~---~--~~ You received this message because you

[Lift] Re: Binding a snippet in a comet actor?

2009-10-07 Thread Somindra Bhattacharya
Thanks for responding, Naftoli. I tried changing the code to: def handleSubmit() = { Log.info(GOT A SUBMIT IN INVITE) net.liftweb.http.js.JsCmds.Run(alert('Hey')) } ajaxForm( bind(elem, xhtml, submit - submit(Click, () = handleSubmit() ), )

[Lift] Re: Started integrating lift in a scala+spring project. Feedback?

2009-10-07 Thread rintcius
Yes, but I am referring to the case when there is no Full(session). I.e. how do I get the servlet context in the 2nd case at the place where I am currently throwing a RTE. def servletContext = { S.servletSession match { case Full(session) = session.getServletContext() case _ =

[Lift] Re: lift-json and attributes

2009-10-07 Thread Richard Dallaway
On Mon, Oct 5, 2009 at 9:01 PM, Joni Freeman freeman.j...@gmail.com wrote: Thanks Richard! This is a feature request and I just committed an implementation to my branch. I've just pulled 1-1 SNAPSHOT, tried it, and it works just how I need it to. Thank you Richard

[Lift] Supporting Jetty 7 Continuations

2009-10-07 Thread Timothy Perrett
Guys, I just wanted to rename this thread and raise this for proper discussion. API's between J6.x and J7.x appear to be the same, its mainly the package names and structure that have changed. Is it feasible to add a match statement to replace the current val assignments that have essentially

[Lift] Re: How to suppress / override / escape context path rewriting?

2009-10-07 Thread AndrewM
Hi, Perhaps a bit of a hack, but a redirect like the following might do the trick: LiftRules.dispatch.prepend(NamedPF(redirect context/mainapp requests to mainapp) { case Req(mainapp :: page, , _) = () = Full(RedirectResponse(S.hostAndPath.replace(S.contextPath, ) +

[Lift] Re: RESTful JSON server that supports jQuery or JSONP callback

2009-10-07 Thread opyate
Hey guys, I managed to build in callback support, and I draw your attention to the implementation here: http://github.com/opyate/Ken/blob/master/ken-server/src/main/scala/com/opyate/ken/lib/API.scala Excerpt: snip override def dispatch: LiftRules.DispatchPF = { // modify the returned

[Lift] Re: lift nearly inaccessible for newby

2009-10-07 Thread koveen
Hi Stefan and everybody, I am a bit overwhelmed by the enormous response on my mail and am very grateful for it. Last evening, after seeing the amounts of mail, I started working again and ended quite late. I think I even made some progress! (at least Maven thought I made some) So the

[Lift] Re: Override the display names for (Mega)ProtoUser

2009-10-07 Thread Dirk Louwers
Cheers, I've finished the translation. Who do I send the file to for integration and how can I have Lift pick it up in the meanwhile? Best, Dirk Louwers On Oct 7, 8:41 am, Heiko Seeberger heiko.seeber...@googlemail.com wrote: Take it from

[Lift] Re: Override the display names for (Mega)ProtoUser

2009-10-07 Thread Jeppe Nejsum Madsen
Dirk Louwers dirk.louw...@stormlantern.nl writes: Cheers, I've finished the translation. Who do I send the file to for integration and how can I have Lift pick it up in the meanwhile? You can place the file in src/main/resources/i18n and set the locale using LiftRules.localeCalculator

[Lift] Re: Override the display names for (Mega)ProtoUser

2009-10-07 Thread Timothy Perrett
An example of locale calculator can be found here: http://is.gd/1NXGN Cheers, Tim On 7 Oct 2009, at 13:04, Jeppe Nejsum Madsen wrote: Dirk Louwers dirk.louw...@stormlantern.nl writes: Cheers, I've finished the translation. Who do I send the file to for integration and how can I have

[Lift] Re: Overriding date/time formatting

2009-10-07 Thread Dirk Louwers
Here goes. I have also added the possibility to mark the field as required. That proved to be less trivial than expected since validators can only work on the field type and not the raw string. class MappedLocalDateTime[T:Mapper[T]](fieldOwner: T) extends MappedDateTime[T](fieldOwner) {

[Lift] Re: Override the display names for (Mega)ProtoUser

2009-10-07 Thread Dirk Louwers
Thanks, works like a charm. Am quite happy with the way Lift calculates the locale at the moment though. Dirk On Oct 7, 2:25 pm, Timothy Perrett timo...@getintheloop.eu wrote: An example of locale calculator can be found here:http://is.gd/1NXGN Cheers, Tim On 7 Oct 2009, at 13:04, Jeppe

[Lift] Re: Supporting Jetty 7 Continuations

2009-10-07 Thread David Pollak
I was hoping to generically support Servlet 3.0 continuations (which should work for Jetty 7 and Glassfish). Please open a ticket for it. On Wed, Oct 7, 2009 at 2:23 AM, Timothy Perrett timo...@getintheloop.euwrote: Guys, I just wanted to rename this thread and raise this for proper

[Lift] Re: How to suppress / override / escape context path rewriting?

2009-10-07 Thread David Pollak
It's possible, but not easy. Please open a ticket for exclude certain paths during URL re-write and I'll work on it tomorrow. On Tue, Oct 6, 2009 at 10:07 AM, Ross Mellgren dri...@gmail.com wrote: I'm deploying a Lift application into JBoss as another WAR alongside the rest of our

[Lift] Re: Started integrating lift in a scala+spring project. Feedback?

2009-10-07 Thread David Pollak
In Lift 1.1, there is no S.servletSession method. Without a session, you cannot find the context and even with a session, you have to look to see if the session is associated with a particular provider (Lift-speak for the thing that's forwarding requests to Lift). Your best bet is to go find

[Lift] Eclipse m2eclipse builds

2009-10-07 Thread bdols
Hello, I'd thought I'd try using m2eclipse's SCM import to load the lift trunk source from git and use Eclipse 3.5 + m2eclipse 0.9.8 as the build mechanism. I have the scala 2.7.5 plugin loaded and have made some progress cleaning up the build in Eclipse, adding the Scala nature and such. I

[Lift] Having trouble with form submission when using JavaScript to fetch the template

2009-10-07 Thread glenn
My JavaScript/JQuery programming is weak and I'm not sure how to explain the issue I'm having, but here goes... I have a simple template for editing and saving changes to a Mapper object: def edit(item: ModelType) = form {item.toForm(Full(Save), { _.save })} /form

[Lift] Re: Supporting Jetty 7 Continuations

2009-10-07 Thread Timothy Perrett
I know that has been the plan - but I cant help but think that Servlet 3.0 is still a long way off standardisation? What do you think? Cheers, Tim On 7 Oct 2009, at 16:53, David Pollak wrote: I was hoping to generically support Servlet 3.0 continuations (which should work for Jetty 7

[Lift] Re: Having trouble with form submission when using JavaScript to fetch the template

2009-10-07 Thread glenn
If it helps, the HTML produced is identical, regardless of how the template is fetched. So this might suggest there is a problem with Request state regarding the Mapper object, but I don't understand why that should be so. Glenn On Oct 7, 9:12 am, glenn gl...@exmbly.com wrote: My

[Lift] Re: Supporting Jetty 7 Continuations

2009-10-07 Thread David Pollak
On Wed, Oct 7, 2009 at 9:19 AM, Timothy Perrett timo...@getintheloop.euwrote: I know that has been the plan - but I cant help but think that Servlet 3.0 is still a long way off standardisation? It's been 3 months away from being a standard for almost 2 years. ;-) What do you think?

[Lift] Re: Supporting Jetty 7 Continuations

2009-10-07 Thread Timothy Perrett
My point exactly! To that end, why dont we just add a small matching statement or switch that allows using Jetty 7 - only the package structure has changed not the continuation API itself so it should be fairly trivial. The jetty- runner stuff would really get me out of jetty-wrapper-hell

[Lift] Re: Started integrating lift in a scala+spring project. Feedback?

2009-10-07 Thread rintcius
Your best bet is to go find some Java static thing that's going to give you the ServletContext Yes that could work, but is it an idea to make the liftServlet available as an object in Lift (when it has the right provider)? Then the servletContext can be obtained nicely via

[Lift] Re: Started integrating lift in a scala+spring project. Feedback?

2009-10-07 Thread Timothy Perrett
My interpretation of DPP's last post was that he [or moreover, we the team] would not want the context accessible in a sessionless way. Cheers, Tim On 7 Oct 2009, at 18:40, rintcius wrote: Your best bet is to go find some Java static thing that's going to give you the ServletContext

[Lift] Re: Started integrating lift in a scala+spring project. Feedback?

2009-10-07 Thread David Pollak
On Wed, Oct 7, 2009 at 10:40 AM, rintcius rintc...@gmail.com wrote: Your best bet is to go find some Java static thing that's going to give you the ServletContext Yes that could work, but is it an idea to make the liftServlet available as an object in Lift (when it has the right

[Lift] Re: Started integrating lift in a scala+spring project. Feedback?

2009-10-07 Thread marius d.
Servlet dependencies are abstracted away by a dedicated layer from the rest of Lift. LiftRules.context match { case c: HTTPServletContext = c.ctx // this is a ServletContext case _ = } So you can take the ServletContext and do your stuff with it. But in this case you explicitly know

[Lift] Re: Supporting Jetty 7 Continuations

2009-10-07 Thread Randinn
Looks like you need to open a ticket for that :P On Oct 8, 3:50 am, Timothy Perrett timo...@getintheloop.eu wrote: My point exactly! To that end, why dont we just add a small matching statement or switch   that allows using Jetty 7 - only the package structure has changed not   the

[Lift] Re: How to suppress / override / escape context path rewriting?

2009-10-07 Thread Ross Mellgren
That is a pretty good suggestion, unfortunately my cocktail-napkin example of what I was doing was missing out on the fact that the other application has contextPath / -- but, there are some well known prefixes under there so your technique could still work for me, it would just require a

[Lift] Re: How to suppress / override / escape context path rewriting?

2009-10-07 Thread Ross Mellgren
Created, thanks! http://github.com/dpp/liftweb/issues/#issue/83 -Ross On Oct 7, 2009, at 11:56 AM, David Pollak wrote: It's possible, but not easy. Please open a ticket for exclude certain paths during URL re-write and I'll work on it tomorrow. On Tue, Oct 6, 2009 at 10:07 AM, Ross

[Lift] MappedLong null values

2009-10-07 Thread harryh
I have a long field in my database that I want to have a unique index (enforced by the database). Sometimes this field will be empty, in which case I'd like to set it to NULL. 0 won't work because that won't work with the unique index. MappedLong appears to be converting null to 0 internally.

[Lift] PayPal Subscriptions

2009-10-07 Thread Ryan Donahue
I'm receiving IPN updates from PayPal when a subcription is created and when it is canceled. However, the cancel message never make it to my actions method. Apparently, the cancel message does not include the payment_status. I think this results in the message being dropped on the floor

[Lift] Re: MappedLong null values

2009-10-07 Thread David Pollak
On Wed, Oct 7, 2009 at 12:55 PM, harryh har...@gmail.com wrote: I have a long field in my database that I want to have a unique index (enforced by the database). Sometimes this field will be empty, in which case I'd like to set it to NULL. 0 won't work because that won't work with the

[Lift] Re: Started integrating lift in a scala+spring project. Feedback?

2009-10-07 Thread rintcius
Thanks Marius, that was what I was looking for! So in 1.0.2 I can call: def servletContext = LiftRules.context And when I upgrade to 1.1. I will change that into your suggestion. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[Lift] API data linked to a user

2009-10-07 Thread DFectuoso
I'm doing a prototype (learning a little bit more of everything) just for fun using lift and a Firefox extension to understand the usual infrastructure of a delicious api kinda thing. Right now i have the communication from the FFext to a restApi in scala (and it was painless to do it =) ), but

[Lift] Re: Mapper SQL issues w/ Oracle

2009-10-07 Thread Derek Chen-Becker
Please file an issue for the first one on Git: http://github.com/dpp/liftweb/issues As for logging the generated SQL, check out this thread: http://groups.google.com/group/liftweb/browse_thread/thread/36b9080ded72d6e5/b9e7e5724f6594e3?hl=enlnk=gstq=logging#b9e7e5724f6594e3 Let me know if that

[Lift] Re: Naming CometActors

2009-10-07 Thread Derek Chen-Becker
It's been a while since I looked at this, but IIRC, the name for CometActor is there so that you can distinguish multiple actors on the same page. I don't think that you share a CometActor between multiple requests. I think that each request gets a new CometActor that's in place as long as the

[Lift] Re: Naming CometActors

2009-10-07 Thread David Pollak
On Wed, Oct 7, 2009 at 2:39 PM, Derek Chen-Becker dchenbec...@gmail.comwrote: It's been a while since I looked at this, but IIRC, the name for CometActor is there so that you can distinguish multiple actors on the same page. I don't think that you share a CometActor between multiple requests.

[Lift] Re: Naming CometActors

2009-10-07 Thread Jack Widman
The naming each CometActor with a different name is working quite nicely. On Wed, Oct 7, 2009 at 5:51 PM, David Pollak feeder.of.the.be...@gmail.comwrote: On Wed, Oct 7, 2009 at 2:39 PM, Derek Chen-Becker dchenbec...@gmail.comwrote: It's been a while since I looked at this, but IIRC, the

[Lift] Re: PayPal Subscriptions

2009-10-07 Thread Timothy Perrett
Ryan, The PayPal stuff is pretty much my baby - its awesome that your using it in production! See what your saying - its been a while since I did anything with PayPal; what fields *are* returned when the transaction is canceled? Or, specifically, the question is what behaviour do you

[Lift] Re: Started integrating lift in a scala+spring project. Feedback?

2009-10-07 Thread Timothy Perrett
Marius, Out of interest, have you physically ran lift in asyncweb or netty? Just thinking about the embedding possibilities... Cheers, Tim Sent from my iPhone On 7 Oct 2009, at 19:50, marius d. marius.dan...@gmail.com wrote: Servlet dependencies are abstracted away by a dedicated layer

[Lift] problem in getting started

2009-10-07 Thread Prabhat
I followed the document at liftweb and here is what I get: PS C:\Users\Prabhat Gupta\work mvn archetype:generate -U - DarchetypeGroupId=net.liftweb -DarchetypeArtifactId=lift-a rchetype-blank -DarchetypeVersion=1.0 -DremoteRepositories=http:// scala-tools.org/repo-releases

[Lift] Re: problem in getting started

2009-10-07 Thread YING-KWANG TU
Do try with -Dversion=1.1-SNAPSHOT and see. Which version of maven are you using? On Thu, Oct 8, 2009 at 8:57 AM, Prabhat gupta.prab...@gmail.com wrote: I followed the document at liftweb and here is what I get: PS C:\Users\Prabhat Gupta\work mvn archetype:generate -U -

[Lift] Re: Binding a snippet in a comet actor?

2009-10-07 Thread Somindra Bhattacharya
Apologies for bumping this. Is there a way to get the submit button (or an ajaxButton) to work if the snippet which was not originally part of the page is bound by a comet actor? Thanks, Som On Oct 7, 12:32 pm, Somindra Bhattacharya somind...@gmail.com wrote: Thanks for responding, Naftoli.