Winter time makes test fail: TimeOfDayTest

2015-10-25 Thread Martijn Dashorst
While cleaning up warnings across the board I ran the tests and behold we have a test that doesn't work well with winter time/summer time (DST) Failed tests: TimeOfDayTest.test:37->Assert.assertEquals:144->Assert.assertEquals:118->Assert.failNotEquals:834->Assert.fail:88 expected:<0:0> but

Re: Winter time makes test fail: TimeOfDayTest

2015-10-25 Thread Andrea Del Bene
Old story :-) http://wicket-dev.markmail.org/message/soepmwd2s3r6n5op?q=TimeOfDayTest+fails..today! +1 to deprecate them. While cleaning up warnings across the board I ran the tests and behold we have a test that doesn't work well with winter time/summer time (DST) Failed tests:

Building Wicket with Docker

2015-10-25 Thread Andrea Del Bene
Hi everybody, does anybody have tried to build Wicket inside a Docker container? I'm trying with one of the official Maven images: https://hub.docker.com/_/maven/. However, I still get failures with test MinifiedAwareResourceReferenceTest: Failed tests:

Generic resource reference for video / audio playback

2015-10-25 Thread Tobias Soloschenko
Hi guys, as I wrote in the confluence page about new Wicket 8 features, I wanted to ask you what you think about a generic resource reference to handle with media files located at the file system of the server or at least are reachable by java streams. This would it make easier to point to a

Re: [GitHub] wicket pull request: Wicket 6.x

2015-10-25 Thread Martijn Dashorst
On Sun, Oct 25, 2015 at 9:03 PM, asfgit wrote: > Github user asfgit closed the pull request at: > > https://github.com/apache/wicket/pull/76 > > YES! Explanation: this github PR was completely bogus and didn't make any sense. The original author was unresponsive to

Re: [GitHub] wicket pull request: Wicket 6.x

2015-10-25 Thread Tobias Soloschenko
Great! Finally it's closed! :-) kind regards Tobias > Am 25.10.2015 um 21:13 schrieb Martijn Dashorst : > >> On Sun, Oct 25, 2015 at 9:03 PM, asfgit wrote: >> Github user asfgit closed the pull request at: >> >>

[GitHub] wicket pull request: Wicket 6.x

2015-10-25 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/wicket/pull/76 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is

Re: Building Wicket with Docker

2015-10-25 Thread Andrea Del Bene
Found the answer myself. I had to correctly set the container locale. For example: ENV LANG en_US.UTF-8 ENV LANGUAGE en_US:en ENV LC_ALL en_US.UTF-8 Hi everybody, does anybody have tried to build Wicket inside a Docker container? I'm trying with one of the official Maven images: