[Lift] Re: *** MAJOR BREAKING CHANGES *** LiftRules abstractions

2008-12-15 Thread Marius
Sorry Dan ... There were too many changes in LiftRules. You should be able to determine real quick what changed in LiftRules since the variables naming is more or less the same. If you can not fix your code can you please copy-paste it here ? ... in this way I may be able to help. Br's, Marius

[Lift] Re: JPA and Record

2008-12-15 Thread Daniel Mueller
(Reactivating discussion. I guess it's been discussed more on the committer list, but here you have my 2 cents anyway) For the sake of the Record-JPA discussion, people will fall into two categories when they are using lift: * The first group of people have an existing, working, tested JPA/OR

[Lift] Re: maven problem - can't make ToDo example work - or even get off the ground.

2008-12-15 Thread David Bernard
The scala-tools.org server were off part of sunday. Sorry for interruption. On Mon, Dec 15, 2008 at 02:09, mike beckerle mbecke...@gmail.com wrote: Certainly there is nothing blocking java in any way. However, just trying again, this time it is working better. Somebody has fixed something

[Lift] Re: *** MAJOR BREAKING CHANGES *** LiftRules abstractions

2008-12-15 Thread Viktor Klang
On Sun, Dec 14, 2008 at 10:46 PM, Marius marius.dan...@gmail.com wrote: So LiftConfig would take the role of LiftRules from API perspective meaning that LiftRules could be completely hidden from Lift users but available internally to Lift only ? Since LiftRules would then only expose

[Lift] Re: Working CRUD based on To Do tutorial

2008-12-15 Thread David Pollak
On Sun, Dec 14, 2008 at 5:58 PM, Stefan Scott stefanscottal...@gmail.comwrote: OK, I've gotten through the tutorial (page 23). I was doing a bit of testing - I tried putting a string of length 2 into field 'desc' (which is supposed to be at least 3 characters long), and I didn't get an

[Lift] Re: Binding Problem - Help

2008-12-15 Thread David Pollak
On Sun, Dec 14, 2008 at 9:39 PM, Oliver ola...@gmail.com wrote: Thanks for all the help, it appears to all be working now - I had a feeling I was going to be fed to the lions, wolves, tigers and bears if I didn't find a fix, and quick. One question, does the name generation have to be based

[Lift] Re: Comment on net.liftweb.sitemap.Loc.Title

2008-12-15 Thread David Pollak
Derek, If you can get to the page (it has a valid parameter), then the title calculation will default to using linkText and you'll get what you want. Put another way, there should be no case where the title of the page is the page's name. Thanks, David On Sun, Dec 14, 2008 at 6:52 AM, Derek

[Lift] Re: *** MAJOR BREAKING CHANGES *** LiftRules abstractions

2008-12-15 Thread Dano
Marius, David was able to help me out. In the future, I will have to dig myself out of the situation. For those Lift developers that are not 'committers' it is harder to know how to proceed. Perhaps in the future, the breaking changes should include a little more detail on which signatures

[Lift] Re: JPA and Record

2008-12-15 Thread Daniel Mueller
I never did it with JPA, that's why I mentioned that there might be some problems to circumnavigate (my websearch turned up that it's not possible, but I might have missed something). But on the actual backend frameworks you can do things like that (or at least hibernate can [1,2, also see 3

[Lift] Re: The first Lift tutorial: a ToDo application

2008-12-15 Thread David Pollak
Fixed. On Fri, Dec 5, 2008 at 6:36 PM, Kris Nuttycombe kris.nuttyco...@gmail.comwrote: Very nice! On the minor typo front: lift:Util.out Please Log In bDude/b /lift:Uitl.out Should be lift:Util.out Please Log In bDude/b /lift:Util.out Kris On Fri, Dec 5, 2008 at 7:18 PM,

[Lift] Re: The first Lift tutorial: a ToDo application

2008-12-15 Thread David Pollak
Changed On Fri, Dec 5, 2008 at 6:42 PM, Kris Nuttycombe kris.nuttyco...@gmail.comwrote: Also, for consistency: table lift:show.users tr tdf:first_nameDavid/f:first_name/td tdf:last_namePollak/f:last_name/td /tr /lift:show.users /table = table

[Lift] Re: The first Lift tutorial: a ToDo application

2008-12-15 Thread David Pollak
On Mon, Dec 8, 2008 at 10:27 AM, Dano dan_ole...@yahoo.com wrote: David, Since I am really interested in view/logic separation, I focused on sections 1.5 and 1.6. My overall feedback is that I really like starting with the example and following up with the philosophy. Also, you

[Lift] Re: Comment on net.liftweb.sitemap.Loc.Title

2008-12-15 Thread Derek Chen-Becker
Thanks, I missed the title(ParamType) method where it defaults to the link text. Derek On Mon, Dec 15, 2008 at 11:46 AM, David Pollak feeder.of.the.be...@gmail.com wrote: Derek, If you can get to the page (it has a valid parameter), then the title calculation will default to using linkText

[Lift] Re: JPA and Record

2008-12-15 Thread Derek Chen-Becker
That may be workable but I have to recoil a little when we talk about bringing Spring into the mix. It has its purpose but I would hate to make it an implicit requirement of using Record with JPA; it's just huge. Derek On Mon, Dec 15, 2008 at 12:46 PM, Daniel Mueller

[Lift] error message tag

2008-12-15 Thread Oliver
I have the following to output an error message against lift:msg id=errMsg type=msgs/ When I have an error its all fine, but when I don't have an error I get the following html span id=errMsg/ Is there any way of getting rid of the empty span? cheers Oliver

[Lift] context path

2008-12-15 Thread Oliver
I have a few links within my pages where I don't want lift to prepend the context path to the url. Is there any way to do this? cheers Oliver --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Lift group. To post to

[Lift] Re: error message tag

2008-12-15 Thread Charles F. Munat
I copied and pasted the error message code into my own error message utility and then changed the blank output to Text(). I also wanted to rewrite other parts of it. It seems there is always a trade-off between convenience and configuration. My coding style is very different from David's (at