Re: core devs cannot close PRs on github?

2015-03-12 Thread Martin Grigorov
Hi, Yes. We don't have the permissions to do anything in the repositories. GitHub repos are just mirrors of the official Apache Git repositories. Only Apache Infrastructure team has write/admin rights there. Many people from Apache projects have asked Infra team for better support for Pull

core devs cannot close PRs on github?

2015-03-12 Thread Thibault Kruse
Hi, I notice that the core devs have to ask PR submitters to close their PRs on github: https://github.com/apache/wicket/pull/101 I am curious: Why is that so? Looking here: https://help.github.com/articles/permission-levels-for-an-organization-repository/ I assume the wicket core devs are

Re: core devs cannot close PRs on github?

2015-03-12 Thread Martijn Dashorst
Yup. The integration between github and Apache are suboptimal. Infra is aware of the issue and wants to work on it. I have no insights into their plans, other than that they are in constant talks with github employees to improve the integration. Infra has been busy upgrading the services but they

RE: New committer - Sebastien Briquet

2015-03-12 Thread Colin Rogers
Only just saw this... well done Sebastien - you've always been amazing help with JQuery-UI :) -Original Message- From: Patrick Davids [mailto:patrick.dav...@nubologic.com] Sent: Monday, 16 February 2015 7:05 PM To: users@wicket.apache.org Subject: Re: New committer - Sebastien Briquet

Accessing PageParameters within Panel

2015-03-12 Thread David Kaufman
Hi, I'm currently migrating a fairly large project from wicket 1.4 to wicket 6. We're currently getting the PageParameters from the RequestCycle via getRequestCycle().getPageParameters(), with wicket 6 this is no longer possible. Getting the PageParameters via getPage().getPageParameters() is a

Re: Accessing PageParameters within Panel

2015-03-12 Thread Tobias Soloschenko
Hi, https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+1.5 Search for Request parameters kind regards Tobias Am 12.03.2015 um 17:20 schrieb David Kaufman david.kauf...@gmx.de: Hi, I'm currently migrating a fairly large project from wicket 1.4 to wicket 6. We're

Re: Accessing PageParameters within Panel

2015-03-12 Thread Martin Grigorov
Hi, getPage().getPageParameters() returns the GET parameters at the time the page has been created. If the page is stateful and you submit a form, or click a link (normal and Ajax ones) then you need getRequest().get***Parameters(). Martin Grigorov Freelancer, available for hire! Wicket Training

Re: Help for Apache Wicket HiddenField

2015-03-12 Thread Sebastien
Hi Sergio, In certain scenarii, CPM can misslead [1]. This could be the case here as you only have compound component(s). But to be sure, use a propertymodel as the hiddentextfield's model and see if it works better... Alternatively, you can ensure your object is not changed/recreated. Put an

Help for Apache Wicket HiddenField

2015-03-12 Thread Sergio Arellano Ruiz
Hi, im currently having some issues with a CompoundPropertyModel and HiddenField. I'm trying to relate the property of the model with the hidden input field value. I'm not sure if this actually make sense (probably doesn't), anyway the problem I'm facing is the model is not getting updated with