[Lift] Re: PocketChange app. problems

2009-07-21 Thread Derek Chen-Becker
Actually, we just need to change the screenWrap to override def screenWrap = Full() And then we can get rid of all of the other markup methods. I just pushed a change to master. Thanks! Derek On Mon, Jul 20, 2009 at 11:00 AM, Tim Nelson wrote: > The screenWrap option is there, it's jus

[Lift] Re: PocketChange app. problems

2009-07-20 Thread Tim Nelson
The screenWrap option is there, it's just not being used. Instead of having to override each page, you could replace the existing code with the following(in model.User): // Spruce up the forms a bit override def loginXhtml = { super.loginXhtml } override def signupXhtml(user: User) =

[Lift] Re: PocketChange app. problems

2009-07-20 Thread Tim Nelson
I just saw that the other day. The problem is those pages aren't being wrapped by the default template. In newer versions of Lift there is a default screenWrap, but 1.0 doesn't seem to have it. In order to add the wrapper, you need to add lines similar to the following to com.pocketchangeapp.model.