[Lift] Re: Scala 2.7.2 and documentation?

2008-11-18 Thread Charles F. Munat
It's on github, I think: git clone git://github.com/tjweir/liftbook.git Chas. Marius wrote: Tyler is there a way for me to sneaky see what you guys done so far? :) Br's, Marius On Nov 18, 2:50 am, TylerWeir [EMAIL PROTECTED] wrote: Derek and I expect the first draft of ours in

[Lift] Re: REST CRUD web service

2008-11-18 Thread Tim Perrett
Hi Chas, The code isn't online anywhere right now - I have a couple of eurostar journeys to go on this week so working on this will pass the time :-) Watch this space is all I can offer right now - when I have something to share, I'll push the code to my github repo Cheers, Tim Sent from

[Lift] Re: Scala 2.7.2 and documentation?

2008-11-18 Thread David Pollak
On Mon, Nov 17, 2008 at 10:55 PM, Derek Chen-Becker [EMAIL PROTECTED]wrote: I didn't realize someone else was writing one, Yep. Me. but hey, the more the merrier :) Yep. I'm devoting December through March to the book and hope to have something complete and published by JavaOne.

[Lift] Re: Scala 2.7.2 and documentation?

2008-11-18 Thread Marius
Thanks man ! On Nov 18, 10:28 am, Charles F. Munat [EMAIL PROTECTED] wrote: It's on github, I think: git clone git://github.com/tjweir/liftbook.git Chas. Marius wrote: Tyler is there a way for me to sneaky see what you guys done so far? :) Br's, Marius On Nov 18, 2:50 am,

[Lift] Re: I need to show all nested menus (drop down)

2008-11-18 Thread Ramzi BEN YAHIA
David, I can do without it for now, however I'll be giving a demo at the end of this week, and I just did a mvn clean jetty:run and, well, I get 110 compilation errors now ! :-) I'm not going to panic, is there some way to fix the lift version in maven to the one which I've been using until now?

[Lift] Re: Tracking Down a Memory Leak

2008-11-18 Thread David Pollak
Matt, I've got a fair number of production sites running Lift-based apps and I haven't experienced this particular issue. However, if the heap size in my container starts off small (256M), then I do see out of memory issues. How big is the heap size in your app? How many sessions do you have

[Lift] Re: REST CRUD web service

2008-11-18 Thread Erick Fleming
Chas, I didn't read the Berkley DB XML License as an Apache Software License, I think it is more like GPL. I think the Apache License is included for the libraries that Berkley DB XML depends on. I'm also interested in the Berkley DB for Java system and the Apache license is not included for

[Lift] Re: REST CRUD web service

2008-11-18 Thread Alex Boisvert
On Mon, Nov 17, 2008 at 9:04 PM, Charles F. Munat [EMAIL PROTECTED] wrote: Everything you need to know is here: http://www.oracle.com/technology/documentation/berkeley-db/xml/index.html It's an Apache Software License:

[Lift] Re: REST CRUD web service

2008-11-18 Thread Erick Fleming
Alex, this is a quote from the link you gave: Under the open source license, you must release the complete source code for the application that uses Berkeley DB, Berkeley DB Java Edition or Berkeley DB XML. You do not need to release the source code for components that are generally installed on

[Lift] Re: REST CRUD web service

2008-11-18 Thread Alex Boisvert
Yes, you should rely on their information.I over-simplified it by taking for granted that you may have proprietary code. aelx On Tue, Nov 18, 2008 at 10:16 AM, Erick Fleming [EMAIL PROTECTED]wrote: Alex, this is a quote from the link you gave: Under the open source license, you must

[Lift] Re: REST CRUD web service

2008-11-18 Thread Charles F. Munat
If I read this correctly: Do I have to pay for a Berkeley DB license to use it in my Perl or Python scripts? No, you may use the Berkeley DB open source license at no cost. The Berkeley DB open source license requires that software that uses Berkeley DB be freely redistributable. In the case

[Lift] Re: REST CRUD web service

2008-11-18 Thread Charles F. Munat
I believe that this is only if you redistribute it. But these licenses are very confusing. Chas. Erick Fleming wrote: Alex, this is a quote from the link you gave: Under the open source license, you must release the complete source code for the application that uses Berkeley DB,

[Lift] Re: REST CRUD web service

2008-11-18 Thread Tim Perrett
Taking this back on-topic, does anyone want to help mr work on this http auth stuff? I have a good plan in place design wise now, but if people are interested in helping with the implementation then hit me up off-list Cheers Tim Sent from my iPhone On 18 Nov 2008, at 20:51, Charles F.

[Lift] Re: TextileTestSpec failure with latest lift/scala 2.7.2

2008-11-18 Thread Dano
This is a really curious error. Using identical sources, it passes on my Linux box but fails on my Windows laptop. I cleaned out my maven repository on my laptop just in case, but got the same result. On Nov 17, 1:58 pm, David Pollak [EMAIL PROTECTED] wrote: Weird. I spent a while this

[Lift] Re: Error on compile with 2.7.2

2008-11-18 Thread Charles F. Munat
One would think so, and maybe it is, but the problem was actually caused by two errors in my code: a missing ) and then later an extra ) which turned what should have been a compile time error into a runtime error. That said, do you think there is a problem with the compiler? Chas. Jorge

[Lift] Re: Error on compile with 2.7.2

2008-11-18 Thread Jorge Ortiz
Anytime the compiler throws an exception it's a bug and should be filed. On Tue, Nov 18, 2008 at 3:23 PM, Charles F. Munat [EMAIL PROTECTED] wrote: One would think so, and maybe it is, but the problem was actually caused by two errors in my code: a missing ) and then later an extra ) which

[Lift] Re: Error on compile with 2.7.2

2008-11-18 Thread Charles F. Munat
Done. Jorge Ortiz wrote: Anytime the compiler throws an exception it's a bug and should be filed. On Tue, Nov 18, 2008 at 3:23 PM, Charles F. Munat [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: One would think so, and maybe it is, but the problem was actually caused by

[Lift] Re: TextileTestSpec failure with latest lift/scala 2.7.2

2008-11-18 Thread David Pollak
On Tue, Nov 18, 2008 at 1:17 PM, Dano [EMAIL PROTECTED] wrote: This is a really curious error. Using identical sources, it passes on my Linux box but fails on my Windows laptop. It's a CR/LF issue. I'll fix it up. I cleaned out my maven repository on my laptop just in case, but got