Re: svn commit: r1033843 - in /wicket/trunk/wicket/src: main/java/org/apache/wicket/markup/html/ main/java/org/apache/wicket/resource/ main/java/org/apache/wicket/resource/aggregation/ main/java/org/a

2010-11-12 Thread Martin Grigorov
Hi Jeremy, On Fri, Nov 12, 2010 at 12:57 AM, Jeremy Thomerson jrthomer...@apache.orgwrote: On Thu, Nov 11, 2010 at 6:02 PM, Jeremy Thomerson jrthomer...@apache.orgwrote: On Thu, Nov 11, 2010 at 4:04 AM, Martin Grigorov mgrigo...@apache.orgwrote: Notice that I touched

Re: svn commit: r1033843 - in /wicket/trunk/wicket/src: main/java/org/apache/wicket/markup/html/ main/java/org/apache/wicket/resource/ main/java/org/apache/wicket/resource/aggregation/ main/java/org/a

2010-11-12 Thread Peter Ertl
Now guess what?! You already got timestamps in the url for free (I did some work on caching recently :-) You just have to override ResourceReference#getLastModified() and return a non-null time value which will automatically become part of the url... The url will look something like

Re: svn commit: r1033843 - in /wicket/trunk/wicket/src: main/java/org/apache/wicket/markup/html/ main/java/org/apache/wicket/resource/ main/java/org/apache/wicket/resource/aggregation/ main/java/org/a

2010-11-12 Thread Martin Grigorov
Hi Peter, I agree for renderXYZResourceReference(), but in this test it uses renderJavascript(String url). On Fri, Nov 12, 2010 at 11:12 AM, Peter Ertl pe...@gmx.org wrote: Now guess what?! You already got timestamps in the url for free (I did some work on caching recently :-) You just

Re: svn commit: r1033843 - in /wicket/trunk/wicket/src: main/java/org/apache/wicket/markup/html/ main/java/org/apache/wicket/resource/ main/java/org/apache/wicket/resource/aggregation/ main/java/org/a

2010-11-12 Thread Peter Ertl
Ooops, I could not read the whole thread since I already deleted some of the previous mails :-( Am 12.11.2010 um 11:36 schrieb Martin Grigorov: Hi Peter, I agree for renderXYZResourceReference(), but in this test it uses renderJavascript(String url). On Fri, Nov 12, 2010 at 11:12 AM,

isVisibleInHierarchy() possibly unnecessarily checks children whose parents are invisible?

2010-11-12 Thread Martin Makundi
Hi! I have a page with two panels: page.add(panel1); page.add(panel2); in some situations panel1 is not visible. However, a form submit event will visit all formcomponents of panel1 via: at