Re: [VOTE] Release Apache Wicket 7.0.0-M2

2014-06-16 Thread Martin Grigorov
On Mon, Jun 16, 2014 at 11:36 PM, Martijn Dashorst < martijn.dasho...@gmail.com> wrote: > On Fri, Jun 13, 2014 at 9:39 AM, Martin Grigorov > wrote: > > [X] Yes, release Apache Wicket 7.0.0-M2 > > > > tested with wicket-examples, not very big application of mine, build > > > > Problems: > > > > 1)

Re: [VOTE] Release Apache Wicket 7.0.0-M2

2014-06-16 Thread Martijn Dashorst
On Fri, Jun 13, 2014 at 9:39 AM, Martin Grigorov wrote: > [X] Yes, release Apache Wicket 7.0.0-M2 > > tested with wicket-examples, not very big application of mine, build > > Problems: > > 1) There are two CHANGELOG files in the dist. The one for 6.x may be > removed/not deployed. Will remove. >

Re: [VOTE] Release Apache Wicket 6.16.0

2014-06-16 Thread Martijn Dashorst
The vote passes, I'll upload to mirrors. Martijn On Sat, Jun 14, 2014 at 2:53 PM, Andrea Del Bene wrote: > +1. Tested with my main app. > >> This is a vote to release Apache Wicket 6.16.0 >> >> Please download the source distributions found in our staging area >> linked below. >> >> I have inclu

Re: wicket urls - how to change "get" url to instance cached one

2014-06-16 Thread Martin Grigorov
Once again - please users@ mailing list for this kind of questions! When page B is loaded Wicket stores it in the disk - the key is sessionId+pageId. When you do Ajax calls to page B the sessionId and the pageId do not change and Wicket overrides the old entry in the disk with the new one, i.e. th

Fwd: wicket urls - how to change "get" url to instance cached one

2014-06-16 Thread Yoav Stern
in addition to what i have described I have Page A which redirect using the next link : Link link = new Link(propertyName) { private static final long serialVersionUID = 1L; @Override public void onClick() { getRequestCycle().setResponsePage(HomePage.class, params); }; }; after this link get

Re: javascript reference header item with async attribute

2014-06-16 Thread Martin Grigorov
Hi, I don't like the number of constructors we have in the different impls of CssHeaderItem and JavaScriptHeaderItem. Recently I needed to set markup id to a CssHeaderItem to be able to replace it with Ajax so I've added a new method [1] to CssHeaderItem: setId(String) [2] that uses Fluent API pat

Re: wicket urls - how to change "get" url to instance cached one

2014-06-16 Thread Martin Grigorov
http://markmail.org/message/bk5zwpx5w7xdlkoa please write to users@ for this kind of questions Martin Grigorov Wicket Training and Consulting On Mon, Jun 16, 2014 at 10:51 AM, Yoav Stern wrote: > I am using wicket in my web application. Assuming I have pages a b c where > I move from A to B u

wicket urls - how to change "get" url to instance cached one

2014-06-16 Thread Yoav Stern
I am using wicket in my web application. Assuming I have pages a b c where I move from A to B using page parameters change something in page B model using ajax and B to C (without using page params). problem : The scenario is moving A->B->C while changing page b model and pressing the back button