Re: [Stripes-users] Memory Usage: Stripes Layout vs. Tiles

2010-06-07 Thread Ben Gunter
Great to hear the layouts are rendering properly for you now. The goal was to make them behave as closely as possible to the 1.5.3 release. The new code does behave a little differently from 1.5.3 in some cases, but I think those differences are actually improvements over the last release. I know t

Re: [Stripes-users] Memory Usage: Stripes Layout vs. Tiles

2010-06-07 Thread kdeveloper
Ben, The Stripes 1.5.4 beta R1252 seems to render the layouts in my projects just as the 1.5.3 release version. I will do some more checks later this week. Do these layout now render directly to the servlet output stream? -Karen On 08-06-10 0:09, kdeveloper wrote: > > Pre-build Stripes 1.5.4

Re: [Stripes-users] Memory Usage: Stripes Layout vs. Tiles

2010-06-07 Thread kdeveloper
Pre-build Stripes 1.5.4 (R1252) can be downloaded here: http://kdeveloper.com/stripes-1-5-4-beta/ On 07-06-10 22:53, Ben Gunter wrote: > I believe this is fixed with my most recent commit. Everybody please > test out the latest 1.5.x branch and let me know how it goes. > > -Ben > > On Mon, Jun

[Stripes-users] Bind nested values to abstract class

2010-06-07 Thread Thomas Menke
Hi, if have the following classes: abstract class Customer { public String name; abstract public getMaximumAllowedBooks(); } class NormalCustomer extends Customer { public getMaximumAllowedBooks() { return 5; } } class VIPCustomer extends Customer { public String name; public get

Re: [Stripes-users] Memory Usage: Stripes Layout vs. Tiles

2010-06-07 Thread Ben Gunter
I believe this is fixed with my most recent commit. Everybody please test out the latest 1.5.x branch and let me know how it goes. -Ben On Mon, Jun 7, 2010 at 8:44 AM, Ben Gunter wrote: > Excellent, thank you. I'll do some testing/bug hunting with these and get > back to you. > > -Ben > > > On

Re: [Stripes-users] Memory Usage: Stripes Layout vs. Tiles

2010-06-07 Thread Ben Gunter
Excellent, thank you. I'll do some testing/bug hunting with these and get back to you. -Ben On Mon, Jun 7, 2010 at 8:31 AM, kdeveloper wrote: > Ben, > > I've made as simple as possible JSP files that can reproduce the layout > rendering problem in Stripes 1.5.4 beta (R1250). The three layers of

Re: [Stripes-users] Memory Usage: Stripes Layout vs. Tiles

2010-06-07 Thread kdeveloper
Ben, I've made as simple as possible JSP files that can reproduce the layout rendering problem in Stripes 1.5.4 beta (R1250). The three layers of layout's seems crucial in reproducing the failure. testPage.jsp: <%...@taglib prefix="s" uri="http://stripes.sourceforge.net/stripes.tld"; %> [tes