Re: Wicket Kendo UI - Grid/Chart datasources not cleaned up

2019-09-09 Thread Sebastien
Hi Manfred,

Sorry, my previous answer was incomplete.
Kendo components do usually have two methods for ajax, #reload and #refresh.
Reload aims to reload the component (ie reattach to the dom) while refresh
aim to refresh the data only.
IIRC, grid and chart are different in the sense that grid does have its
datasource aware of the request cycle so it is safe to reattach/reload the
component, the datasource will be destroyed from the dom. That's
unfortunately not the case of the chart (you can open an issue, I can try
to figure out if it's achievable).
One nice way to refresh the data without having the reload/reattach the
component is to use the event bus. Your master page/component will
send/broadcast a RefreshEvent or RefreshChatEvent that will be catched by
the component hosting the chart (or the chart itself if you have overriden
it). Then just call refesh...

Thanks and best regards,
Sebastien


On Mon, Sep 9, 2019, 23:29 Manfred Bergmann  wrote:

> Hi Sebastian.
>
> OK, but I don't really see how reusing instances of a Kendo Grid really
> works in a component based design where the parents of where the Grids are
> placed are replaced on the page.
>
> In particular we have a three panes border layout, kind of a
> 'master-detail'
> plus a tree on the left side.
> The right most pane is the 'detail' pane where panels are replaced
> depending
> on selection on the 'master' pane. Those panels can contain Kendo Grid but
> some do not. So I have no other chance of creating new instances of Kendo
> Grids (DataTable).
> So switching through the 'master' selections creates new Kendo Grids, or
> Charts adding up datasources on the DOM root.
>
> I don't see how just using Chart/DataTable#refresh really should work?
>
>
> Manfred
>
>
>
> Sebastien wrote
> > Hi Manfred,
> >
> > The recommended way to refresh kendo ui components - those bound to a
> > datasource - is to read from the datasource.
> >
> > See Chart#refresh, it should solve the problem.
> >
> > Thanks and best regards,
> > Sébastien
>
>
>
> --
> Sent from:
> http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: Wicket Kendo UI - Grid/Chart datasources not cleaned up

2019-09-09 Thread Manfred Bergmann
Hi Sebastian.

OK, but I don't really see how reusing instances of a Kendo Grid really
works in a component based design where the parents of where the Grids are
placed are replaced on the page.

In particular we have a three panes border layout, kind of a 'master-detail'
plus a tree on the left side.
The right most pane is the 'detail' pane where panels are replaced depending
on selection on the 'master' pane. Those panels can contain Kendo Grid but
some do not. So I have no other chance of creating new instances of Kendo
Grids (DataTable).
So switching through the 'master' selections creates new Kendo Grids, or
Charts adding up datasources on the DOM root.

I don't see how just using Chart/DataTable#refresh really should work?


Manfred



Sebastien wrote
> Hi Manfred,
> 
> The recommended way to refresh kendo ui components - those bound to a
> datasource - is to read from the datasource.
> 
> See Chart#refresh, it should solve the problem.
> 
> Thanks and best regards,
> Sébastien



--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Kendo UI - Grid/Chart datasources not cleaned up

2019-09-09 Thread Sebastien
Hi Manfred,

The recommended way to refresh kendo ui components - those bound to a
datasource - is to read from the datasource.

See Chart#refresh, it should solve the problem.

Thanks and best regards,
Sébastien


Re: Import Javascript through webjars as maven dependency.

2019-09-09 Thread Martin Grigorov
aResponse.render(JavaScriptHeaderItem.forReference(new
WebjarsJavaScriptResourceReference("jquery.scroll*T*o/current/jquery.scroll
*T*o.js")));

On Mon, Sep 9, 2019 at 2:06 PM Sibgha Nazir  wrote:

> Any idea, how to fix it?
>
> On Mon, Sep 9, 2019 at 10:01 AM Martin Grigorov 
> wrote:
>
> > Hi,
> >
> > I think the problem is in the packaging of this webjar.
> > The folder name in the .jar file
> > is: /META-INF/resources/webjars/jquery.scroll*T*o/ . Note the capiral T
> in
> > scrollTo. It does not match with the Maven artifact id - it uses lower
> case
> > 't'.
> > Because of this WebjarsJavaScriptResourceReference cannot find it.
> >
> > On Sun, Sep 8, 2019 at 3:27 PM Sibgha Nazir  wrote:
> >
> > > Hi,
> > >
> > > I am not able to import the following through webjar as maven
> dependency
> > in
> > > my project.
> > >
> > > https://github.com/flesler/jquery.scrollTo
> > >
> > > I deployed it to the webjar using *bower install jquery.scrollTo* and
> it
> > is
> > > also visible on the webjars.org
> > >
> > > 
> > > org.webjars.bowergithub.flesler
> > > jquery.scrollto
> > > 2.1.1
> > > 
> > >
> > > Add it to the project like
> > >
> > > aResponse.render(JavaScriptHeaderItem.forReference(new
> > >
> > >
> >
> WebjarsJavaScriptResourceReference("jquery.scrollto/current/jquery.scrollto.js")));
> > >
> > >
> > >
> > > The wicket shows the error
> > >
> > >
> > > GET
> > >
> > >
> >
> http://localhost:8080/wicket/resource/de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference/webjars/jquery.scrollto/null/jquery.scrollto.js
> > > net::ERR_ABORTED 404
> > >
> > > What could be the problem?
> > >
> > > Best Regards,
> > > SIbgha
> > >
> >
>


Wicket Kendo UI - Grid/Chart datasources not cleaned up

2019-09-09 Thread Bergmann Manfred
Hi.

We’ve implemented a „one-page“ application and basically just replacing panels 
via Ajax updates.
When those panels contain Kendo Grid or Chart components I can see datasource 
items adding up in the DOM for every newly rendered Grid or Chart which 
eventually add up so much that the page gets slower and slower.

Shouldn’t those datasource items be cleaned up?
Or is the issue that we don’t re-render the whole page (which removes the 
datasources).


Regards,
Manfred


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Import Javascript through webjars as maven dependency.

2019-09-09 Thread Sibgha Nazir
Any idea, how to fix it?

On Mon, Sep 9, 2019 at 10:01 AM Martin Grigorov 
wrote:

> Hi,
>
> I think the problem is in the packaging of this webjar.
> The folder name in the .jar file
> is: /META-INF/resources/webjars/jquery.scroll*T*o/ . Note the capiral T in
> scrollTo. It does not match with the Maven artifact id - it uses lower case
> 't'.
> Because of this WebjarsJavaScriptResourceReference cannot find it.
>
> On Sun, Sep 8, 2019 at 3:27 PM Sibgha Nazir  wrote:
>
> > Hi,
> >
> > I am not able to import the following through webjar as maven dependency
> in
> > my project.
> >
> > https://github.com/flesler/jquery.scrollTo
> >
> > I deployed it to the webjar using *bower install jquery.scrollTo* and it
> is
> > also visible on the webjars.org
> >
> > 
> > org.webjars.bowergithub.flesler
> > jquery.scrollto
> > 2.1.1
> > 
> >
> > Add it to the project like
> >
> > aResponse.render(JavaScriptHeaderItem.forReference(new
> >
> >
> WebjarsJavaScriptResourceReference("jquery.scrollto/current/jquery.scrollto.js")));
> >
> >
> >
> > The wicket shows the error
> >
> >
> > GET
> >
> >
> http://localhost:8080/wicket/resource/de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference/webjars/jquery.scrollto/null/jquery.scrollto.js
> > net::ERR_ABORTED 404
> >
> > What could be the problem?
> >
> > Best Regards,
> > SIbgha
> >
>


Re: Import Javascript through webjars as maven dependency.

2019-09-09 Thread Sibgha Nazir
Doesn't work with this solution as well.

On Mon, Sep 9, 2019 at 6:59 AM Sven Meier  wrote:

> Hi,
>
> I don't know why, but WebJars doesn't seem to be able to determine the
> 'current' version of your dependency.
>
> Try with "jquery.scrollto/2.1.1/jquery.scrollto.js" instead.
>
> Hope this helps
> Sven
>
> Am 8. September 2019 14:27:34 MESZ schrieb Sibgha Nazir <
> sibgha...@gmail.com>:
> >Hi,
> >
> >I am not able to import the following through webjar as maven
> >dependency in
> >my project.
> >
> >https://github.com/flesler/jquery.scrollTo
> >
> >I deployed it to the webjar using *bower install jquery.scrollTo* and
> >it is
> >also visible on the webjars.org
> >
> >
> >org.webjars.bowergithub.flesler
> >jquery.scrollto
> >2.1.1
> >
> >
> >Add it to the project like
> >
> >aResponse.render(JavaScriptHeaderItem.forReference(new
>
> >WebjarsJavaScriptResourceReference("jquery.scrollto/current/jquery.scrollto.js")));
> >
> >
> >
> >The wicket shows the error
> >
> >
> >GET
> >
> http://localhost:8080/wicket/resource/de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference/webjars/jquery.scrollto/null/jquery.scrollto.js
> >net::ERR_ABORTED 404
> >
> >What could be the problem?
> >
> >Best Regards,
> >SIbgha
>


Re: [ANNOUNCE] Apache Wicket 8.6.0 released

2019-09-09 Thread Martin Grigorov
No need to notify ASF.
Just fix the problem and start a vote for 8.6.1.

On Mon, Sep 9, 2019 at 1:19 PM Maxim Solodovnik 
wrote:

> I believe it should be sufficient to start new VOTE
>
> On Mon, 9 Sep 2019 at 17:17, Andrea Del Bene  wrote:
>
> > I'm afraid I did a mistake during the building of this version and I left
> > out some of the last changes :-(. I guess we need to perform a 8.6.1
> asap.
> > Is there any particular action that must be taken in situations like
> this?
> > Should we notify the ASF?
> >
> > On Mon, Sep 9, 2019 at 11:48 AM Olivier DUTRIEUX <
> > olivier.dutri...@pasteur.fr> wrote:
> >
> > > Hi Martin,
> > >
> > > If you check the source
> > > https://github.com/apache/wicket/releases/tag/rel%2Fwicket-8.6.0 , you
> > > don' t see this line
> > >
> >
> https://github.com/apache/wicket/blob/wicket-8.x/wicket-core/src/main/java/org/apache/wicket/markup/html/form/AutoLabelResolver.java#L106
> > >
> > > --
> > > Olivier Dutrieux
> > > Evolution du SI Scientifique et de Gestion (Tél : 31 62)
> > >
> > >
> > > -Message d'origine-
> > > De : Martin Grigorov [mailto:mgrigo...@apache.org]
> > > Envoyé : lundi 9 septembre 2019 11:09
> > > À : users@wicket.apache.org
> > > Objet : Re: [ANNOUNCE] Apache Wicket 8.6.0 released
> > >
> > > Hi Olivier,
> > >
> > > The backport of the commit from 9.x (master) is
> > >
> >
> https://github.com/apache/wicket/commit/efcffbb7be97847bec40aec77cfb9414fc55fa8c
> > > And I see the lines at:
> > >
> > >
> >
> https://github.com/apache/wicket/blob/wicket-8.x/wicket-core/src/main/java/org/apache/wicket/markup/html/form/AutoLabelResolver.java#L106
> > >
> > > And also in the sources of the release tag:
> > > https://github.com/apache/wicket/releases/tag/rel%2Fwicket-8.6.0
> > >
> > > On Mon, Sep 9, 2019 at 11:39 AM Olivier DUTRIEUX <
> > > olivier.dutri...@pasteur.fr> wrote:
> > >
> > > > I check the Improvement [WICKET-6684] on version 8.6.0 but I didn't
> > > > find any trace of it. Maybe I messed something.
> > > >
> > > > Duto
> > > >
> > > > -Message d'origine-
> > > > De : Andrea Del Bene [mailto:adelb...@apache.org] Envoyé : samedi 7
> > > > septembre 2019 19:22 À : d...@wicket.apache.org;
> > > > users@wicket.apache.org; annou...@apache.org;
> > > > annou...@wicket.apache.org Objet : [ANNOUNCE] Apache Wicket 8.6.0
> > > > released
> > > >
> > > > The Apache Wicket PMC is proud to announce Apache Wicket 8.6.0!
> > > >
> > > > Apache Wicket is an open source Java component oriented web
> > > > application framework that powers thousands of web applications and
> > > > web sites for governments, stores, universities, cities, banks, email
> > > > providers, and more. You can find more about Apache Wicket at
> > > > https://wicket.apache.org
> > > >
> > > > This release marks another minor release of Wicket 8. We use semantic
> > > > versioning for the development of Wicket, and as such no API breaks
> > > > are present breaks are present in this release compared to 8.0.0.
> > > >
> > > > Using this release
> > > > --
> > > >
> > > > With Apache Maven update your dependency to (and don't forget to
> > > > update any other dependencies on Wicket projects to the same
> version):
> > > >
> > > > 
> > > >  org.apache.wicket
> > > >  wicket-core
> > > >  8.6.0
> > > > 
> > > >
> > > > Or download and build the distribution yourself, or use our
> > > > convenience binary package you can find here:
> > > >
> > > >   * Download:
> http://wicket.apache.org/start/wicket-8.x.html#manually
> > > >
> > > > Upgrading from earlier versions
> > > > ---
> > > >
> > > > If you upgrade from 8.y.z this release is a drop in replacement. If
> > > > you come from a version prior to 8.0.0, please read our Wicket 8
> > > > migration guide found at
> > > >
> > > >   * http://s.apache.org/wicket8migrate
> > > >
> > > > Have fun!
> > > >
> > > > — The Wicket team
> > > >
> > > >
> > > >
> ==
> > > > ==
> > > >
> > > >  The signatures for the source release artefacts:
> > > >
> > > >
> > > > Signature for apache-wicket-8.6.0.zip:
> > > >
> > > >  -BEGIN PGP SIGNATURE-
> > > >
> > > > iQIzBAABCgAdFiEE0a6YZHC1pJw+aieyh48B+qjTVuEFAl1u0ggACgkQh48B+qjT
> > > > VuHBVRAAgX8nPfftIKv6z0Rimyg4M9hefpkwcVCkj8mQ2q9cnRQCNN8lWPrVsqOz
> > > > jfkWOM1I3rmjR60o5eREFuNK+t7RNxdwfdZqlB+zsgu2BCNscpQMaTruf2uI14ip
> > > > B83PYCMkTSDA+BCJD1MTwRf3Ih3M+0rq4l3vedzStfC4GvmmwHRvMWTOml5i9Whg
> > > > pSStZvX9h61n6ofRNq/feLQi7342GOgv+/r0cvTVDRdIsEeYGalu1b+ZJKsjfTX3
> > > > l0oMiRILzFltg+CQP0fhWibfLkvyRLM+R4598rgvwM+QcKo7aCn0LcIEIhp0dYDS
> > > > KI6IhsPd/NS0qKoKgIPmQ6tMsvMWGOxTOpQMxnAj97wVzYVf1QoXArPuc+JaSrFE
> > > > D/a78zUMc78UFjdt38NBA22jf7HbcjVkAUUjD9fPtNStFnnrisniyw16dL0Wa6MA
> > > > kuiPuyl7gsPAkmOXH68KtVaR7ncTORPCt4ZC/6GxoRbhDc71+dLPz5XKpeDdqy8O
> > > > /pBGtsucjI9xIGZqGHWFvfAaBqqv2t4QARxOdkDA9d09PL4o/N+gljho+a30GrDv
> > > > 

Re: [ANNOUNCE] Apache Wicket 8.6.0 released

2019-09-09 Thread Maxim Solodovnik
I believe it should be sufficient to start new VOTE

On Mon, 9 Sep 2019 at 17:17, Andrea Del Bene  wrote:

> I'm afraid I did a mistake during the building of this version and I left
> out some of the last changes :-(. I guess we need to perform a 8.6.1 asap.
> Is there any particular action that must be taken in situations like this?
> Should we notify the ASF?
>
> On Mon, Sep 9, 2019 at 11:48 AM Olivier DUTRIEUX <
> olivier.dutri...@pasteur.fr> wrote:
>
> > Hi Martin,
> >
> > If you check the source
> > https://github.com/apache/wicket/releases/tag/rel%2Fwicket-8.6.0 , you
> > don' t see this line
> >
> https://github.com/apache/wicket/blob/wicket-8.x/wicket-core/src/main/java/org/apache/wicket/markup/html/form/AutoLabelResolver.java#L106
> >
> > --
> > Olivier Dutrieux
> > Evolution du SI Scientifique et de Gestion (Tél : 31 62)
> >
> >
> > -Message d'origine-
> > De : Martin Grigorov [mailto:mgrigo...@apache.org]
> > Envoyé : lundi 9 septembre 2019 11:09
> > À : users@wicket.apache.org
> > Objet : Re: [ANNOUNCE] Apache Wicket 8.6.0 released
> >
> > Hi Olivier,
> >
> > The backport of the commit from 9.x (master) is
> >
> https://github.com/apache/wicket/commit/efcffbb7be97847bec40aec77cfb9414fc55fa8c
> > And I see the lines at:
> >
> >
> https://github.com/apache/wicket/blob/wicket-8.x/wicket-core/src/main/java/org/apache/wicket/markup/html/form/AutoLabelResolver.java#L106
> >
> > And also in the sources of the release tag:
> > https://github.com/apache/wicket/releases/tag/rel%2Fwicket-8.6.0
> >
> > On Mon, Sep 9, 2019 at 11:39 AM Olivier DUTRIEUX <
> > olivier.dutri...@pasteur.fr> wrote:
> >
> > > I check the Improvement [WICKET-6684] on version 8.6.0 but I didn't
> > > find any trace of it. Maybe I messed something.
> > >
> > > Duto
> > >
> > > -Message d'origine-
> > > De : Andrea Del Bene [mailto:adelb...@apache.org] Envoyé : samedi 7
> > > septembre 2019 19:22 À : d...@wicket.apache.org;
> > > users@wicket.apache.org; annou...@apache.org;
> > > annou...@wicket.apache.org Objet : [ANNOUNCE] Apache Wicket 8.6.0
> > > released
> > >
> > > The Apache Wicket PMC is proud to announce Apache Wicket 8.6.0!
> > >
> > > Apache Wicket is an open source Java component oriented web
> > > application framework that powers thousands of web applications and
> > > web sites for governments, stores, universities, cities, banks, email
> > > providers, and more. You can find more about Apache Wicket at
> > > https://wicket.apache.org
> > >
> > > This release marks another minor release of Wicket 8. We use semantic
> > > versioning for the development of Wicket, and as such no API breaks
> > > are present breaks are present in this release compared to 8.0.0.
> > >
> > > Using this release
> > > --
> > >
> > > With Apache Maven update your dependency to (and don't forget to
> > > update any other dependencies on Wicket projects to the same version):
> > >
> > > 
> > >  org.apache.wicket
> > >  wicket-core
> > >  8.6.0
> > > 
> > >
> > > Or download and build the distribution yourself, or use our
> > > convenience binary package you can find here:
> > >
> > >   * Download: http://wicket.apache.org/start/wicket-8.x.html#manually
> > >
> > > Upgrading from earlier versions
> > > ---
> > >
> > > If you upgrade from 8.y.z this release is a drop in replacement. If
> > > you come from a version prior to 8.0.0, please read our Wicket 8
> > > migration guide found at
> > >
> > >   * http://s.apache.org/wicket8migrate
> > >
> > > Have fun!
> > >
> > > — The Wicket team
> > >
> > >
> > > ==
> > > ==
> > >
> > >  The signatures for the source release artefacts:
> > >
> > >
> > > Signature for apache-wicket-8.6.0.zip:
> > >
> > >  -BEGIN PGP SIGNATURE-
> > >
> > > iQIzBAABCgAdFiEE0a6YZHC1pJw+aieyh48B+qjTVuEFAl1u0ggACgkQh48B+qjT
> > > VuHBVRAAgX8nPfftIKv6z0Rimyg4M9hefpkwcVCkj8mQ2q9cnRQCNN8lWPrVsqOz
> > > jfkWOM1I3rmjR60o5eREFuNK+t7RNxdwfdZqlB+zsgu2BCNscpQMaTruf2uI14ip
> > > B83PYCMkTSDA+BCJD1MTwRf3Ih3M+0rq4l3vedzStfC4GvmmwHRvMWTOml5i9Whg
> > > pSStZvX9h61n6ofRNq/feLQi7342GOgv+/r0cvTVDRdIsEeYGalu1b+ZJKsjfTX3
> > > l0oMiRILzFltg+CQP0fhWibfLkvyRLM+R4598rgvwM+QcKo7aCn0LcIEIhp0dYDS
> > > KI6IhsPd/NS0qKoKgIPmQ6tMsvMWGOxTOpQMxnAj97wVzYVf1QoXArPuc+JaSrFE
> > > D/a78zUMc78UFjdt38NBA22jf7HbcjVkAUUjD9fPtNStFnnrisniyw16dL0Wa6MA
> > > kuiPuyl7gsPAkmOXH68KtVaR7ncTORPCt4ZC/6GxoRbhDc71+dLPz5XKpeDdqy8O
> > > /pBGtsucjI9xIGZqGHWFvfAaBqqv2t4QARxOdkDA9d09PL4o/N+gljho+a30GrDv
> > > A35wG2y2Idkoe1t4EJeHpMHGPmqMAj/m1wYagJjMeiXRDgtfFoJIlRfAboxq8Dwd
> > > uT+mRsdS0hq8q78yPZPW3N24cC3gwohFJMWfb4IukQbFGI2gznE=
> > > =mzMF
> > > -END PGP SIGNATURE-
> > >
> > > Signature for apache-wicket-8.6.0.tar.gz:
> > >
> > >  -BEGIN PGP SIGNATURE-
> > >
> > > iQIzBAABCgAdFiEE0a6YZHC1pJw+aieyh48B+qjTVuEFAl1u0ggACgkQh48B+qjT
> > > VuHSZw//WF61doVJ8fDK8hPvk8Td6Yf4hMzP7kff7tAkm+w72LqnXlUM7IDci5nz
> > > 

Re: [ANNOUNCE] Apache Wicket 8.6.0 released

2019-09-09 Thread Andrea Del Bene
I'm afraid I did a mistake during the building of this version and I left
out some of the last changes :-(. I guess we need to perform a 8.6.1 asap.
Is there any particular action that must be taken in situations like this?
Should we notify the ASF?

On Mon, Sep 9, 2019 at 11:48 AM Olivier DUTRIEUX <
olivier.dutri...@pasteur.fr> wrote:

> Hi Martin,
>
> If you check the source
> https://github.com/apache/wicket/releases/tag/rel%2Fwicket-8.6.0 , you
> don' t see this line
> https://github.com/apache/wicket/blob/wicket-8.x/wicket-core/src/main/java/org/apache/wicket/markup/html/form/AutoLabelResolver.java#L106
>
> --
> Olivier Dutrieux
> Evolution du SI Scientifique et de Gestion (Tél : 31 62)
>
>
> -Message d'origine-
> De : Martin Grigorov [mailto:mgrigo...@apache.org]
> Envoyé : lundi 9 septembre 2019 11:09
> À : users@wicket.apache.org
> Objet : Re: [ANNOUNCE] Apache Wicket 8.6.0 released
>
> Hi Olivier,
>
> The backport of the commit from 9.x (master) is
> https://github.com/apache/wicket/commit/efcffbb7be97847bec40aec77cfb9414fc55fa8c
> And I see the lines at:
>
> https://github.com/apache/wicket/blob/wicket-8.x/wicket-core/src/main/java/org/apache/wicket/markup/html/form/AutoLabelResolver.java#L106
>
> And also in the sources of the release tag:
> https://github.com/apache/wicket/releases/tag/rel%2Fwicket-8.6.0
>
> On Mon, Sep 9, 2019 at 11:39 AM Olivier DUTRIEUX <
> olivier.dutri...@pasteur.fr> wrote:
>
> > I check the Improvement [WICKET-6684] on version 8.6.0 but I didn't
> > find any trace of it. Maybe I messed something.
> >
> > Duto
> >
> > -Message d'origine-
> > De : Andrea Del Bene [mailto:adelb...@apache.org] Envoyé : samedi 7
> > septembre 2019 19:22 À : d...@wicket.apache.org;
> > users@wicket.apache.org; annou...@apache.org;
> > annou...@wicket.apache.org Objet : [ANNOUNCE] Apache Wicket 8.6.0
> > released
> >
> > The Apache Wicket PMC is proud to announce Apache Wicket 8.6.0!
> >
> > Apache Wicket is an open source Java component oriented web
> > application framework that powers thousands of web applications and
> > web sites for governments, stores, universities, cities, banks, email
> > providers, and more. You can find more about Apache Wicket at
> > https://wicket.apache.org
> >
> > This release marks another minor release of Wicket 8. We use semantic
> > versioning for the development of Wicket, and as such no API breaks
> > are present breaks are present in this release compared to 8.0.0.
> >
> > Using this release
> > --
> >
> > With Apache Maven update your dependency to (and don't forget to
> > update any other dependencies on Wicket projects to the same version):
> >
> > 
> >  org.apache.wicket
> >  wicket-core
> >  8.6.0
> > 
> >
> > Or download and build the distribution yourself, or use our
> > convenience binary package you can find here:
> >
> >   * Download: http://wicket.apache.org/start/wicket-8.x.html#manually
> >
> > Upgrading from earlier versions
> > ---
> >
> > If you upgrade from 8.y.z this release is a drop in replacement. If
> > you come from a version prior to 8.0.0, please read our Wicket 8
> > migration guide found at
> >
> >   * http://s.apache.org/wicket8migrate
> >
> > Have fun!
> >
> > — The Wicket team
> >
> >
> > ==
> > ==
> >
> >  The signatures for the source release artefacts:
> >
> >
> > Signature for apache-wicket-8.6.0.zip:
> >
> >  -BEGIN PGP SIGNATURE-
> >
> > iQIzBAABCgAdFiEE0a6YZHC1pJw+aieyh48B+qjTVuEFAl1u0ggACgkQh48B+qjT
> > VuHBVRAAgX8nPfftIKv6z0Rimyg4M9hefpkwcVCkj8mQ2q9cnRQCNN8lWPrVsqOz
> > jfkWOM1I3rmjR60o5eREFuNK+t7RNxdwfdZqlB+zsgu2BCNscpQMaTruf2uI14ip
> > B83PYCMkTSDA+BCJD1MTwRf3Ih3M+0rq4l3vedzStfC4GvmmwHRvMWTOml5i9Whg
> > pSStZvX9h61n6ofRNq/feLQi7342GOgv+/r0cvTVDRdIsEeYGalu1b+ZJKsjfTX3
> > l0oMiRILzFltg+CQP0fhWibfLkvyRLM+R4598rgvwM+QcKo7aCn0LcIEIhp0dYDS
> > KI6IhsPd/NS0qKoKgIPmQ6tMsvMWGOxTOpQMxnAj97wVzYVf1QoXArPuc+JaSrFE
> > D/a78zUMc78UFjdt38NBA22jf7HbcjVkAUUjD9fPtNStFnnrisniyw16dL0Wa6MA
> > kuiPuyl7gsPAkmOXH68KtVaR7ncTORPCt4ZC/6GxoRbhDc71+dLPz5XKpeDdqy8O
> > /pBGtsucjI9xIGZqGHWFvfAaBqqv2t4QARxOdkDA9d09PL4o/N+gljho+a30GrDv
> > A35wG2y2Idkoe1t4EJeHpMHGPmqMAj/m1wYagJjMeiXRDgtfFoJIlRfAboxq8Dwd
> > uT+mRsdS0hq8q78yPZPW3N24cC3gwohFJMWfb4IukQbFGI2gznE=
> > =mzMF
> > -END PGP SIGNATURE-
> >
> > Signature for apache-wicket-8.6.0.tar.gz:
> >
> >  -BEGIN PGP SIGNATURE-
> >
> > iQIzBAABCgAdFiEE0a6YZHC1pJw+aieyh48B+qjTVuEFAl1u0ggACgkQh48B+qjT
> > VuHSZw//WF61doVJ8fDK8hPvk8Td6Yf4hMzP7kff7tAkm+w72LqnXlUM7IDci5nz
> > Dcx627fBAYIXdRtfOkq53vRrFV+1e87x8iM/bnp7Tzj5lwF6BOvRkQ+gr6U6+6An
> > 5CblTMT5kSq9xKGm8/Gj6I1OrQiVdSqFPWt7N/4D7FG9uekRVJoc+0ubekqdGR1M
> > lkoT8Wfteo7sstoD8qvQEgyKKZLqbxTKDGiVBywmSKVuxkv+4JnETI2k1R1TsCr0
> > /JdGx6fNxd/sBUKLoAUo8cxBpv9weuzvPCMw89eVGsKacBDedZMK7iMfR3M43Iz/
> > HuEN26JnHM3kqSBCMMYE197djXOroUhXmhr9WfNRxiaTqJsKbS1oG3jO9EkHQt8Y
> > 

RE: [ANNOUNCE] Apache Wicket 8.6.0 released

2019-09-09 Thread Olivier DUTRIEUX
Hi Martin,

If you check the source 
https://github.com/apache/wicket/releases/tag/rel%2Fwicket-8.6.0 , you don' t 
see this line 
https://github.com/apache/wicket/blob/wicket-8.x/wicket-core/src/main/java/org/apache/wicket/markup/html/form/AutoLabelResolver.java#L106

-- 
Olivier Dutrieux
Evolution du SI Scientifique et de Gestion (Tél : 31 62)


-Message d'origine-
De : Martin Grigorov [mailto:mgrigo...@apache.org] 
Envoyé : lundi 9 septembre 2019 11:09
À : users@wicket.apache.org
Objet : Re: [ANNOUNCE] Apache Wicket 8.6.0 released

Hi Olivier,

The backport of the commit from 9.x (master) is 
https://github.com/apache/wicket/commit/efcffbb7be97847bec40aec77cfb9414fc55fa8c
And I see the lines at:
https://github.com/apache/wicket/blob/wicket-8.x/wicket-core/src/main/java/org/apache/wicket/markup/html/form/AutoLabelResolver.java#L106

And also in the sources of the release tag:
https://github.com/apache/wicket/releases/tag/rel%2Fwicket-8.6.0

On Mon, Sep 9, 2019 at 11:39 AM Olivier DUTRIEUX < olivier.dutri...@pasteur.fr> 
wrote:

> I check the Improvement [WICKET-6684] on version 8.6.0 but I didn't 
> find any trace of it. Maybe I messed something.
>
> Duto
>
> -Message d'origine-
> De : Andrea Del Bene [mailto:adelb...@apache.org] Envoyé : samedi 7 
> septembre 2019 19:22 À : d...@wicket.apache.org; 
> users@wicket.apache.org; annou...@apache.org; 
> annou...@wicket.apache.org Objet : [ANNOUNCE] Apache Wicket 8.6.0 
> released
>
> The Apache Wicket PMC is proud to announce Apache Wicket 8.6.0!
>
> Apache Wicket is an open source Java component oriented web 
> application framework that powers thousands of web applications and 
> web sites for governments, stores, universities, cities, banks, email 
> providers, and more. You can find more about Apache Wicket at 
> https://wicket.apache.org
>
> This release marks another minor release of Wicket 8. We use semantic 
> versioning for the development of Wicket, and as such no API breaks 
> are present breaks are present in this release compared to 8.0.0.
>
> Using this release
> --
>
> With Apache Maven update your dependency to (and don't forget to 
> update any other dependencies on Wicket projects to the same version):
>
> 
>  org.apache.wicket
>  wicket-core
>  8.6.0
> 
>
> Or download and build the distribution yourself, or use our 
> convenience binary package you can find here:
>
>   * Download: http://wicket.apache.org/start/wicket-8.x.html#manually
>
> Upgrading from earlier versions
> ---
>
> If you upgrade from 8.y.z this release is a drop in replacement. If 
> you come from a version prior to 8.0.0, please read our Wicket 8 
> migration guide found at
>
>   * http://s.apache.org/wicket8migrate
>
> Have fun!
>
> — The Wicket team
>
>
> ==
> ==
>
>  The signatures for the source release artefacts:
>
>
> Signature for apache-wicket-8.6.0.zip:
>
>  -BEGIN PGP SIGNATURE-
>
> iQIzBAABCgAdFiEE0a6YZHC1pJw+aieyh48B+qjTVuEFAl1u0ggACgkQh48B+qjT
> VuHBVRAAgX8nPfftIKv6z0Rimyg4M9hefpkwcVCkj8mQ2q9cnRQCNN8lWPrVsqOz
> jfkWOM1I3rmjR60o5eREFuNK+t7RNxdwfdZqlB+zsgu2BCNscpQMaTruf2uI14ip
> B83PYCMkTSDA+BCJD1MTwRf3Ih3M+0rq4l3vedzStfC4GvmmwHRvMWTOml5i9Whg
> pSStZvX9h61n6ofRNq/feLQi7342GOgv+/r0cvTVDRdIsEeYGalu1b+ZJKsjfTX3
> l0oMiRILzFltg+CQP0fhWibfLkvyRLM+R4598rgvwM+QcKo7aCn0LcIEIhp0dYDS
> KI6IhsPd/NS0qKoKgIPmQ6tMsvMWGOxTOpQMxnAj97wVzYVf1QoXArPuc+JaSrFE
> D/a78zUMc78UFjdt38NBA22jf7HbcjVkAUUjD9fPtNStFnnrisniyw16dL0Wa6MA
> kuiPuyl7gsPAkmOXH68KtVaR7ncTORPCt4ZC/6GxoRbhDc71+dLPz5XKpeDdqy8O
> /pBGtsucjI9xIGZqGHWFvfAaBqqv2t4QARxOdkDA9d09PL4o/N+gljho+a30GrDv
> A35wG2y2Idkoe1t4EJeHpMHGPmqMAj/m1wYagJjMeiXRDgtfFoJIlRfAboxq8Dwd
> uT+mRsdS0hq8q78yPZPW3N24cC3gwohFJMWfb4IukQbFGI2gznE=
> =mzMF
> -END PGP SIGNATURE-
>
> Signature for apache-wicket-8.6.0.tar.gz:
>
>  -BEGIN PGP SIGNATURE-
>
> iQIzBAABCgAdFiEE0a6YZHC1pJw+aieyh48B+qjTVuEFAl1u0ggACgkQh48B+qjT
> VuHSZw//WF61doVJ8fDK8hPvk8Td6Yf4hMzP7kff7tAkm+w72LqnXlUM7IDci5nz
> Dcx627fBAYIXdRtfOkq53vRrFV+1e87x8iM/bnp7Tzj5lwF6BOvRkQ+gr6U6+6An
> 5CblTMT5kSq9xKGm8/Gj6I1OrQiVdSqFPWt7N/4D7FG9uekRVJoc+0ubekqdGR1M
> lkoT8Wfteo7sstoD8qvQEgyKKZLqbxTKDGiVBywmSKVuxkv+4JnETI2k1R1TsCr0
> /JdGx6fNxd/sBUKLoAUo8cxBpv9weuzvPCMw89eVGsKacBDedZMK7iMfR3M43Iz/
> HuEN26JnHM3kqSBCMMYE197djXOroUhXmhr9WfNRxiaTqJsKbS1oG3jO9EkHQt8Y
> ldhwiTaH8PmGE72xhn+w+FElZvazwlFXSECHZK92wGFEzq5VO7atv88AOmtQHM1o
> LbgHOjhUYLQHj15JXn4g4XYFJ5WnZR3gbldAV9JEhXqnx30M6wMDrWCCw6K0+uh2
> k8Il3y6TMY7KSrnUYwTeljyrLYReoAtYfQxi6EdGBlKamuyKXtSBqO0a2J5wsxnv
> Z2fk3efWKDzdxbc9GmYbXMlTKtjYx5UYZ+PcgAuGvS81ejwzmiy5dH8rJYedx235
> j3D8JG/YyG2Ja0r6nmwX7BDm8QS4W5eU+UQIyIq0KLCFND/qzSU=
> =VBOu
> -END PGP SIGNATURE-
>
> ==
> ==
>
>  CHANGELOG for 8.6.0:
>
> ** Bug
>
>  * [WICKET-6613] - Wicket 8.1 ModalWindow autosizing problem
>  * [WICKET-6671] - 

Re: [ANNOUNCE] Apache Wicket 8.6.0 released

2019-09-09 Thread Martin Grigorov
Hi Olivier,

The backport of the commit from 9.x (master) is
https://github.com/apache/wicket/commit/efcffbb7be97847bec40aec77cfb9414fc55fa8c
And I see the lines at:
https://github.com/apache/wicket/blob/wicket-8.x/wicket-core/src/main/java/org/apache/wicket/markup/html/form/AutoLabelResolver.java#L106

And also in the sources of the release tag:
https://github.com/apache/wicket/releases/tag/rel%2Fwicket-8.6.0

On Mon, Sep 9, 2019 at 11:39 AM Olivier DUTRIEUX <
olivier.dutri...@pasteur.fr> wrote:

> I check the Improvement [WICKET-6684] on version 8.6.0 but I didn't find
> any trace of it. Maybe I messed something.
>
> Duto
>
> -Message d'origine-
> De : Andrea Del Bene [mailto:adelb...@apache.org]
> Envoyé : samedi 7 septembre 2019 19:22
> À : d...@wicket.apache.org; users@wicket.apache.org; annou...@apache.org;
> annou...@wicket.apache.org
> Objet : [ANNOUNCE] Apache Wicket 8.6.0 released
>
> The Apache Wicket PMC is proud to announce Apache Wicket 8.6.0!
>
> Apache Wicket is an open source Java component oriented web application
> framework that powers thousands of web applications and web sites for
> governments, stores, universities, cities, banks, email providers, and
> more. You can find more about Apache Wicket at https://wicket.apache.org
>
> This release marks another minor release of Wicket 8. We use semantic
> versioning for the development of Wicket, and as such no API breaks are
> present breaks are present in this release compared to 8.0.0.
>
> Using this release
> --
>
> With Apache Maven update your dependency to (and don't forget to update
> any other dependencies on Wicket projects to the same version):
>
> 
>  org.apache.wicket
>  wicket-core
>  8.6.0
> 
>
> Or download and build the distribution yourself, or use our convenience
> binary package you can find here:
>
>   * Download: http://wicket.apache.org/start/wicket-8.x.html#manually
>
> Upgrading from earlier versions
> ---
>
> If you upgrade from 8.y.z this release is a drop in replacement. If you
> come from a version prior to 8.0.0, please read our Wicket 8 migration
> guide found at
>
>   * http://s.apache.org/wicket8migrate
>
> Have fun!
>
> — The Wicket team
>
>
> 
>
>  The signatures for the source release artefacts:
>
>
> Signature for apache-wicket-8.6.0.zip:
>
>  -BEGIN PGP SIGNATURE-
>
> iQIzBAABCgAdFiEE0a6YZHC1pJw+aieyh48B+qjTVuEFAl1u0ggACgkQh48B+qjT
> VuHBVRAAgX8nPfftIKv6z0Rimyg4M9hefpkwcVCkj8mQ2q9cnRQCNN8lWPrVsqOz
> jfkWOM1I3rmjR60o5eREFuNK+t7RNxdwfdZqlB+zsgu2BCNscpQMaTruf2uI14ip
> B83PYCMkTSDA+BCJD1MTwRf3Ih3M+0rq4l3vedzStfC4GvmmwHRvMWTOml5i9Whg
> pSStZvX9h61n6ofRNq/feLQi7342GOgv+/r0cvTVDRdIsEeYGalu1b+ZJKsjfTX3
> l0oMiRILzFltg+CQP0fhWibfLkvyRLM+R4598rgvwM+QcKo7aCn0LcIEIhp0dYDS
> KI6IhsPd/NS0qKoKgIPmQ6tMsvMWGOxTOpQMxnAj97wVzYVf1QoXArPuc+JaSrFE
> D/a78zUMc78UFjdt38NBA22jf7HbcjVkAUUjD9fPtNStFnnrisniyw16dL0Wa6MA
> kuiPuyl7gsPAkmOXH68KtVaR7ncTORPCt4ZC/6GxoRbhDc71+dLPz5XKpeDdqy8O
> /pBGtsucjI9xIGZqGHWFvfAaBqqv2t4QARxOdkDA9d09PL4o/N+gljho+a30GrDv
> A35wG2y2Idkoe1t4EJeHpMHGPmqMAj/m1wYagJjMeiXRDgtfFoJIlRfAboxq8Dwd
> uT+mRsdS0hq8q78yPZPW3N24cC3gwohFJMWfb4IukQbFGI2gznE=
> =mzMF
> -END PGP SIGNATURE-
>
> Signature for apache-wicket-8.6.0.tar.gz:
>
>  -BEGIN PGP SIGNATURE-
>
> iQIzBAABCgAdFiEE0a6YZHC1pJw+aieyh48B+qjTVuEFAl1u0ggACgkQh48B+qjT
> VuHSZw//WF61doVJ8fDK8hPvk8Td6Yf4hMzP7kff7tAkm+w72LqnXlUM7IDci5nz
> Dcx627fBAYIXdRtfOkq53vRrFV+1e87x8iM/bnp7Tzj5lwF6BOvRkQ+gr6U6+6An
> 5CblTMT5kSq9xKGm8/Gj6I1OrQiVdSqFPWt7N/4D7FG9uekRVJoc+0ubekqdGR1M
> lkoT8Wfteo7sstoD8qvQEgyKKZLqbxTKDGiVBywmSKVuxkv+4JnETI2k1R1TsCr0
> /JdGx6fNxd/sBUKLoAUo8cxBpv9weuzvPCMw89eVGsKacBDedZMK7iMfR3M43Iz/
> HuEN26JnHM3kqSBCMMYE197djXOroUhXmhr9WfNRxiaTqJsKbS1oG3jO9EkHQt8Y
> ldhwiTaH8PmGE72xhn+w+FElZvazwlFXSECHZK92wGFEzq5VO7atv88AOmtQHM1o
> LbgHOjhUYLQHj15JXn4g4XYFJ5WnZR3gbldAV9JEhXqnx30M6wMDrWCCw6K0+uh2
> k8Il3y6TMY7KSrnUYwTeljyrLYReoAtYfQxi6EdGBlKamuyKXtSBqO0a2J5wsxnv
> Z2fk3efWKDzdxbc9GmYbXMlTKtjYx5UYZ+PcgAuGvS81ejwzmiy5dH8rJYedx235
> j3D8JG/YyG2Ja0r6nmwX7BDm8QS4W5eU+UQIyIq0KLCFND/qzSU=
> =VBOu
> -END PGP SIGNATURE-
>
> 
>
>  CHANGELOG for 8.6.0:
>
> ** Bug
>
>  * [WICKET-6613] - Wicket 8.1 ModalWindow autosizing problem
>  * [WICKET-6671] - IAjaxLink should be serializable
>  * [WICKET-6676] - Quickstart application won't deploy to GlassFish
>  * [WICKET-6680] - JavaScriptStripper chokes on template literals that
> contain two forward slashes
>  * [WICKET-6689] - ClientProperties.getTimeZone() has some issue when
> DST and UTC offsets are different
>  * [WICKET-6690] - NullPointerException in
> KeyInSessionSunJceCryptFactory.
>  * [WICKET-6692] - Page deserialization on websocket close - possible
> performance issue
>
> ** Improvement
>
>  * [WICKET-6675] - log4j-slf4j-impl requires 

Re: [ANNOUNCE] Apache Wicket 8.6.0 released

2019-09-09 Thread Ernesto Reinaldo Barreiro
Hi @Olivier,

I will check: I had the impression Martin applied those commits to 8.x
branch too.

On Mon, Sep 9, 2019 at 11:39 AM Olivier DUTRIEUX <
olivier.dutri...@pasteur.fr> wrote:

> I check the Improvement [WICKET-6684] on version 8.6.0 but I didn't find
> any trace of it. Maybe I messed something.
>
> Duto
>
> -Message d'origine-
> De : Andrea Del Bene [mailto:adelb...@apache.org]
> Envoyé : samedi 7 septembre 2019 19:22
> À : d...@wicket.apache.org; users@wicket.apache.org; annou...@apache.org;
> annou...@wicket.apache.org
> Objet : [ANNOUNCE] Apache Wicket 8.6.0 released
>
> The Apache Wicket PMC is proud to announce Apache Wicket 8.6.0!
>
> Apache Wicket is an open source Java component oriented web application
> framework that powers thousands of web applications and web sites for
> governments, stores, universities, cities, banks, email providers, and
> more. You can find more about Apache Wicket at https://wicket.apache.org
>
> This release marks another minor release of Wicket 8. We use semantic
> versioning for the development of Wicket, and as such no API breaks are
> present breaks are present in this release compared to 8.0.0.
>
> Using this release
> --
>
> With Apache Maven update your dependency to (and don't forget to update
> any other dependencies on Wicket projects to the same version):
>
> 
>  org.apache.wicket
>  wicket-core
>  8.6.0
> 
>
> Or download and build the distribution yourself, or use our convenience
> binary package you can find here:
>
>   * Download: http://wicket.apache.org/start/wicket-8.x.html#manually
>
> Upgrading from earlier versions
> ---
>
> If you upgrade from 8.y.z this release is a drop in replacement. If you
> come from a version prior to 8.0.0, please read our Wicket 8 migration
> guide found at
>
>   * http://s.apache.org/wicket8migrate
>
> Have fun!
>
> — The Wicket team
>
>
> 
>
>  The signatures for the source release artefacts:
>
>
> Signature for apache-wicket-8.6.0.zip:
>
>  -BEGIN PGP SIGNATURE-
>
> iQIzBAABCgAdFiEE0a6YZHC1pJw+aieyh48B+qjTVuEFAl1u0ggACgkQh48B+qjT
> VuHBVRAAgX8nPfftIKv6z0Rimyg4M9hefpkwcVCkj8mQ2q9cnRQCNN8lWPrVsqOz
> jfkWOM1I3rmjR60o5eREFuNK+t7RNxdwfdZqlB+zsgu2BCNscpQMaTruf2uI14ip
> B83PYCMkTSDA+BCJD1MTwRf3Ih3M+0rq4l3vedzStfC4GvmmwHRvMWTOml5i9Whg
> pSStZvX9h61n6ofRNq/feLQi7342GOgv+/r0cvTVDRdIsEeYGalu1b+ZJKsjfTX3
> l0oMiRILzFltg+CQP0fhWibfLkvyRLM+R4598rgvwM+QcKo7aCn0LcIEIhp0dYDS
> KI6IhsPd/NS0qKoKgIPmQ6tMsvMWGOxTOpQMxnAj97wVzYVf1QoXArPuc+JaSrFE
> D/a78zUMc78UFjdt38NBA22jf7HbcjVkAUUjD9fPtNStFnnrisniyw16dL0Wa6MA
> kuiPuyl7gsPAkmOXH68KtVaR7ncTORPCt4ZC/6GxoRbhDc71+dLPz5XKpeDdqy8O
> /pBGtsucjI9xIGZqGHWFvfAaBqqv2t4QARxOdkDA9d09PL4o/N+gljho+a30GrDv
> A35wG2y2Idkoe1t4EJeHpMHGPmqMAj/m1wYagJjMeiXRDgtfFoJIlRfAboxq8Dwd
> uT+mRsdS0hq8q78yPZPW3N24cC3gwohFJMWfb4IukQbFGI2gznE=
> =mzMF
> -END PGP SIGNATURE-
>
> Signature for apache-wicket-8.6.0.tar.gz:
>
>  -BEGIN PGP SIGNATURE-
>
> iQIzBAABCgAdFiEE0a6YZHC1pJw+aieyh48B+qjTVuEFAl1u0ggACgkQh48B+qjT
> VuHSZw//WF61doVJ8fDK8hPvk8Td6Yf4hMzP7kff7tAkm+w72LqnXlUM7IDci5nz
> Dcx627fBAYIXdRtfOkq53vRrFV+1e87x8iM/bnp7Tzj5lwF6BOvRkQ+gr6U6+6An
> 5CblTMT5kSq9xKGm8/Gj6I1OrQiVdSqFPWt7N/4D7FG9uekRVJoc+0ubekqdGR1M
> lkoT8Wfteo7sstoD8qvQEgyKKZLqbxTKDGiVBywmSKVuxkv+4JnETI2k1R1TsCr0
> /JdGx6fNxd/sBUKLoAUo8cxBpv9weuzvPCMw89eVGsKacBDedZMK7iMfR3M43Iz/
> HuEN26JnHM3kqSBCMMYE197djXOroUhXmhr9WfNRxiaTqJsKbS1oG3jO9EkHQt8Y
> ldhwiTaH8PmGE72xhn+w+FElZvazwlFXSECHZK92wGFEzq5VO7atv88AOmtQHM1o
> LbgHOjhUYLQHj15JXn4g4XYFJ5WnZR3gbldAV9JEhXqnx30M6wMDrWCCw6K0+uh2
> k8Il3y6TMY7KSrnUYwTeljyrLYReoAtYfQxi6EdGBlKamuyKXtSBqO0a2J5wsxnv
> Z2fk3efWKDzdxbc9GmYbXMlTKtjYx5UYZ+PcgAuGvS81ejwzmiy5dH8rJYedx235
> j3D8JG/YyG2Ja0r6nmwX7BDm8QS4W5eU+UQIyIq0KLCFND/qzSU=
> =VBOu
> -END PGP SIGNATURE-
>
> 
>
>  CHANGELOG for 8.6.0:
>
> ** Bug
>
>  * [WICKET-6613] - Wicket 8.1 ModalWindow autosizing problem
>  * [WICKET-6671] - IAjaxLink should be serializable
>  * [WICKET-6676] - Quickstart application won't deploy to GlassFish
>  * [WICKET-6680] - JavaScriptStripper chokes on template literals that
> contain two forward slashes
>  * [WICKET-6689] - ClientProperties.getTimeZone() has some issue when
> DST and UTC offsets are different
>  * [WICKET-6690] - NullPointerException in
> KeyInSessionSunJceCryptFactory.
>  * [WICKET-6692] - Page deserialization on websocket close - possible
> performance issue
>
> ** Improvement
>
>  * [WICKET-6675] - log4j-slf4j-impl requires version 1.7.25 of
> slf4j-api while Wicket 8.5 requires version 1.7.26
>  * [WICKET-6684] - Make autolabel functionality more flexible by
> introducing a locator interface that allows to specify the component the
> wicket:for refers to
>  * [WICKET-6695] - Add AjaxEditable*Label#shouldTrimInput()
>
>
> 

RE: [ANNOUNCE] Apache Wicket 8.6.0 released

2019-09-09 Thread Olivier DUTRIEUX
I check the Improvement [WICKET-6684] on version 8.6.0 but I didn't find any 
trace of it. Maybe I messed something.

Duto

-Message d'origine-
De : Andrea Del Bene [mailto:adelb...@apache.org] 
Envoyé : samedi 7 septembre 2019 19:22
À : d...@wicket.apache.org; users@wicket.apache.org; annou...@apache.org; 
annou...@wicket.apache.org
Objet : [ANNOUNCE] Apache Wicket 8.6.0 released

The Apache Wicket PMC is proud to announce Apache Wicket 8.6.0!

Apache Wicket is an open source Java component oriented web application 
framework that powers thousands of web applications and web sites for 
governments, stores, universities, cities, banks, email providers, and more. 
You can find more about Apache Wicket at https://wicket.apache.org

This release marks another minor release of Wicket 8. We use semantic 
versioning for the development of Wicket, and as such no API breaks are present 
breaks are present in this release compared to 8.0.0.

Using this release
--

With Apache Maven update your dependency to (and don't forget to update any 
other dependencies on Wicket projects to the same version):


     org.apache.wicket
     wicket-core
     8.6.0


Or download and build the distribution yourself, or use our convenience binary 
package you can find here:

  * Download: http://wicket.apache.org/start/wicket-8.x.html#manually

Upgrading from earlier versions
---

If you upgrade from 8.y.z this release is a drop in replacement. If you come 
from a version prior to 8.0.0, please read our Wicket 8 migration guide found at

  * http://s.apache.org/wicket8migrate

Have fun!

— The Wicket team




     The signatures for the source release artefacts:


Signature for apache-wicket-8.6.0.zip:

     -BEGIN PGP SIGNATURE-

iQIzBAABCgAdFiEE0a6YZHC1pJw+aieyh48B+qjTVuEFAl1u0ggACgkQh48B+qjT
VuHBVRAAgX8nPfftIKv6z0Rimyg4M9hefpkwcVCkj8mQ2q9cnRQCNN8lWPrVsqOz
jfkWOM1I3rmjR60o5eREFuNK+t7RNxdwfdZqlB+zsgu2BCNscpQMaTruf2uI14ip
B83PYCMkTSDA+BCJD1MTwRf3Ih3M+0rq4l3vedzStfC4GvmmwHRvMWTOml5i9Whg
pSStZvX9h61n6ofRNq/feLQi7342GOgv+/r0cvTVDRdIsEeYGalu1b+ZJKsjfTX3
l0oMiRILzFltg+CQP0fhWibfLkvyRLM+R4598rgvwM+QcKo7aCn0LcIEIhp0dYDS
KI6IhsPd/NS0qKoKgIPmQ6tMsvMWGOxTOpQMxnAj97wVzYVf1QoXArPuc+JaSrFE
D/a78zUMc78UFjdt38NBA22jf7HbcjVkAUUjD9fPtNStFnnrisniyw16dL0Wa6MA
kuiPuyl7gsPAkmOXH68KtVaR7ncTORPCt4ZC/6GxoRbhDc71+dLPz5XKpeDdqy8O
/pBGtsucjI9xIGZqGHWFvfAaBqqv2t4QARxOdkDA9d09PL4o/N+gljho+a30GrDv
A35wG2y2Idkoe1t4EJeHpMHGPmqMAj/m1wYagJjMeiXRDgtfFoJIlRfAboxq8Dwd
uT+mRsdS0hq8q78yPZPW3N24cC3gwohFJMWfb4IukQbFGI2gznE=
=mzMF
-END PGP SIGNATURE-

Signature for apache-wicket-8.6.0.tar.gz:

     -BEGIN PGP SIGNATURE-

iQIzBAABCgAdFiEE0a6YZHC1pJw+aieyh48B+qjTVuEFAl1u0ggACgkQh48B+qjT
VuHSZw//WF61doVJ8fDK8hPvk8Td6Yf4hMzP7kff7tAkm+w72LqnXlUM7IDci5nz
Dcx627fBAYIXdRtfOkq53vRrFV+1e87x8iM/bnp7Tzj5lwF6BOvRkQ+gr6U6+6An
5CblTMT5kSq9xKGm8/Gj6I1OrQiVdSqFPWt7N/4D7FG9uekRVJoc+0ubekqdGR1M
lkoT8Wfteo7sstoD8qvQEgyKKZLqbxTKDGiVBywmSKVuxkv+4JnETI2k1R1TsCr0
/JdGx6fNxd/sBUKLoAUo8cxBpv9weuzvPCMw89eVGsKacBDedZMK7iMfR3M43Iz/
HuEN26JnHM3kqSBCMMYE197djXOroUhXmhr9WfNRxiaTqJsKbS1oG3jO9EkHQt8Y
ldhwiTaH8PmGE72xhn+w+FElZvazwlFXSECHZK92wGFEzq5VO7atv88AOmtQHM1o
LbgHOjhUYLQHj15JXn4g4XYFJ5WnZR3gbldAV9JEhXqnx30M6wMDrWCCw6K0+uh2
k8Il3y6TMY7KSrnUYwTeljyrLYReoAtYfQxi6EdGBlKamuyKXtSBqO0a2J5wsxnv
Z2fk3efWKDzdxbc9GmYbXMlTKtjYx5UYZ+PcgAuGvS81ejwzmiy5dH8rJYedx235
j3D8JG/YyG2Ja0r6nmwX7BDm8QS4W5eU+UQIyIq0KLCFND/qzSU=
=VBOu
-END PGP SIGNATURE-



     CHANGELOG for 8.6.0:

** Bug

     * [WICKET-6613] - Wicket 8.1 ModalWindow autosizing problem
     * [WICKET-6671] - IAjaxLink should be serializable
     * [WICKET-6676] - Quickstart application won't deploy to GlassFish
     * [WICKET-6680] - JavaScriptStripper chokes on template literals that 
contain two forward slashes
     * [WICKET-6689] - ClientProperties.getTimeZone() has some issue when DST 
and UTC offsets are different
     * [WICKET-6690] - NullPointerException in 
KeyInSessionSunJceCryptFactory.
     * [WICKET-6692] - Page deserialization on websocket close - possible 
performance issue

** Improvement

     * [WICKET-6675] - log4j-slf4j-impl requires version 1.7.25 of slf4j-api 
while Wicket 8.5 requires version 1.7.26
     * [WICKET-6684] - Make autolabel functionality more flexible by 
introducing a locator interface that allows to specify the component the 
wicket:for refers to
     * [WICKET-6695] - Add AjaxEditable*Label#shouldTrimInput()


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Import Javascript through webjars as maven dependency.

2019-09-09 Thread Martin Grigorov
Hi,

I think the problem is in the packaging of this webjar.
The folder name in the .jar file
is: /META-INF/resources/webjars/jquery.scroll*T*o/ . Note the capiral T in
scrollTo. It does not match with the Maven artifact id - it uses lower case
't'.
Because of this WebjarsJavaScriptResourceReference cannot find it.

On Sun, Sep 8, 2019 at 3:27 PM Sibgha Nazir  wrote:

> Hi,
>
> I am not able to import the following through webjar as maven dependency in
> my project.
>
> https://github.com/flesler/jquery.scrollTo
>
> I deployed it to the webjar using *bower install jquery.scrollTo* and it is
> also visible on the webjars.org
>
> 
> org.webjars.bowergithub.flesler
> jquery.scrollto
> 2.1.1
> 
>
> Add it to the project like
>
> aResponse.render(JavaScriptHeaderItem.forReference(new
>
> WebjarsJavaScriptResourceReference("jquery.scrollto/current/jquery.scrollto.js")));
>
>
>
> The wicket shows the error
>
>
> GET
>
> http://localhost:8080/wicket/resource/de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference/webjars/jquery.scrollto/null/jquery.scrollto.js
> net::ERR_ABORTED 404
>
> What could be the problem?
>
> Best Regards,
> SIbgha
>