[Lift] Re: MappedDate.setFromAny only works with strings?

2009-09-12 Thread Charles F. Munat
+1 for joda or scala time if it's not too disruptive Chas. Indrajit Raychaudhuri wrote: Also, the LiftRules.parseDate function currently does DateTime parsing, so I would have to make a breaking change to rename it to parseDateTime and add new parseDate and parseTime (and associated format

[Lift] Checksum problems still?

2009-09-12 Thread Charles F. Munat
I created a blank JPA lift project using this: mvn archetype:generate \ -DarchetypeRepository=http://scala-tools.org/repo-snapshots \ -DarchetypeGroupId=net.liftweb \ -DarchetypeArtifactId=lift-archetype-jpa-basic \ -DarchetypeVersion=1.1-SNAPSHOT \ -DgroupId=com.foo.jpaweb \

[Lift] Re: Lift deal breakers

2009-09-13 Thread Charles F. Munat
+1 I would much prefer it if all JS were in external files (synthetic as necessary) and simply attached to the DOM via ids or classes. I have been building my sites this way for years, and I find it the best practice for reasons already put forth in this discussion. Chas. Timothy Perrett

[Lift] Re: Lift deal breakers

2009-09-13 Thread Charles F. Munat
I'm afraid I have to disagree. As a website developer, I've been putting all my JS into an external file (per page when necessary) for many years without any problems. Every good JS programmer I know does the same. It is considered *more* not less robust to put the JS in an external file and

[Lift] Re: Lift deal breakers

2009-09-13 Thread Charles F. Munat
marius d. wrote: I'm thinking that instead of: button onclick=liftAjax.lift_ajaxHandler ('F1029758482780OTA=true',null, null, null); return false;Press me/ button We could have: button onclick=liftAjax('F1029758482780OTA')Press me/button This is not what I had in mind at all. You

[Lift] Re: Lift deal breakers

2009-09-13 Thread Charles F. Munat
the road someone will have time to look at it. Thanks for the clarification! Chas. marius d. wrote: On Sep 13, 8:00 pm, Charles F. Munat c...@munat.com wrote: marius d. wrote: I'm thinking that instead of: button onclick=liftAjax.lift_ajaxHandler ('F1029758482780OTA=true',null, null

[Lift] Re: Lift deal breakers

2009-09-13 Thread Charles F. Munat
is up-to-date from that time. This means jetty-reloads will reload the class and ensure the next refresh pulls a new version. It's a bit tricky to get set up at first, but worked great! Hopefully this input is helpful! - Josh On Sun, Sep 13, 2009 at 8:48 PM, Charles F. Munat c

[Lift] Re: Lift deal breakers

2009-09-14 Thread Charles F. Munat
Done David Pollak wrote: On Sat, Sep 12, 2009 at 11:48 AM, Charles F. Munat c...@munat.com mailto:c...@munat.com wrote: I, too, would like to be able to move the liftAjax script call to the bottom of the page. Open a ticket and I'll see what I can do... it shouldn't

[Lift] Re: Best way to write a wizard

2009-09-14 Thread Charles F. Munat
Gotta love a tool called bind-o-matic. Is it available from Ronco? Does it come with bonus laxatives? But wait, there's more! Ugh. Chas. David Pollak wrote: On Sun, Sep 13, 2009 at 10:52 AM, Josh Suereth joshua.suer...@gmail.com mailto:joshua.suer...@gmail.com wrote: All,

[Lift] JodaTime and JPA

2009-09-14 Thread Charles F. Munat
It occurs to me that I should probably share this. I've been using Jorge's wonderful Scala wrapper for JodaTime and I needed to persist DateTime and LocalDate. I found a Hibernate project that makes this possible. (Note that Jorge's wrapper is a work in progress and doesn't cover everything

[Lift] Re: Lift deal breakers

2009-09-14 Thread Charles F. Munat
use the Lift JSON stuff much, so it doesn't really affect me anyway. If I find anything about actual speed differences, I'll let you know. Chas. Viktor Klang wrote: On Mon, Sep 14, 2009 at 9:29 PM, Charles F. Munat c...@munat.com mailto:c...@munat.com wrote: When you say

[Lift] Re: The bridge of sorrows

2009-09-14 Thread Charles F. Munat
You, Sir Lancelot on the quest I seek the Holy Grail may cross the bridge of sorrows... David Pollak wrote: What is your name? What is your quest? What is your favorite color? How do you do this in Lift? http://demo.liftweb.net/simple_wizard -- Lift, the simply functional web

[Lift] Spring Security

2009-09-15 Thread Charles F. Munat
Has anyone tried using Spring Security (formerly Acegi) in Lift? If so, care to comment on the experience? Suggestions? Pitfalls? Thanks! Chas. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Lift group. To post

[Lift] Re: Spring Security

2009-09-15 Thread Charles F. Munat
, Charles F. Munat c...@munat.com wrote: Pretty much drop-in capability, integration with CAS or JOSSO for single-sign-on, easy integration of OpenID, easy integration with OpenLDAP, documentation (for the next developer), six years of debugging and tweaking, and not reinventing the wheel

[Lift] Re: Spring Security

2009-09-15 Thread Charles F. Munat
Whew. You had me worried. The current Lift system works with Mapper. If you're using JPA you pretty much have to roll your own. Even with the Mapper version, plenty of work is involved. So I agree, this is an area where it would be nice to have something ready to go for folks who just need

[Lift] Re: Spring Security

2009-09-15 Thread Charles F. Munat
David Pollak wrote: The existing page/URL level security has nothing to do with Mapper. There's nothing that can be done with Mapper that can't be done with JPA (with the exception of Mapper's field-level access control which, to my knowledge, is not being used anywhere.) I meant that

[Lift] JPA with more than one front end (Maven! sigh...)

2009-09-16 Thread Charles F. Munat
I have a Lift project with a JPA backend subproject, and then two Lift front ends that access the same back end, also as subprojects. So my master pom.xml looks like this: modules moduleweb/module moduleweb2/module modulespa/module /modules Works beautifully. Web responds

[Lift] Re: JPA with more than one front end (Maven! sigh...)

2009-09-17 Thread Charles F. Munat
, 2009 at 10:32 PM, Charles F. Munat c...@munat.com mailto:c...@munat.com wrote: I have a Lift project with a JPA backend subproject, and then two Lift front ends that access the same back end, also as subprojects. So my master pom.xml looks like this: modules

[Lift] Re: JPA with more than one front end (Maven! sigh...)

2009-09-17 Thread Charles F. Munat
On Thu, Sep 17, 2009 at 12:03 PM, Charles F. Munat c...@munat.com mailto:c...@munat.com wrote: Actually, I figured that out. They're included. But I have a different problem now -- one that you might know the answer to. I'm loading this war file up

[Lift] Re: JPA with more than one front end (Maven! sigh...)

2009-09-17 Thread Charles F. Munat
, 2009 at 12:03 PM, Charles F. Munat c...@munat.com mailto:c...@munat.com wrote: Actually, I figured that out. They're included. But I have a different problem now -- one that you might know the answer to. I'm loading this war file up in JBossWeb (basically a hopped-up Tomcat

[Lift] Re: JPA with more than one front end (Maven! sigh...)

2009-09-17 Thread Charles F. Munat
defines the order that the modules are loaded, which is why the spa module is first. Derek On Thu, Sep 17, 2009 at 2:24 PM, Charles F. Munat c...@munat.com mailto:c...@munat.com wrote: It's not the AS, it's the souped-up Tomcat (JBoss Web). All their examples are WARs. But sure

[Lift] Weird JPA behavior

2009-09-18 Thread Charles F. Munat
I have an object with associated objects which have associated objects. The first is an Application. An application is associated with a Member. The Member is associated with sets of StreetAddresses and Telephones. In the Application class I have a toHTML method that lays out the detail from

[Lift] Turning off garbage collection

2009-09-21 Thread Charles F. Munat
Is it possible to turn off garbage collection on an individual page if there's nothing to be garbage collected on that page? If so, how does one do it? Is it possible to turn off garbage collection completely? If so, how? I can't seem to find this anywhere. Chas.

[Lift] Dependency hell? More JPA trouble...

2009-09-21 Thread Charles F. Munat
I am getting the following error. I've been up all night trying to track this down with no luck. It seems it has something to do with the GCLib dependency (and, in fact, when I look at the JavaDocs for GCLib, there is no such method). In the target WEB-INF/lib directory, I find:

[Lift] Re: Turning off garbage collection

2009-09-21 Thread Charles F. Munat
pages? Thanks, Xavi On Mon, Sep 21, 2009 at 4:41 AM, Timothy Perrett timo...@getintheloop.eu wrote: Chas, This has been asked a million times on list - did you not try searching one of the many archives? LiftRules.enableLiftGC = false; Tim On 21 Sep 2009, at 08:37, Charles F. Munat

[Lift] Re: Turning off garbage collection

2009-09-21 Thread Charles F. Munat
On 21 Sep 2009, at 08:37, Charles F. Munat wrote: Is it possible to turn off garbage collection on an individual page if there's nothing to be garbage collected on that page? If so, how does one do it? Is it possible to turn off

[Lift] Re: Turning off garbage collection

2009-09-21 Thread Charles F. Munat
. Thanks, David LiftRules.enableLiftGC = false; Tim On 21 Sep 2009, at 08:37, Charles F. Munat wrote: Is it possible to turn off garbage collection on an individual page if there's nothing to be garbage collected on that page? If so, how does

[Lift] Re: Dependency hell? More JPA trouble...

2009-09-21 Thread Charles F. Munat
That's super useful. Thanks! As I suspected, it's the joda-time jar. But luckily so far it seems to work with the other version of gclib. Chas. Aaron Valade wrote: On Sep 21, 2009, at 9:00 AM, Charles F. Munat wrote: Thanks. Pulling the JTA exception out and deleting the 2.0.2 jar

[Lift] Re: You are not banned from this group!!

2009-09-21 Thread Charles F. Munat
But were the sneakers any good? Chas. David Pollak wrote: Folks, Google Groups has apparently sent messages to a number of folks posting to the Lift group telling them that they were banned. This is simply wrong and sucks for the people who received the messages. There has been one

[Lift] Re: You are not banned from this group!!

2009-09-23 Thread Charles F. Munat
Funny, I was just wondering what happened to you maybe two days ago. Are you back, or just checking in? Chas. Oliver Lambert wrote: On Tue, Sep 22, 2009 at 7:21 AM, David Pollak feeder.of.the.be...@gmail.com mailto:feeder.of.the.be...@gmail.com wrote: I will gladly buy

[Lift] Re: You are not banned from this group!!

2009-09-24 Thread Charles F. Munat
my nails for months and haven't felt like communicating or working. Things are starting to look good for him so maybe Im back. I'll send you a beer and lots of hugs. cheers Oliver On Thu, Sep 24, 2009 at 12:08 PM, Charles F. Munat c...@munat.com mailto:c

[Lift] Re: VCard parser...

2009-09-29 Thread Charles F. Munat
Oh, it's no problem, dude! I've been meaning to pick up a bottle of this Jacobsen Vintage #2 beer for a while now, but it's only available in Europe. Maybe you could ship me one? http://www.carlsberggroup.com/brands/Pages/Jacobsen_Vintage_no_2.aspx Chas. :-) marius d. wrote:

[Lift] Re: Are we willing to make a breaking change for Joda Time?

2009-10-16 Thread Charles F. Munat
You have looked at Scala Time, right? I think some of this may already be implemented there, and it would probably be better to extend that rather than reinvent it. But maybe I'm thinking about something else? http://github.com/jorgeortiz85/scala-time Chas. Derek Chen-Becker wrote: Oh, I

[Lift] Re: Are we willing to make a breaking change for Joda Time?

2009-10-16 Thread Charles F. Munat
: I thought we had this discussion in some other thread and because scala-time wasn't 1.0 there was a general reluctancy to use it? We could cherry pick some of the code however; im sure Jorge wouldn't mind :-) Cheers, Tim On 16 Oct 2009, at 11:30, Charles F. Munat wrote: You have

[Lift] Easy way to force IE7 only to quirks mode

2009-10-26 Thread Charles F. Munat
I have an ExtJS form that it failing in IE7 Standards mode (works fine on IE8 or in quirks mode on IE7). I don't want to force quirks mode on all browsers or serve the form improperly. I read that inserting a comment between the XML processing tag and the DOCTYPE declaration will force IE7 to

[Lift] Re: Easy way to force IE7 only to quirks mode

2009-10-27 Thread Charles F. Munat
Thanks! David Pollak wrote: On Mon, Oct 26, 2009 at 9:27 PM, Charles F. Munat c...@munat.com mailto:c...@munat.com wrote: I have an ExtJS form that it failing in IE7 Standards mode (works fine on IE8 or in quirks mode on IE7). I don't want to force quirks mode on all

Re: [Lift] New Lift release process wiki page

2009-12-10 Thread Charles F. Munat
Nice Kris Nuttycombe wrote: On Thu, Dec 10, 2009 at 9:26 PM, Indrajit Raychaudhuri indraj...@gmail.com wrote: On 11/12/09 9:48 AM, Kris Nuttycombe wrote: Right, but the moment another commit goes on the branch you no longer can see exactly where the release was cut from. Thus it's

<    1   2   3   4   5