[Lift] Re: CRUDifying a model

2009-04-22 Thread David Pollak
On Wed, Apr 22, 2009 at 1:00 AM, Tobias Daub wrote: > > Hi Dave, > > First, is this 1.1 version already in the repository, will maven > automatically get it? > When you build, do mvn -U clean jetty:run The -U flag forces the updated > > Second, where do I have to override those methods, in th

[Lift] Re: CRUDifying a model

2009-04-22 Thread TylerWeir
> Can you give a short code sample how to override, please. > There are many examples, please take a look at the source on github. On Apr 22, 4:00 am, Tobias Daub wrote: > Hi Dave, > > First, is this 1.1 version already in the repository, will maven > automatically get it? > > Second, where do

[Lift] Re: CRUDifying a model

2009-04-22 Thread Tobias Daub
Hi Dave, First, is this 1.1 version already in the repository, will maven automatically get it? Second, where do I have to override those methods, in the class that extends Mapper or in the companion object? Can you give a short code sample how to override, please. thanks. > I've added new

[Lift] Re: CRUDifying a model

2009-04-21 Thread David Pollak
On Sun, Apr 19, 2009 at 3:44 AM, Tobias Daub wrote: > > Do I understand it right..before I had to do this access stuff in > Boot.scala. But those new methods I've to override directly in the > companion object of the class that inherits from CRUDify? Is that right? > > I dont need to edit any

[Lift] Re: CRUDifying a model

2009-04-19 Thread Tobias Daub
Do I understand it right..before I had to do this access stuff in Boot.scala. But those new methods I've to override directly in the companion object of the class that inherits from CRUDify? Is that right? I dont need to edit anything in Boot.scala.? thanks > I've added new CRU

[Lift] Re: CRUDifying a model

2009-04-16 Thread jon
Great, thanks! On Apr 16, 7:53 pm, David Pollak wrote: > I've added new CRUDify stuff for 1.1 (Hudson is building right now). > > There are 4 methods that you can override: >   def showAllMenuLocParams: List[Loc.LocParam] = Nil >   def createMenuLocParams: List[Loc.LocParam] = Nil >   def viewMe

[Lift] Re: CRUDifying a model

2009-04-16 Thread TylerWeir
Excellent! On Apr 16, 7:53 pm, David Pollak wrote: > I've added new CRUDify stuff for 1.1 (Hudson is building right now). > > There are 4 methods that you can override: >   def showAllMenuLocParams: List[Loc.LocParam] = Nil >   def createMenuLocParams: List[Loc.LocParam] = Nil >   def viewMenuLo

[Lift] Re: CRUDifying a model

2009-04-16 Thread David Pollak
I've added new CRUDify stuff for 1.1 (Hudson is building right now). There are 4 methods that you can override: def showAllMenuLocParams: List[Loc.LocParam] = Nil def createMenuLocParams: List[Loc.LocParam] = Nil def viewMenuLocParams: List[Loc.LocParam] = Nil def editMenuLocParams: List[L

[Lift] Re: CRUDifying a model

2009-04-16 Thread David Pollak
On Thu, Apr 16, 2009 at 12:11 PM, jon wrote: > > How do you modify the entries that end up in MyModel.menu to have > different If/Hidden constraints without recreating manually? I'm working on a fix for 1.1. It might get done today. > > > On Apr 16, 9:20 am, TylerWeir wrote: > > Look at the

[Lift] Re: CRUDifying a model

2009-04-16 Thread jon
How do you modify the entries that end up in MyModel.menu to have different If/Hidden constraints without recreating manually? On Apr 16, 9:20 am, TylerWeir wrote: > Look at the definition of Loc in Loc.scala > > And look at Entry.scala in HelloLift: > >  val sitemap = List(Menu(Loc("CreateEntry

[Lift] Re: CRUDifying a model

2009-04-16 Thread TylerWeir
Look at the definition of Loc in Loc.scala And look at Entry.scala in HelloLift: val sitemap = List(Menu(Loc("CreateEntry", List("entry"), "Create An Entry", If(User.loggedIn_? _, "Please login"))), Menu(Loc("ViewE

[Lift] Re: CRUDifying a model

2009-04-16 Thread Tobias Daub
Hi Dave, Can you please give a short example, how to hide those List/Create entries from the sitemap, when a user is not logged in? I already had a glimpse at the chapter about the sitemap from the book, but I'm missing some more detailed sample code... thanks Tobias > In Boot.scala, when you

[Lift] Re: CRUDifying a model

2009-04-12 Thread David Pollak
In Boot.scala, when you're constructing the menu, put MyModel.menu (which returns a List[Menu]) in the list of menu items. On Sun, Apr 12, 2009 at 3:16 PM, ari wrote: > > I have a model defined with the CRUDify trait. I'm under the > impression that I need to add something to the sitemap for th