[Lift] Re: Db4o Integration

2008-10-06 Thread efleming969
I saw that syntax on a blog a few days ago, but I did not try it with version 7.6. The db4o team has been really dedicated to C# and LINQ in the past few versions, to I would image the library will become more friendly to languageas like Scala. On Oct 6, 12:08 am, Bjarte S. Karlsen [EMAIL

[Lift] Re: Db4o Integration

2008-10-06 Thread David Pollak
efleming969 wrote: I saw that syntax on a blog a few days ago, but I did not try it with version 7.6. The db4o team has been really dedicated to C# and LINQ in the past few versions, to I would image the library will become more friendly to languageas like Scala. Unfortunately, DB4O's

[Lift] Re: expired sessions and log in

2008-10-06 Thread David Pollak
Charles, Having a persisted undo/redo log also implies an audit log... which is very cool. Okay... I think we have to roll these concepts into the Record/Field stuff so that it's all nice and automagic. What are your other requirements/fantasies? Thanks, David On Mon, Oct 6, 2008 at 12:23

[Lift] Re: Simple Build Tool

2008-10-06 Thread Tim Perrett
Hey Derek, I know about this command :-) My observation (of my friend at least) is that his reaction was holy- cow, i need to learn this build tool, a new language and a new framework. The language and framework part you cant get away from invariably but perhaps we can do something on the build

[Lift] Re: recursive binding

2008-10-06 Thread Kris Nuttycombe
I'm happy to assign the IP; although I need it for work I did the development on my own time. Just let me know what you need. Kris On Mon, Oct 6, 2008 at 10:21 AM, David Pollak [EMAIL PROTECTED] wrote: On Mon, Oct 6, 2008 at 9:10 AM, Kris Nuttycombe [EMAIL PROTECTED] wrote: I've cloned

[Lift] Re: Simple Build Tool

2008-10-06 Thread Derek Chen-Becker
I agree on the Maven mojo programming. Anything to simplify custom build scripts would be great, so SBT sounds like an interesting idea. I didn't mean to imply that it was a bad idea, just that you don't need all of the -Ds :) Derek On Mon, Oct 6, 2008 at 9:46 AM, Tim Perrett [EMAIL PROTECTED]

[Lift] Welcome Derek to the Lift committers

2008-10-06 Thread David Pollak
Folks, Derek Chen-Becker has just joined the Lift committers. One might ask What took so long? Derek's been an awesome contributor to the Lift community for more than a year and it's good to see that he's going to be contributing the the Lift codebase. Woo Hoo and Welcome. Thanks, David --

[Lift] Re: Welcome Derek to the Lift committers

2008-10-06 Thread TylerWeir
Welcome Derek! On Oct 6, 1:12 pm, David Pollak [EMAIL PROTECTED] wrote: Folks, Derek Chen-Becker has just joined the Lift committers.  One might ask What took so long?  Derek's been an awesome contributor to the Lift community for more than a year and it's good to see that he's going to be

[Lift] Re: Db4o Integration

2008-10-06 Thread efleming969
David, I've browsed your past discussions on this topic and didn't quite get this point from them. So, according to their interpretation of the GPL, I cannot develop an application using Lift+Db4o, as a consultant, for my customer's internal use? I guess my existing app using wicket+db4o is

[Lift] Re: Welcome Derek to the Lift committers

2008-10-06 Thread Kris Nuttycombe
Congratulations, Derek, and thanks again for all your help! Kris On Mon, Oct 6, 2008 at 11:12 AM, David Pollak [EMAIL PROTECTED] wrote: Folks, Derek Chen-Becker has just joined the Lift committers. One might ask What took so long? Derek's been an awesome contributor to the Lift community

[Lift] Re: recursive binding

2008-10-06 Thread Kris Nuttycombe
Also, if it makes it easier I'm happy to provide the changes as a patch, and I'm a committer on the Jakarta Commons project so I'm familiar with the process of sending a CLA if that helps. Krsi On Mon, Oct 6, 2008 at 10:28 AM, Kris Nuttycombe [EMAIL PROTECTED] wrote: I'm happy to assign the

[Lift] Re: Welcome Derek to the Lift committers

2008-10-06 Thread Jorge Ortiz
Awesome! On Mon, Oct 6, 2008 at 10:12 AM, David Pollak [EMAIL PROTECTED] wrote: Folks, Derek Chen-Becker has just joined the Lift committers. One might ask What took so long? Derek's been an awesome contributor to the Lift community for more than a year and it's good to see that he's

[Lift] Re: Db4o Integration

2008-10-06 Thread Kris Nuttycombe
On Mon, Oct 6, 2008 at 7:53 AM, David Pollak [EMAIL PROTECTED] wrote: Unfortunately, DB4O's choice of license and business model drives them away from JVM-land and toward CLR-land. I've had pretty extensive chats with the DB4O people and would really like to do something with them related

[Lift] Re: Welcome Derek to the Lift committers

2008-10-06 Thread Derek Chen-Becker
Glad to be here and (finally) helping out with things. My first order of business in helping Lift take over the world^W^W^W^W is to get the JPA Demo code into the sites subdir. I should have it up by this afternoon with some minor modifications. Derek On Mon, Oct 6, 2008 at 12:48 PM, Viktor

[Lift] Re: Compilation error with new JPA stuff

2008-10-06 Thread Kris Nuttycombe
I'll look into it tonight; I believe that Glassfish provides open implementations of these APIs and if necessary we can declare the Glassfish jars as dependencies in optional or provided scope. Kris On Mon, Oct 6, 2008 at 5:48 PM, David Pollak [EMAIL PROTECTED] wrote: On Mon, Oct 6, 2008 at

[Lift] Question about Menu.scala

2008-10-06 Thread Charles F. Munat
Can anyone explain to me what this line: loc - request.location.toList if loc.name != name; is doing in this code: def item(text: NodeSeq): NodeSeq = for (name - S.attr(name).toList; request - S.request.toList; loc - request.location.toList if loc.name != name;