[Lift] use of deprecated functions

2009-02-15 Thread Marius
Hi, Building latest code I'm getting [WARNING] /media/WORK/marius/repository/github/liftweb/lift/src/main/ scala/net/liftweb/http/LiftSession.scala:951: warning: method processBind in trait BindHelpers is deprecated [WARNING] findTemplate(name).map(s = processBind(s, atWhat)). [WARNING]

[Lift] Re: use of deprecated functions

2009-02-15 Thread Tim Perrett
Good point - were also using xbind(...) quite a bit too which is deprecated. Cheers, Tim On Feb 15, 12:34 pm, Marius marius.dan...@gmail.com wrote: Hi, Building latest code I'm getting [WARNING] /media/WORK/marius/repository/github/liftweb/lift/src/main/

[Lift] Re: strange interaction with jQuery

2009-02-15 Thread Meredith Gregory
Marius, Agreed on two points: - JsRaw is not the culprit -- it seems to be a bad interaction with version of JavaScript modules - JavaScript is the source of the meta problem -- there's no way to get the compiler to warn about this because this world is devoid of useful typing

[Lift] Re: strange interaction with jQuery

2009-02-15 Thread Viktor Klang
How about a defect as a result of upgrading jQuery to 1.3.1? Viktor, Rogue Software Architect 15 feb 2009 kl. 14.43 Meredith Gregory lgreg.mered...@gmail.com skrev: Marius, Agreed on two points: JsRaw is not the culprit -- it seems to be a bad interaction with version of JavaScript

[Lift] Facebook group for Lift

2009-02-15 Thread Toby DiPasquale
Hi all, I saw that there was no Facebook group for Lift, so I created one: http://www.facebook.com/group.php?gid=66907508781ref=mf Check it out if you're on Facebook. -- Toby DiPasquale --~--~-~--~~~---~--~~ You received this message because you are subscribed

[Lift] Re: Facebook group for Lift

2009-02-15 Thread Marius
Sweet !!! On Feb 15, 7:34 pm, Toby DiPasquale codeslin...@gmail.com wrote: Hi all, I saw that there was no Facebook group for Lift, so I created one: http://www.facebook.com/group.php?gid=66907508781ref=mf Check it out if you're on Facebook. -- Toby DiPasquale

[Lift] Re: Facebook group for Lift

2009-02-15 Thread David Pollak
Awesome! On Sun, Feb 15, 2009 at 9:34 AM, Toby DiPasquale codeslin...@gmail.comwrote: Hi all, I saw that there was no Facebook group for Lift, so I created one: http://www.facebook.com/group.php?gid=66907508781ref=mf Check it out if you're on Facebook. -- Toby DiPasquale --

[Lift] Re: Lift SalesForce?

2009-02-15 Thread pmorelli
Salesforce has 2 wsdls, the Enterprise and the Partner. The enterprise is strongly typed, and customized to the org you're generating it from. The partner is probably what you want to start. There are also a variety of other wsdls, from apex to metadata to customized apex ws endpoints, but I'm

[Lift] Re: Lift SalesForce?

2009-02-15 Thread David Pollak
Pete, Are you coming to my Scala preso @ SalesForce on 2/25? Thanks, David On Sun, Feb 15, 2009 at 12:40 PM, pmorelli pmore...@gmail.com wrote: Salesforce has 2 wsdls, the Enterprise and the Partner. The enterprise is strongly typed, and customized to the org you're generating it from. The

[Lift] Re: Lift SalesForce?

2009-02-15 Thread pmorelli
was planning on it, barring any prod emergencies. ;o) David Pollak-4 wrote: Pete, Are you coming to my Scala preso @ SalesForce on 2/25? Thanks, David On Sun, Feb 15, 2009 at 12:40 PM, pmorelli pmore...@gmail.com wrote: Salesforce has 2 wsdls, the Enterprise and the Partner.

[Lift] Re: Lift SalesForce?

2009-02-15 Thread Tim Perrett
Hey Pete, I did not realise that the enterprise WSDL is org specific - can you elaborate in which ways it is specific? Ideally, the enterprise one is most useful for me (and I would imagine other users). Can you explain how plugins such as http://activesfdc.rubyforge.org/ achieve organization

[Lift] Re: [scala] typed browser scripting languages?

2009-02-15 Thread Mark Chadwick
Thanks! Has anybody used this? Yes. I've used haxe extensively. Though mostly for Flash apps, I've had to dig into its JavaScript a number of times (generally when doing Flash - DOM interactions). Watch out if you don't need very much JavaScript code, as even the smallest haxe script will

[Lift] Re: Lift SalesForce?

2009-02-15 Thread pmorelli
It's actually user specific, so, based on what permissions you have, or sharing, or FLS, etc, down to the field level in entities. From an org perspective, it's dependent on what edition, what features you've purchased/provisioned, what version endpoint you're hitting, etc. Most tools use the

[Lift] Re: JSON stack overflow issue

2009-02-15 Thread Paul O'Rorke
Hi, David: I'm not using JSON directly myself and when I do a search on json it only shows up on one line in the default.html page: script id=json src=/classpath/json.js type=text/javascript/ Perhaps it is JSON that is being used under the hood? I am using CRUDIFY and the menu items for

[Lift] Re: JSON stack overflow issue

2009-02-15 Thread David Pollak
Paul, Something is calling JSONParser with a parameter that's causing the stack overflow. You can use Firebug to see what the browser is sending to the server. That's a way to capture the JSON. Wireshark is a way of intercepting the HTTP traffic and you can see what the client is sending to the