Wicket at www.heise.de

2020-07-16 Thread Tobias Soloschenko
Hi all, Wicket is mentioned at www.heise.de - a german page for IT news: https://www.heise.de/news/Java-Webframework-Apache-Wicket-9-baut-vollstaendig-auf-Java-11-LTS-4845258.html

Re: Is there an example project for wicket-spring-boot with gradle and webpack?

2019-12-08 Thread Tobias Soloschenko
Hi again, some hints I found on stackoverflow: https://stackoverflow.com/questions/38738587/migrate-frontend-maven-plugin-from-maven-to-gradle kind regards Tobias > Am 08.12.2019 um 09:02 schrieb Per Newgro : > > Hello *, > > i try to setup a spring boot project based on

Re: Is there an example project for wicket-spring-boot with gradle and webpack?

2019-12-08 Thread Tobias Soloschenko
Hi, for maven: maybe you can use the eirslett frontend-maven-plugin and put in the npm executions you would like to have to build your frontend part beside the normal compile for the Wicket classes: https://github.com/eirslett/frontend-maven-plugin I did something long time ago with grunt:

Re: Wrapping a FormComponent with a Border

2019-09-02 Thread Tobias Soloschenko
Hi, why not add a css class and style it? kind regards Tobias > Am 02.09.2019 um 12:20 schrieb Ernesto Reinaldo Barreiro : > > Another possibility is to do this client side... > >> On Mon, Sep 2, 2019, 11:43 AM "Tom Götz" wrote: >> >> That would be great, thanks in advance! >> >> Tom >>

Re: DropDownChoice - choices type vs model type

2019-07-01 Thread Tobias Soloschenko
Hi, just my 5 Cent but I hate conversion methods to transform JPA objects to DTO - why not place in the JAXB annotations into the same class - this prevents a lot of code and please no DozerBeanMapper ;-) kind regards Tobias > Am 01.07.2019 um 21:19 schrieb Zbynek Vavros : > > I don't want

Re: estimate time for 9.x release?

2019-06-26 Thread Tobias Soloschenko
+1 for next Milestone kind regards Tobias > Am 26.06.2019 um 08:02 schrieb Maxim Solodovnik : > > Also +1 :) > > On Wed, Jun 26, 2019, 13:01 Ernesto Reinaldo Barreiro > wrote: > >> +1 non binding. I was going to write asking for a M3 release right now :-) >> >> On Wed, Jun 26, 2019 at

Re: Wicket recognized by ASF

2019-03-26 Thread Tobias Soloschenko
I think we should forward this to her. I am going to do so. kind regards Tobias > Am 26.03.2019 um 18:09 schrieb Andrea Del Bene : > > They confused www.xbox-now.com with www.xbox.com :-) > > On Tue, Mar 26, 2019 at 6:05 PM Martijn Dashorst > wrote: > >> XBOX.com? Nice... >> >> Martijn >>

Re: Using the summernote rich text editor with Wicket

2018-12-05 Thread Tobias Soloschenko
You also need the Maven-Dependencies of wicket-bootstrap - could you check the Network traffic to see if there are any 404 for CSS / JS kind regards Tobias > Am 05.12.2018 um 21:50 schrieb dylanbozeman : > > I didn't find any errors in the Javascript console of the browser. > > Which CSS

Re: Using the summernote rich text editor with Wicket

2018-12-03 Thread Tobias Soloschenko
Please have a look at the javascript console of the browser (if there are any errors) and if the CSS files / JS files are present on your site. There were no recent changes and the files are within the code base of wicket bootstrap as I remember correctly. kind regards Tobias > Am 03.12.2018

Re: Using the summernote rich text editor with Wicket

2018-12-03 Thread Tobias Soloschenko
Hello, for me it is showing up: https://wb7.teliclab.info/summernote You have to use Wicket bootstrap and summernote. kind regards Tobias > Am 03.12.2018 um 19:28 schrieb dylanbozeman : > > Any idea why when I implement the code you provided there I don't get the > summernote Editor

Re: Paths not serializable

2018-06-21 Thread Tobias Soloschenko
ges > in 8.x anyways. > > For 9.x we'll have a lot of time to do it right. > > Have fun > Sven > > >> Am 19.06.2018 um 00:15 schrieb Tobias Soloschenko: >> Hi Sven, >> >> I would suggest to deal with the worst scenario for RR and IRes

Re: Paths not serializable

2018-06-18 Thread Tobias Soloschenko
lty in posing any rules for RR: If the > resourceReference is registered in the application, it doesn't need to be > serializable. Only if it is kept in the component tree, it has to be > serializable. > The same holds for IResources. > > Have fun > Sven > > >

Re: Paths not serializable

2018-06-14 Thread Tobias Soloschenko
quest. > > Have fun > Sven > > >> Am 14.06.2018 um 18:25 schrieb Tobias Soloschenko: >> +1 - at this time I was not aware of what all has to be serializable. So yep >> I would suggest to use the Model at this place, too. >> >> kind regards >> &g

Re: Paths not serializable

2018-06-14 Thread Tobias Soloschenko
+1 - at this time I was not aware of what all has to be serializable. So yep I would suggest to use the Model at this place, too. kind regards Tobias > Am 14.06.2018 um 07:50 schrieb Martin Grigorov : > > With WICKET-6504 we improved FileSystemResource to use > LoadableDetachableModel instead

Re: Wicket 8 migration / header contributions question

2018-05-23 Thread Tobias Soloschenko
Oh just saw - you added it! kind regards Tobias > Am 23.05.2018 um 18:54 schrieb Andrea Del Bene : > > Hi, > > this should be caused by WICKET-6498. This issue has changed the behavior for > HeaderResponseDecorator. You can find how to adapt your code in the migration

Re: Wicket 8 migration / header contributions question

2018-05-23 Thread Tobias Soloschenko
Hi Andrea, is this also part of the migration document in confluence? kind regards Tobias > Am 23.05.2018 um 18:54 schrieb Andrea Del Bene : > > Hi, > > this should be caused by WICKET-6498. This issue has changed the behavior for > HeaderResponseDecorator. You can

Re: Google Login with spring boot @WicketApp

2018-04-13 Thread Tobias Soloschenko
Thanks a lot for sharing of the Code! kind regards Tobias > Am 12.04.2018 um 23:50 schrieb guillaume.mary : > > Hi, > > I came accross the same problem some months ago (in a more generic way > because it wasn't targeting Google only). > I made the choice to use PAC4J to

Re: How to add image in the panel class

2018-01-03 Thread Tobias Soloschenko
Hi, I would wrap the panel tag around the div and apply a class to it. For the inline icon you can use the CssUrlReplacer with ?embedBase64. See: https://ci.apache.org/projects/wicket/guide/7.x/single.html#_cssheaderitem_and_javascriptheaderitem_compression If you would like the image to be in

Re: Wicket Metrics

2017-12-24 Thread Tobias Soloschenko
heck if the aop.xml is in the root of your webapp. >>> >>> kind regards >>> >>> Tobias >>> >>>> Am 24.12.2017 um 10:48 schrieb Shengche Hsiao <shengchehs...@gmail.com >>>> : >>>> >>>> Dear Tobias >>&

Re: Wicket Metrics

2017-12-24 Thread Tobias Soloschenko
ml location, and I am using Wildfly 10 as ee container. > > > >> On Sun, Dec 24, 2017 at 12:33 PM, Tobias Soloschenko >> <tobiassolosche...@googlemail.com> wrote: >> Hi, >> >> have you placed the aspecj xml to the correct place? You have to add it a

Re: Wicket Metrics

2017-12-23 Thread Tobias Soloschenko
Hi, have you placed the aspecj xml to the correct place? You have to add it and the mentioned aspect so that Wicket Metrics is able to work. See the documentation how to setup here: https://ci.apache.org/projects/wicket/guide/8.x/single.html#_example_setup kind regards Tobias > Am

Re: exemples are down

2017-10-15 Thread Tobias Soloschenko
And a lot faster from what I can see. :-) The video playback is also fixed within this deployment - great! Thanks everyone. kind regards Tobias > Am 15.10.2017 um 19:58 schrieb Martin Grigorov : > > The examples are up again! > > Martin Grigorov > Wicket Training and

Re: PrependJavaScript to replace a composant with animation

2017-09-30 Thread Tobias Soloschenko
Hi, are you able to try to replace this by a normal if block: ..format("notify|var.. Seems that this shortcut is causing the issue. kind regards Tobias > Am 30.09.2017 um 23:21 schrieb Olivier DUTRIEUX : > > Hello, > > I use the functionnality of

Re: Apache Wicket push support question

2017-09-06 Thread Tobias Soloschenko
> Hi Tobias, > > There are no attachments. > The mailing list strips them. > I'm not sure how some people attach files sometimes :-) > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Wed, Sep 6, 2017 at 10:01 AM, Tobias Sol

Apache Wicket push support question

2017-09-06 Thread Tobias Soloschenko
Hi everyone, as usual I am just playing around a bit with HTTP/2 Push support and just wanted to ensure that the experimental push support of Apache Wicket is working like expected. :-) I basically followed the instructions on:

Re: JEE in hands of ASF

2017-08-18 Thread Tobias Soloschenko
435918507384833 :-) > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Fri, Aug 18, 2017 at 10:50 AM, Tobias Soloschenko < > tobiassolosche...@googlemail.com> wrote: > >> Hi, >> >> oracle release the news that the

JEE in hands of ASF

2017-08-18 Thread Tobias Soloschenko
Hi, oracle release the news that there are plans to hand over JEE to an open source org to speed up the development: * https://m.heise.de/developer/meldung/Oracle-will-Java-EE-an-die-Open-Source-Community-uebertragen-3806673.html (german) *

Re: File Image Upload

2017-07-01 Thread Tobias Soloschenko
Hi, there has been a change that the file parts have to be parsed before read: https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0#MigrationtoWicket7.0-FilePartsmustbeparsedexplicitlybeforetryingtoreadthemWICKET-5839 I don't see this in your code. Could you try this?

Re: The day Wicket became Apache Wicket 10 years ago!

2017-06-19 Thread Tobias Soloschenko
Hope that many years are going to be added. :-) kind regards Tobias > Am 19.06.2017 um 21:18 schrieb Martijn Dashorst : > > Today marks the date 10 years ago that the Wicket project graduated from > the Incubator to a fully fledged Apache project. > > The time

Re: http://examples8x.wicket.apache.org/websockets/ partial down?

2017-05-31 Thread Tobias Soloschenko
gt; https://github.com/apache/wicket/blob/3d9ba812d4311376a88136822b0430319e3f6e16/wicket-experimental/wicket-http2/wicket-http2-tomcat/pom.xml#L43 > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Wed, May 31, 2017 at 7:23 AM, Tobias S

Re: http://examples8x.wicket.apache.org/websockets/ partial down?

2017-05-30 Thread Tobias Soloschenko
Hi again, sorry for taking up this thread for an additional question. Does the server support http/2? Maybe we can add a http/2 push example in this case. kind regards Tobias > Am 30.05.2017 um 22:50 schrieb Martin Grigorov : > > Fixed! > Now the examples run on Tomcat

Re: http://examples8x.wicket.apache.org/websockets/ partial down?

2017-05-30 Thread Tobias Soloschenko
Great! :-) kind regards Tobias > Am 30.05.2017 um 22:50 schrieb Martin Grigorov : > > Fixed! > Now the examples run on Tomcat 8.5 and I've added support for custom ports ( > https://blog.openshift.com/paas-websockets/) > > Martin Grigorov > Wicket Training and Consulting

Re: [ANNOUNCE] Apache Wicket 7.7.0 released

2017-05-17 Thread Tobias Soloschenko
Hi, see the migration guide for 8.x:

Re: Invitation to join the Wicket Team

2017-04-13 Thread Tobias Soloschenko
Welcome Maxim! :-) kind regards Tobias > Am 13.04.2017 um 17:44 schrieb Maxim Solodovnik : > > Thanks a lot! > > WBR, Maxim > (from mobile, sorry for the typos) > >> On Apr 13, 2017 21:40, "Andrea Del Bene" wrote: >> >> Welcome Maxim!! >> >>> On

Re: Setting file name for FileSystemResource

2017-04-12 Thread Tobias Soloschenko
he ability to pass different name is also good idea > > On Wed, Apr 12, 2017 at 1:28 PM, Tobias Soloschenko < > tobiassolosche...@googlemail.com> wrote: > >> Hi, >> >> maybe we could add a callback method to add the name or a second >> parameter, b

Re: Setting file name for FileSystemResource

2017-04-12 Thread Tobias Soloschenko
Hi, maybe we could add a callback method to add the name or a second parameter, because in case of a FileSystemResource this might me a usual scenario. WDYT? kind regards Tobias > Am 12.04.2017 um 08:25 schrieb Sven Meier : > > Hi Maxim, > > FIleSystemResource does not

Re: Wicket Spring Boot Article

2017-04-02 Thread Tobias Soloschenko
sadly not. I was just in contact with him, because of metrics, but that is some time ago. kind regards Tobias > Am 02.04.2017 um 16:58 schrieb Andrea Del Bene <an.delb...@gmail.com>: > > You're welcome! > ps: anybody is in contact with Marc > ? > > On 2 Apr 2017

Wicket Spring Boot Article

2017-04-02 Thread Tobias Soloschenko
Hi, just wanted to point out that this is really great: https://mobile.twitter.com/apache_wicket/status/847763903249600513 I think for Spring - Spring Boot is the future. Thanks for it Marc Giffing and Andrea Del Bene for the article! I am going to play around with this soon. :-) kind regards

Re: [wicket-jquery-ui] Re: [ANNOUNCE] Apache Wicket jQuery UI 8.0.0-M5 Released

2017-04-01 Thread Tobias Soloschenko
Hi, the fix should make it into the final version 8.0.0 I suggest. kind regards Tobias > Am 01.04.2017 um 16:34 schrieb Sebastien : > > As I primarily suspected, there is a JSON issue with the new library used > in Wicket-8 > https://github.com/openjson/openjson/issues/7 >

Re: Wicket is #3 in the JSON perf test by TechEmpower

2017-03-24 Thread Tobias Soloschenko
@ >> koodaripalvelut.com> wrote: >> >>> Would be interesting to run this performance test Wicket with speed patch >>> #6177 >>> >>> https://issues.apache.org/jira/browse/WICKET-6177 >>> >>> 2017-03-23 15:58 GMT+02:00 Marce

Re: Wicket is #3 in the JSON perf test by TechEmpower

2017-03-22 Thread Tobias Soloschenko
"New" does not mean better. :-) kind regards Tobias > Am 22.03.2017 um 23:09 schrieb Martijn Dashorst : > > WOW > >> On Wed, Mar 22, 2017 at 10:12 PM, Martin Grigorov >> wrote: >> Hi, >> >> Somehow Wicket finished at 3rd position at the

Re: Wicket 7 guide - PDF still available?

2017-01-30 Thread Tobias Soloschenko
Oh, I checked it twice, now. You are right Martin there seems something wrong with the complete build. I compared master with wicket-7.x and the only thing which changes is the artifactId. What I also noticed it that the 7.x folder is not created anymore at my local build. Can you confirm

Re: Wicket 7 guide - PDF still available?

2017-01-30 Thread Tobias Soloschenko
Hi, this seems an issue of the migration to adoc. It seems that the changes of master have been cherry picked to wicket-7.x. We have to change the adoc in the wicket-7.x branch. The patch guide/single.pdf doesn't exist anymore, because of adoc. There is only a single.html and a single.pdf

Re: [ANNOUNCE] CVE-2016-6793 Apache Wicket deserialization vulnerability

2017-01-03 Thread Tobias Soloschenko
Hi, but it is released. See here: https://mvnrepository.com/artifact/org.apache.wicket/wicket-core/1.5.17 kind regards Tobias Am 03.01.17 um 21:25 schrieb durairaj t: I can see the Wicket 1.5.16 but not 1.5.17 in " https://wicket.apache.org/start/wicket-1.5.x.html#download;. On Sat, Dec

Re: Wicket Bootstrap 0.9.21 Release

2016-12-30 Thread Tobias Soloschenko
Then let's wait for 7.6.0 kind regards Tobias > Am 30.12.2016 um 18:15 schrieb Martin Grigorov <mgrigo...@apache.org>: > > The issue with the fragments is only with Wicket 7.5.0+ > > On Dec 30, 2016 6:58 PM, "Tobias Soloschenko" < > tobiassolosc

Re: Wicket Bootstrap 0.9.21 Release

2016-12-30 Thread Tobias Soloschenko
Hi, currently there is a vote for Wicket 6.26.0 to be released. I guess it would make sense to build WB with that new version and test it. @Martin - WDYT? kind regards Tobias > Am 30.12.2016 um 17:33 schrieb Ronny Pscheidl : > > Hi, > but this isn't fixing the

Christmas / new year [NON-BIZ]

2016-12-24 Thread Tobias Soloschenko
Hi all, I wish you a merry christmas and happy new year. :-) kind regards Tobias - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Reading Image from absolute path

2016-12-16 Thread Tobias Soloschenko
Hi, if you mean absolute file system path https://ci.apache.org/projects/wicket/apidocs/7.x/org/apache/wicket/resource/FileSystemResourceReference.html If you mean path my URL: https://ci.apache.org/projects/wicket/apidocs/7.x/org/apache/wicket/markup/html/image/ExternalImage.html Examples

Re: Twitter poll result 2

2016-11-01 Thread Tobias Soloschenko
> I also think that it's important to work against some misconceptions that > Wicket might have in dev community (for example, the idea that it is a > stateful-only framework). At least this is what i will try to do at ApacheCon. > > Andrea. > > > >> On 01/11/2016 1

Re: Result of vote at twitter

2016-10-31 Thread Tobias Soloschenko
> Am 31.10.2016 um 14:38 schrieb Martin Grigorov <mgrigo...@apache.org>: > > On Mon, Oct 31, 2016 at 2:32 PM, Tobias Soloschenko < > tobiassolosche...@googlemail.com> wrote: > >> Ah ok - "How exactly" was a bit short so I didn't get what you want

Re: Result of vote at twitter

2016-10-31 Thread Tobias Soloschenko
gt; > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Mon, Oct 31, 2016 at 12:29 PM, Tobias Soloschenko < > tobiassolosche...@googlemail.com> wrote: > >> Hi Martin, >> >> yes that's true, but if someone dislike

Re: Result of vote at twitter

2016-10-31 Thread Tobias Soloschenko
> https://twitter.com/mtgrigorov > > On Mon, Oct 31, 2016 at 8:44 AM, Tobias Soloschenko < > tobiassolosche...@googlemail.com> wrote: > >> Hi, >> >> as I saw here: >> >> https://mobile.twitter.com/brunoborges/status/79132793984116 >> >

Result of vote at twitter

2016-10-31 Thread Tobias Soloschenko
Hi, as I saw here: https://mobile.twitter.com/brunoborges/status/79132793984116 there are a lot of "dislikes" as a result of the vote. I think it would be great to get some feedback what to improve and what you don't like. kind regards Tobias

Re: Problems with Wicket 7.5.0 and Wicket Bootstrap 0.10.10 using a custom NotificationPanel

2016-10-30 Thread Tobias Soloschenko
Hi, good to hear and thanks for the feedback. kind regards Tobias Am 30.10.16 um 10:04 schrieb Francesco Chicchiriccò: On 2016-10-28 14:37 (+0100), Martin Grigorov wrote: On Fri, Oct 28, 2016 at 12:01 PM, Francesco Chicchiriccò < ilgro...@apache.org> wrote: On

Re: Wicket vs JS frameworks.

2016-10-13 Thread Tobias Soloschenko
Hi, this is a topic every web developer is facing currently. I think because Wicket uses HTML5 and Java you can combine JS Frameworks with many of the features of Wicket. Example: Because you have a java backend you can build a rest API with wicket-rest-annotations and configure your Angular

Re: hyperlink to a file on the server but ouside of the wicket war ? (solved)

2016-10-07 Thread Tobias Soloschenko
Hi, or you can use FileSystemResource / FileSystemResourceReference (Wicket 7) kind regards Tobias > Am 07.10.2016 um 09:16 schrieb andre seame : > > Thanks, > > > Other solution. > > > In the wiceket code : for a file in >

Re: Issue using Wicket Bootstap Less

2016-10-05 Thread Tobias Soloschenko
Hi, just wanted to thank you for your contributions! :-) kind regards Tobias > Am 05.10.2016 um 07:17 schrieb Erik Strid : > > Hi Martin, > > Thank you for the fast release! > > Unfortunately did we find another issue in the LessCacheManager before we > closed this

Re: ajax timer dying

2016-10-03 Thread Tobias Soloschenko
Hi, maybe https://ci.apache.org/projects/wicket/apidocs/6.x/org/apache/wicket/util/time/Duration.html Duration.MAXIMUM kind regards Tobias > Am 03.10.2016 um 20:07 schrieb Jonathan Locke : > > hello all, > > been a while! i don't quite understand the parameters of

Re: AjaxCallListener

2016-09-26 Thread Tobias Soloschenko
Hi, I just googled for it: http://apache-wicket.1842946.n4.nabble.com/Migration-1-5-gt-6-CancelEventIfNoAjaxDecorator-td4652609.html Hope this helps. kind regards Tobias > Am 26.09.2016 um 22:13 schrieb durairaj t : > > How to replace the "new

Re: Reload Wicket classes/markup without reloading Servlet Container

2016-09-01 Thread Tobias Soloschenko
Hi, you could use Jetty and run it in debug mode within your IDE. See StartExamples Java-Class https://github.com/apache/wicket/blob/master/wicket-examples/src/test/java/org/apache/wicket/examples/StartExamples.java kind regards Tobias > Am 02.09.2016 um 03:19 schrieb James Selvakumar

Re: Chrome extension and Eclipse plugin for wicket-source helper are updated!

2016-08-21 Thread Tobias Soloschenko
Great work! Thank you so much for keeping this Apache Wicket extension up to date / make it runnable again. kind regards Tobias > Am 22.08.2016 um 03:30 schrieb Jenny Brown : > > About 5 years ago, I created wicket-source, a set of extensions that let > you inspect a

Re: http/2

2016-08-02 Thread Tobias Soloschenko
Am 29.06.16 um 17:43 schrieb Martin Grigorov: On Tue, Jun 28, 2016 at 11:02 PM, Tobias Soloschenko < tobiassolosche...@googlemail.com> wrote: Hi, I just saw this old topic and want to give some information about HTTP/2 and Wicket. First of all Wicket will have support for http

Re: http/2

2016-08-02 Thread Tobias Soloschenko
Hi Martin, Am 29.06.16 um 17:43 schrieb Martin Grigorov: On Tue, Jun 28, 2016 at 11:02 PM, Tobias Soloschenko < tobiassolosche...@googlemail.com> wrote: Hi, I just saw this old topic and want to give some information about HTTP/2 and Wicket. First of all Wicket will have support for

Apache Wicket 8.0.0-M1 PushBuilder

2016-07-25 Thread Tobias Soloschenko
Hi, just wanted to clarify that the PushBuilder API will be available with 8.0.0-M2 instead of 8.0.0-M1. kind regards Tobias - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Re: [ANNOUNCE] Apache Wicket 7.4.0 Released

2016-07-22 Thread Tobias Soloschenko
m/mtgrigorov On Fri, Jul 22, 2016 at 7:51 AM, Tobias Soloschenko < tobiassolosche...@googlemail.com> wrote: Hi Martijn, have you any plans to update the wicket-site or should I do this at weekend? kind regards Tobias Am 21.07.2016 um 17:55 schrieb Martijn Dashorst <dasho...@apache

Re: [ANNOUNCE] Apache Wicket 7.4.0 Released

2016-07-21 Thread Tobias Soloschenko
Hi Martijn, have you any plans to update the wicket-site or should I do this at weekend? kind regards Tobias > Am 21.07.2016 um 17:55 schrieb Martijn Dashorst : > > The Apache Wicket PMC is proud to announce Apache Wicket 7.4.0! > Apache Wicket is an open source Java

Re: Dynamic localisation

2016-07-01 Thread Tobias Soloschenko
Hi, I remember a ticket in which this was a requirement. Maybe we should consider to take this implementation to core: https://github.com/klopfdreh/wicket-components-playground/wiki/22.-NestedStringResourceLoader kind regards Tobias > Am 01.07.2016 um 17:22 schrieb Sven Meier

Re: http/2

2016-06-29 Thread Tobias Soloschenko
When I find some time I am going to file in a ticket. kind regards Tobias > Am 29.06.2016 um 17:43 schrieb Martin Grigorov <mgrigo...@apache.org>: > > On Tue, Jun 28, 2016 at 11:02 PM, Tobias Soloschenko < > tobiassolosche...@googlemail.com> wrote: > >> Hi,

Re: http/2

2016-06-28 Thread Tobias Soloschenko
Hi, I just saw this old topic and want to give some information about HTTP/2 and Wicket. First of all Wicket will have support for http/2 via PushBuilder API - A PoC can be found here: https://github.com/klopfdreh/jetty-http2-example So before the actual page request is finished you can push

Re: stop wicket from rewriting references in my css file

2016-06-16 Thread Tobias Soloschenko
Hi, If you don't add the CssUrlReplacer manually it is not active by default. If URLs are replaced into Reference URLs it might be a manually added CssUrlReplacer. If you don't want that some of the URLs are replaced you can consider to add them into a different CSS file and add the name of

Re: wicket 6.x / FeedbackPanel StackOverflowError

2016-05-14 Thread Tobias Soloschenko
Hi, try to set the visibility in onConfigure and store it as field in that local anonymous class - (return myVisibilityField;) kind regards Tobias > Am 14.05.2016 um 13:23 schrieb Korbinian Bachl > : > > Hello, > > I'm currently migrating a wicket / brix

Re: wicket-async-task

2016-05-11 Thread Tobias Soloschenko
Hi, maybe the progress bar I build helps you a bit: https://github.com/klopfdreh/wicket-components-playground/wiki/12.-HTML5-Progress https://github.com/klopfdreh/wicket-components-playground/blob/master/wicket-components-playground/src/main/java/org/wicketstuff/html5/progress/Progress.java

Re: are there any changes to radioGroup and AjaxFormChoiceComponentUpdatingBehavior on wickte 7?

2016-05-09 Thread Tobias Soloschenko
Hi Ernesto, I think as long as the third party library is not Wicket 7.0 proofed you should use it careful. Because of this the migration guide is very useful - each framework should be checked when upgrade a major version. Even on OS level there is a requirement note and sometimes API changes

Re: [ANNOUNCE] Apache Wicket 7.3.0 Released

2016-05-07 Thread Tobias Soloschenko
Great!!! :-) kind regards Tobias > Am 07.05.2016 um 15:00 schrieb Martijn Dashorst : > > The Apache Wicket PMC is proud to announce Apache Wicket 7.3.0! > > Apache Wicket is an open source Java component oriented web application > framework that powers thousands of web

Re: [ANNOUNCE] Apache Wicket 6.23.0 Released

2016-05-07 Thread Tobias Soloschenko
Great!! :-) kind regards Tobias > Am 07.05.2016 um 15:00 schrieb Martijn Dashorst : > > The Apache Wicket PMC is proud to announce Apache Wicket 6.23.0! > > Apache Wicket is an open source Java component oriented web application > framework that powers thousands of web

Re: Wicket jQuery UI - 4th anniversary!

2016-05-02 Thread Tobias Soloschenko
Congratulations also from me! Good to see that project is moving forward! Also a very cool design with some fancy animations on hover. :-) One hint: For the background image you can use srcset provided via wicket-core to only load an img with the required size, or to change it when resizing the

Setup Tomcat 9.0.0-M4 with http/2 on Mac OS X 10.11.4

2016-04-02 Thread Tobias Soloschenko
Hi, I am trying to get http/2 working on Mac OS X 10.11.4 - these are the steps I used: 1. Install Brew: http://brew.sh/ 2. Download Apache Tomcat 9 https://tomcat.apache.org/download-90.cgi 3. Download Xcode command line tools by opening the terminal and execute “xcode-select —install” 4.

Re: Getting the model

2016-04-01 Thread Tobias Soloschenko
ose are just convenience. It is better to > use the "old way" one cares about memory usage. I'll add it soon. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Fri, Apr 1, 2016 at 2:48 PM, Tobias Soloschenko < > tobiassolos

Re: Getting the model

2016-04-01 Thread Tobias Soloschenko
Hi, would be great to see some information how to use lambda models in the user guide. kind regards Tobias > Am 01.04.2016 um 13:57 schrieb Martin Grigorov : > >> On Fri, Apr 1, 2016 at 12:45 AM, Sven Meier wrote: >> >> Hi, >> >> yeah, of course this

Re: Failing locale dependent tests in wicket-core

2016-03-30 Thread Tobias Soloschenko
Nice! Thanks Martin! kind regards Tobias Am 30.03.16 um 16:32 schrieb Martin Grigorov: Fixed it! Thanks! Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Mar 30, 2016 at 3:59 PM, Martin Grigorov wrote: I've pasted the same output

Re: Failing test SpringBeanWithGenericsTest in 7.3.0.0 SNAPSHOT

2016-03-30 Thread Tobias Soloschenko
I also think that this are bugs of the tests. The specific test receive a different locale then the environment and so different resources are compared. You can see it in the Base64 encoded image test. kind regards Tobias > Am 30.03.2016 um 15:45 schrieb Martin Grigorov

Re: New documentation on Wicket internals

2016-03-25 Thread Tobias Soloschenko
Great Andrea! Thanks a lot! kind regards Tobias > Am 25.03.2016 um 16:34 schrieb andrea del bene : > > Hi, > > I've added a couple of notes to the userguide about markup parsing and > autocomponents: > >

Re: webRTC wickedstuff question

2016-03-24 Thread Tobias Soloschenko
Hi Dmitry, I used SimpleWebRTC (https://simplewebrtc.com) to implement the video conference and there are also some events that are handling file transfers via data channel - have a look at https://simplewebrtc.com/filetransfer You have to check the version of SimpleWebRTC - there have been

Apache Wicket mentioned @ heise Developer

2016-03-07 Thread Tobias Soloschenko
Hi all, just saw that Apache Wicket is mentioned @ heise Developer (german): http://www.heise.de/developer/meldung/Developer-Snapshots-Programmierer-News-in-ein-zwei-Saetzen-3128501.html Translated (english, more or less):

Re: Wicket in the news!

2016-03-02 Thread Tobias Soloschenko
I like the first answer! ;-D Thanks for sharing Martijn! kind regards Tobias > Am 02.03.2016 um 08:35 schrieb Martijn Dashorst : > > http://www.infoq.com/news/2016/03/apache-wicket-7.2 > > InfoQ interviewed me about our most recent release, the state of the

Wicket need Votes! :-)

2016-02-16 Thread Tobias Soloschenko
Hi all, take some minutes and vote for Apache Wicket! :-) (German) https://jaxenter.de/jaxenter-umfrage-diese-web-frameworks-liegen-2016-im-fokus-34892 (English) https://jaxenter.de/survey-32999 The survey is in english. kind regards Tobias

Re: write files to relative path

2016-02-03 Thread Tobias Soloschenko
ay are very welcome. > > >> Am 03.02.2016 um 15:19 schrieb Tobias Soloschenko: >> Hi, >> >> why do you want to write something into the path of a temporary deployed web >> application? The file is going to be erased after redeployment of your >> we

Re: write files to relative path

2016-02-03 Thread Tobias Soloschenko
Hi, why do you want to write something into the path of a temporary deployed web application? The file is going to be erased after redeployment of your webapp. I would consider a temp folder or a "working folder" for those files. kind regards Tobias > Am 03.02.2016 um 14:48 schrieb

Re: WicketStuff status and future; awesome-wicket project

2016-02-01 Thread Tobias Soloschenko
Hi Ilya, In your list the nashorn project is missing - it is a way to allow users to execute javascript on server side. I am going to add it to the list of submodules, now. Anyway it is up to the community to update the wiki or to bring projects up to date and this would be a lot harder if it

Re: wicket + flying-saucer

2016-01-28 Thread Tobias Soloschenko
Cool - thank you for sharing! :-) kind regards Tobias > Am 28.01.2016 um 11:56 schrieb Ernesto Reinaldo Barreiro : > > Dear Wicketeers, > > Some time ago I was asked to see how to use wicket and flying saucer to > create PDF and HTML reports. I have create this small POC.

Re: Wicket Presentation

2016-01-28 Thread Tobias Soloschenko
Hi, I also think that it is worth to mention that Wicket is a framework which is 10 years old but still up to date due to many implementations regarding HTML5 - The HTML5 topic is very Important to be mentioned. kind regards Tobias > Am 28.01.2016 um 11:01 schrieb andrea del bene

Re: Good wicket references

2016-01-13 Thread Tobias Soloschenko
Hi, you can also have a look at the examples: http://examples7x.wicket.apache.org/ kind regards Tobias > Am 13.01.2016 um 10:48 schrieb delfino : > > Hi, > > I am searching for good references about Apache Wicket. > > So far I have the Javadocs, the oficial Wicket

Re: wrapper for http://www.eyecon.ro/bootstrap-slider/

2016-01-01 Thread Tobias Soloschenko
Hi, yep - good point about squashing. kind regards Tobias > Am 01.01.2016 um 21:34 schrieb Martin Grigorov <mgrigo...@apache.org>: > > Hi, > > On Fri, Jan 1, 2016 at 8:17 PM, Tobias Soloschenko < > tobiassolosche...@googlemail.com> wrote: > >> Hi,

Re: wrapper for http://www.eyecon.ro/bootstrap-slider/

2016-01-01 Thread Tobias Soloschenko
w year to all of you celebrating new year around this > date :-) > > > On Wed, Dec 30, 2015 at 12:31 PM, Tobias Soloschenko < > tobiassolosche...@googlemail.com> wrote: > >> Great! Looking forward to see the result! :-) >> >> Thank you! >> >> ki

Re: wrapper for http://www.eyecon.ro/bootstrap-slider/

2016-01-01 Thread Tobias Soloschenko
. Additionally I also have other bootstrap based components >> that I use on my project that I might contribute to wicket-bootstrap. Let >> me see If I find the time to integrate them :-) >> >> On Fri, Jan 1, 2016 at 11:36 AM, Tobias Soloschenko < >> tobiassolosche...@g

Re: wrapper for http://www.eyecon.ro/bootstrap-slider/

2016-01-01 Thread Tobias Soloschenko
ide tests? Mind that component is just 90% > JavaScript and java is just a thin layer on top. > > On Fri, Jan 1, 2016 at 2:54 PM, Tobias Soloschenko < > tobiassolosche...@googlemail.com> wrote: > >> Hi, >> >> thank you for checking it and for your contributi

Re: wrapper for http://www.eyecon.ro/bootstrap-slider/

2015-12-30 Thread Tobias Soloschenko
Ernesto Reinaldo Barreiro" < >> reier...@gmail.com >>>> wrote: >>>> >>>>> Thanks for your replay. I will roll out such an implementation and >>>> create a >>>>> PR against wicket-bootstrap >>>>> >>>

Re: wrapper for http://www.eyecon.ro/bootstrap-slider/

2015-12-30 Thread Tobias Soloschenko
Hi, from what I can see on Wicket bootstrap - there is no integration for that: http://wb-mgrigorov.rhcloud.com/components But it should be no problem to implement it. :-) kind regards Tobias > Am 30.12.2015 um 08:21 schrieb Ernesto Reinaldo Barreiro : > > Hi Wicketeers,

Re: contributing to wicketstuff-core, how to format file in IntelliJ IDEA?

2015-12-29 Thread Tobias Soloschenko
Hi, I think you are looking for that: https://github.com/wicketstuff/core/blob/master/config/eclipse/wicket-workspace-javacode-formatter-profile.xml kind regards Tobias > Am 29.12.2015 um 13:24 schrieb Ernesto Reinaldo Barreiro : > > Thanks for your answer: my question

Re: Properties file for *.jar full of custom validators

2015-12-27 Thread Tobias Soloschenko
Hi, did you put the properties in src/main/java or src/main/resources? You have to but it into resources if no additional maven settings are applied. So create a package with the same name in resources and name the properties file the same as the class

  1   2   3   >