Re: Wicket & Quarkus

2024-03-27 Thread Martijn Dashorst
Quarkus + Wicket and graalvm native image will probably not work because of reflection use. An intern also looked at CDI + Wicket + Quarkus and that will also not work because Wicket components are not managed by the CDI container (we do a non-contextual injection), so the compile time ARC

Re: upgrading Wicket

2024-01-30 Thread Martijn Dashorst
If I was a consulting company I'd also suggest rewriting in React. But upgrading to latest/greatest Wicket is not too bad, even if it is Wicket 1.4 code. There are gotcha's, but since probably the whole Wicket community upgraded their projects way before you guys, the issues are pretty much well

Re: Wicket on low end hardware

2023-01-02 Thread Martijn Dashorst
As a simple test you could deploy a Wicket quick start to the device (make sure it runs in deployment mode) to see if it still is slow. If that is the case, you might need to look at the memory available for Tomcat. It might need a bit more than it is configured with. Tweaking the memory settings

Re: Will Wicket 9.x blocks Spring 6.x upgrade

2022-12-14 Thread Martijn Dashorst
AFAIK, at this moment, wicket-9.x doesn't provide jakarta.servlet compatible packages. However, you can easily craft them yourself using the eclipse jakarta transformer, and deploy them into your own artifactory/nexus/... - https://github.com/eclipse/transformer -

Re: Re: Automatically insert generated html IDs in other places in html file

2022-07-02 Thread Martijn Dashorst
I think Daniel suggest that Wicket doesn't make /all/ id's unique, only those that are owned by it by having a component attached to it. And even then, when you explicitly setMarkupId() you are yourself responsible for ensuring it is unique. BarPanel.html: BarPage.html: BarPagel.java:

Re: Why aren't setEnabled and setVisible model based?

2021-05-11 Thread Martijn Dashorst
The primary reason for not using IModel's as control mechanisms for visibility and enabling of components is memory usage. Wicket applications can have millions of Component instances at any given time in runtime memory, and adding 2 references plus the overhead of the IModel objects would be

Re: one pass render, mounted page back button

2020-06-24 Thread Martijn Dashorst
The only (unreasonable) solution is to persist the data in some way so your models can pull the updated data. If it is temporary (i.e. not permanent cross sessions), then storing the page data in the session will work. If it is more permanently tied to the user, you can probably store it in the

Re: Wicket and Chat Bots

2020-01-21 Thread Martijn Dashorst
Well, sounds like a good plan! Wicket was originally conceived as a VoiceXML framework by Jonathan Locke (if you go back long enough in the history you'll find references to com.voicetribe packages), but he pivoted to HTML when he needed to build a website. So Wicket has been developed with this

Re: Wicket recognized by ASF

2019-03-26 Thread Martijn Dashorst
XBOX.com? Nice... Martijn On Tue, Mar 26, 2019 at 3:29 PM Andrea Del Bene wrote: > > For its 20th birthday Apache Software Foundation celebrates by recognizing > 20 influential projects > > https://opensource.com/article/19/3/apache-projects > > -- > Andrea Del Bene. > Apache Wicket committer.

Re: An open source git server written with Wicket

2019-01-07 Thread Martijn Dashorst
Looks really great! Good initiative. Martijn On Mon, Jan 7, 2019 at 12:25 AM Robin Shen wrote: > > Dear wicket user, > > > I'd like to introduce an open source project - OneDev. It is a self-hosted > git server with unique features. The technology stack used is Wicket + > JQuery. Welcome any

Re: How to add Jetty server classes to Eclipse project?

2018-10-04 Thread Martijn Dashorst
On Thu, Oct 4, 2018 at 8:49 AM Rolf Schumacher wrote: > > I was trying to start learning about Apache Wicket (as it looked like an > easy to use UI for Java) and because I like to work with Eclipse and > Maven. I also like to work with Tomcat, however, Wicket seems to prefer > Jetty at least in

Re: Responsive bootstrap modal in standard Wicket 6.x

2018-09-17 Thread Martijn Dashorst
Not sure if that works. Probably the best way is to see if you can create a simple wrapper BootstrapModal component that takes the Panel from your Wicket 6 code. Another option, but I'm not sure how well that would work is to provide different HTML to the ModalWindow (e.g. a _style with

Re: Wicket architecture

2018-09-17 Thread Martijn Dashorst
I took a look and it seems ok. I miss how Wicket components/behaviors fall into this image because you do mention Wicket Model[s]. Martijn On Mon, Sep 10, 2018 at 10:33 AM JavaTraveler wrote: > > Hello everyone ! > > I have made a drawing to represent the functionning of Wicket, and I was >

Re: Curated list of Wicket Libraries and Solutions

2018-07-03 Thread Martijn Dashorst
Great list! Thanks for maintaining it! Martijn On Tue, Jul 3, 2018 at 7:00 AM Илья Нарыжный wrote: > > Dear, Wicket users, > > Exactly as you are, I love Wicket! It's great framework and even modern JS > frameworks as AngularJS, React and so on - pretty behind Wicket from > architecture

Nice article on Wicket 8 by the New Stack

2018-06-11 Thread Martijn Dashorst
https://thenewstack.io/wicket-8-whats-new-and-whats-next-for-the-server-side-java-web-framework/ Martijn - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Good Texts for Wicket

2018-06-08 Thread Martijn Dashorst
On Fri, Jun 8, 2018 at 5:31 PM, Michael Koboldt wrote: > Hello World! > > Hope this email finds you well! > > Outside of the API documentation and the examples on the net, I am in > search of some up-to-date textbooks for wicket 7.x and wicket 8.x. . Would > "Wicket in Action" still be worth

Article on Java web frameworks at Infoworld

2018-04-16 Thread Martijn Dashorst
https://www.infoworld.com/article/3263767/java/15-java-frameworks-that-give-developers-a-boost.html - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Wicket tests are extremely slow

2018-02-12 Thread Martijn Dashorst
Probably you're initializing your application for each test, so you should look into speeding that up or eliminating it all together (just once for the whole suite) Martijn On Mon, Feb 12, 2018 at 5:05 AM, James Selvakumar wrote: > Hi, > > We have a Wicket 7.x application

Re: Migrating from Wicket 1.4 to 6 - Serialization

2018-01-22 Thread Martijn Dashorst
Your field: it.loginet.petrol.application.quadratura.StampeFactory it.loginet.petrol.application.bettolina.BettolinaService.stampeFactory contains a not-serializable object. From what I can see it is a factory from Spring, that you probably should use @SpringBean for or @Inject (depending on

Hyderabad meetup new date: 25 January

2018-01-19 Thread Martijn Dashorst
The Hyderabad meetup has been moved to the next day: Thursday 25 January. Details of the meetup and RSVP: https://www.meetup.com/nl-NL/jughyderabad/events/246743640/ The meetup will be a great evening full of Java, domain driven design and of course Wicket. Agenda: - domain driven design -

Hyderabad Java & Wicket Meetup: 24 January

2018-01-16 Thread Martijn Dashorst
I'm proud to announce an Apache Wicket meetup in Hyderabad, India on 24 January. This meetup is hosted by coMakeIT (many thanks for them organizing it)! Martijn Dashorst, author of "Wicket in Action" and long time contributor to Apache Wicket visits Hyderabad and will give

Re: File download not working after migrating to wicket 8

2018-01-03 Thread Martijn Dashorst
Is this something for the migration guide? Martijn On Tue, Jan 2, 2018 at 12:40 PM, Ravi wrote: > That did the trick, thanks Sven! > > -- > Sent from: > http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html > >

Re: Performance issue (possible bug since 7.2.0…up to and including 8.0.0-M8)

2017-12-13 Thread Martijn Dashorst
In 7.2 we modified the markupcontainer's storage of its children to accommodate large numbers of children. The original structure gave adding children a O(N^2) complexity, so it was changed to become O(1) for N>some value. Apparently your use case is not part of our setup and we should see what

Re: Looking for contact information for Java User Group in Hyderabad, India

2017-12-08 Thread Martijn Dashorst
I'll forward the actual details of any meetup to this list when I have them! Martijn On Fri, Dec 8, 2017 at 10:07 AM, Martijn Dashorst < martijn.dasho...@gmail.com> wrote: > > On Thu, Dec 7, 2017 at 8:08 PM, Kiran Ayyagari <kayyag...@apache.org> > wrote: > >>

Re: Looking for contact information for Java User Group in Hyderabad, India

2017-12-08 Thread Martijn Dashorst
On Thu, Dec 7, 2017 at 8:08 PM, Kiran Ayyagari <kayyag...@apache.org> wrote: > On Wed, Dec 6, 2017 at 7:26 PM, Martijn Dashorst < > martijn.dasho...@gmail.com > > wrote: > > > Heya, > > > > I might be traveling to Hyderabad, India and was wondering

Looking for contact information for Java User Group in Hyderabad, India

2017-12-06 Thread Martijn Dashorst
Heya, I might be traveling to Hyderabad, India and was wondering if the local Java User Group is active and would like a session on Wicket 8 or anything else. I think it would be awesome if I could meet local developers and chat about everything Wicket! Martijn

Re: Wicket 8.0.0 - Official Release

2017-11-24 Thread Martijn Dashorst
I would start on wicket 8. The final release isn't far off... and there's no to little rework to be expected in wicket 8. Martijn On Fri, Nov 24, 2017 at 7:17 AM, Dirk Forchel wrote: > Hi everybody, we would like to know whether exists an official release date > for

Re: Code Generator with Wicket...

2017-10-09 Thread Martijn Dashorst
Perhaps https://isis.apache.org is doing what you are looking for? Martijn On Mon, Oct 9, 2017 at 9:57 AM, badgers wrote: > Hi, > > in my project I have a lot of easy master data gui's...nothing complex. > mostly with one foerign key in its data store. > > I want

Re: Serialized Session Data in Websphere

2017-08-30 Thread Martijn Dashorst
We are aware of this issue: WICKET-6457 (since yesterday). The dev@ list is discussing releasing patches for 6.x and 7.x. Martijn On Wed, Aug 30, 2017 at 4:22 PM, Entropy wrote: > Our operations team just discovered huge growth of files in a temp folder > named

Re: Localized warning in Validator

2017-07-05 Thread Martijn Dashorst
Hi Virginie, Your code doesn't look wrong. Here's a snippet from one of our applications that validates a social security number. It's a bit less verbose than your example, but seems to work similarly. And you've already used ValidationError so you are aware of its existence. public class

The day Wicket became Apache Wicket 10 years ago!

2017-06-19 Thread Martijn Dashorst
! Here's a big Thank You for everyone reading this message, asking and answering questions, using Wicket in their projects and a special :beer: for all contributors to Wicket, past and present! Here's to another 10 years! Martijn Dashorst

Re: WicketTester's possible bug?

2017-05-06 Thread Martijn Dashorst
This is as designed. We are stricter in our markup checking in dev mode than in prod mode. Mostly because of performance considerations. You can fiddle with the settings to make dev and prod similar. Search the archives or see the one of the *Settings classes for which setting to en/disable. (I

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

2017-03-22 Thread Martijn Dashorst
WOW On Wed, Mar 22, 2017 at 10:12 PM, Martin Grigorov wrote: > Hi, > > Somehow Wicket finished at 3rd position at the last preview run of > TechEmpower framework tests :-) > https://www.techempower.com/benchmarks/previews/round14/#section=data-r14=ph=json > > At plaintext

Re: Annotation for detachable field

2016-12-05 Thread Martijn Dashorst
This would not be any more efficient than scanning for fields that implement IDetachable. Which is: rather inefficient for when you have component hierarchies of 100-1000s of components. We have created a utility method at $$$ job that removes the need for the null check, and takes into account

Re: How allow select from a disabled field

2016-12-02 Thread Martijn Dashorst
On Fri, Dec 2, 2016 at 12:21 PM, Pedro Santos wrote: > After reading the thread on Isis's mailing list, I'm under the impression > that the best solution is to offer an API enabling users to configure how > the disabled text field will be shown. My suggestion is to add the

Re: Pluggable architecture for wicket application

2016-11-14 Thread Martijn Dashorst
I know a Dutch company (or two) that use OSGi, I'm certain that one uses Wicket + OSGi: educator.eu. The other, luminis.eu, does a lot of work with OSGi, but might not use it in combination with Wicket. I only have second hand knowledge about the combination, and it's probably outdated. Maybe

[ANNOUNCE] CVE-2016-6806: Apache Wicket CSRF detection vulnerability

2016-11-08 Thread Martijn Dashorst
CVE-2016-6806: Apache Wicket CSRF detection vulnerability Severity: Important Vendor: The Apache Software Foundation Versions Affected: Apache Wicket 6.20.0, 6.21.0, 6.22.0, 6.23.0, 6.24.0, 7.0.0, 7.1.0, 7.2.0, 7.3.0, 7.4.0 and 8.0.0-M1 Description: Affected versions of Apache Wicket provide a

Wicket at ApacheCon EU 2016 Sevilla: in just 1 week!

2016-11-08 Thread Martijn Dashorst
All, If you haven't figured out what to do with your training budget for this year, you really should consider attending ApacheCon in Sevilla, Spain. 2 awesome sessions about Apache Wicket, the chance to discuss with core contributors of your favorite Apache projects, even with Andrea and

[ANNOUNCE] Apache Wicket 6.25.0 Released

2016-10-26 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 6.25.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

[ANNOUNCE] Apache Wicket 7.5.0 Released

2016-10-26 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 7.5.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

[ANNOUNCE] Apache Wicket 8.0.0-M2 Released

2016-10-26 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 8.0.0-M2! 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

Re: WICKET-6249

2016-10-24 Thread Martijn Dashorst
The releases are now in vote, probably today or tomorrow I'll push the release buttons. Martijn On Sat, Oct 15, 2016 at 9:40 PM, Martin Grigorov wrote: > Hi Jonas, > > Looking at the changes at WICKET-6249 I think the problem is fixed and the > ticket could be closed. >

Come see Wicket at ApacheCon EU Nov 17-19 in Sevilla!

2016-10-19 Thread Martijn Dashorst
All, ApacheCon EU 2016 features two presentations concerning Apache Wicket: - Andrea del Bene with "Apache Wicket: the story so far and beyond" - Martijn Dashorst with "What's up with Wicket 8 and Java 8" Both are great sessions, and you have a good opportunity to meet and

Re: Reload Wicket classes/markup without reloading Servlet Container

2016-09-02 Thread Martijn Dashorst
At € day job we pay a lot to use jrebel. Not perfect but does the job reasonably well. Unfortunately their new licensing model made it about 4 times more expensive for us to use it. Martijn On Friday, 2 September 2016, Tobias Soloschenko < tobiassolosche...@googlemail.com> wrote: > Hi, > > you

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

2016-08-22 Thread Martijn Dashorst
On Mon, Aug 22, 2016 at 3:30 AM, Jenny Brown wrote: > I looked at Eclipse Marketplace and the self-hosting was confusing; if > someone familiar with that wants to pair with me to try to get it properly > submitted, I can try. I don't have my own hosting service for the

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

2016-08-22 Thread Martijn Dashorst
WOOHOO! Great work Jenny! Martijn On Mon, Aug 22, 2016 at 3:30 AM, Jenny Brown wrote: > About 5 years ago, I created wicket-source, a set of extensions that let > you inspect a wicket component in your browser, and click a button to go to > that line of your source code

Re: wicketstuff-htmlvalidator problem

2016-08-18 Thread Martijn Dashorst
Without the actual markup there's little we can help you with. What is the markup that generates these error reports? Martijn On Thu, Aug 18, 2016 at 12:00 PM, Dirk Forchel wrote: > Hi, > we're trying to use the Wicketstuff Html Validator (see >

[ANNOUNCE] Apache Wicket 7.4.0 Released

2016-07-21 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 7.4.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

[ANNOUNCE] Apache Wicket 6.24.0 Released

2016-07-21 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 6.24.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

Re: Random ConcurrentModificationException since upgrade to Wicket 7.3.0

2016-05-16 Thread Martijn Dashorst
(WicketEndpoint.java:71) ~[wicket-native-websocket-javax-7.3.0.jar:7.3.0] The exception happens while traversing the component tree for serialization. Wouldn't the LinkedMap be modified when something happens on the page during the serialization phase? Martijn On Mon, May 16, 2016 at 11:26 PM, Martijn Dashorst

Re: Random ConcurrentModificationException since upgrade to Wicket 7.3.0

2016-05-16 Thread Martijn Dashorst
gt; > > On 16.05.2016 22:09, Martijn Dashorst wrote: >> >> Since Wicket 7.1 we introduced a dependency on commons-collections for >> the O(1) adding of components. >> >> Martijn >> >> On Mon, May 16, 2016 at 10:08 PM, Sven Meier <s

Re: Random ConcurrentModificationException since upgrade to Wicket 7.3.0

2016-05-16 Thread Martijn Dashorst
Since Wicket 7.1 we introduced a dependency on commons-collections for the O(1) adding of components. Martijn On Mon, May 16, 2016 at 10:08 PM, Sven Meier wrote: > Hi, > >>org.apache.commons.collections4.map.LinkedMap.writeObject > > Wicket does not use commons-collections, so

Re: [ANNOUNCE] Apache Wicket 7.3.0 Released

2016-05-07 Thread Martijn Dashorst
On 7 May 2016 at 15:59:04, Thorsten Schöning (tschoen...@am-soft.de) wrote: > Guten Tag Martijn Dashorst, > am Samstag, 7. Mai 2016 um 15:00 schrieben Sie: > > > The Apache Wicket PMC is proud to announce Apache Wicket 7.3.0! > > Great work. Any idea on how long i

[ANNOUNCE] Apache Wicket 7.3.0 Released

2016-05-07 Thread 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 applications and web sites for governments, stores, universities, cities, banks, email providers, and more. You can find

[ANNOUNCE] Apache Wicket 6.23.0 Released

2016-05-07 Thread 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 applications and web sites for governments, stores, universities, cities, banks, email providers, and more. You can find

Re: Component disabled if it contains data

2016-04-19 Thread Martijn Dashorst
On Tue, Apr 19, 2016 at 7:28 PM, sub es wrote: > In my opinion one should always validate inputs coming from a submit even if > the inputs were disabled. Using tools like firebug, one can easily change > values of disabled inputs and submit those changed values. Atleast I

Wicket in the news!

2016-03-01 Thread 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 project and the future. Enjoy! Thanks to Matt Raible for reaching out and the Wicket team for helping with the interview. Martijn

[ANNOUNCE] Apache Wicket 7.2.0 released

2016-02-19 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 7.2.0! This release marks another minor release of Wicket 7. 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 7.0.0. Using this release

[ANNOUNCE] Wicket 7.2.0 released

2016-02-19 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 7.2.0! This release marks another minor release of Wicket 7. 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 7.0.0. Using this release

[ANNOUNCE] Wicket 6.22.0 released

2016-02-19 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 6.22.0! This release marks another minor release of Wicket 6. 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 6.0.0. Using this release

Re: https://twitter.com/apache_wicket after 10 months

2016-02-05 Thread Martijn Dashorst
The best source for all news concerning Apache Wicket! Keep up the good work! Martijn On Fri, Feb 5, 2016 at 9:05 AM, Francois Meillet wrote: > Dear All, > > https://twitter.com/apache_wicket after 10 months : > > 50 tweets posted about technical articles > 50 tweets

Re: Wicket Presentation

2016-01-27 Thread Martijn Dashorst
I'm still considering it. Unfortunately it falls right in a very busy period for me. What kind of presentation would you like to go to? What kind of subjects should be covered? Martijn On Tue, Jan 26, 2016 at 7:20 PM, Jered Myers wrote: > Is anybody planning any

Re: Lots of files in temp folder

2016-01-23 Thread Martijn Dashorst
Often a segfault or kill -9 causes the temp folders to retain session files. Martijn On Fri, Jan 22, 2016 at 9:52 PM, Martin Grigorov wrote: > https://issues.apache.org/jira/browse/WICKET-6083 > > I also see some pretty old files and folders on our servers. > I'll debug

[MEETUP] Wicket 7 & Java 8 migration party 27 november in Deventer (NL)

2015-11-18 Thread Martijn Dashorst
This is a gentle reminder for this event: At our local meetup in Deventer (http://meetup.com/DEVdev) we wanted to host a Wicket 7 migration party where you can bring your laptop and your source code and join the fun of developing with Wicket 7! And while we're at it, we'll be discussing Java 8

Re: Pagemap help

2015-11-16 Thread Martijn Dashorst
e you basically saving that with wicket there is no way I can not avoid > the pagemap locking for a given ajax or iframe request when needed? > > BTW web sockets aren't supported in IE8. > > On Mon, Nov 16, 2015 at 1:47 PM, Martijn Dashorst < > martijn.dasho...@gmail.com&g

Re: Pagemap help

2015-11-16 Thread Martijn Dashorst
you probably should look into websockets if you don't want polling. Martijn On Mon, Nov 16, 2015 at 12:50 PM, Wayne W wrote: > Hi, > > I have a page that has a AbstractDefaultAjaxBehavior which adds a new panel > in the ajax request. This new panel can be a long

[ANNOUNCE] Apache Wicket 6.21.0 released

2015-11-16 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 6.21.0! This release marks another minor release of Wicket 6. 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 6.0.0. Using this release

Re: [vote] Release WicketStuff WiQuery 7.0

2015-11-08 Thread Martijn Dashorst
raining and Consulting > https://twitter.com/mtgrigorov > > On Tue, Nov 3, 2015 at 11:40 AM, Martijn Dashorst < > martijn.dasho...@gmail.com> wrote: > >> Pre Scriptum: >> >> While odd to vote for a release for a Wicket Stuff project on the user >> list, this is

[vote] Release WicketStuff WiQuery 7.0

2015-11-03 Thread Martijn Dashorst
Pre Scriptum: While odd to vote for a release for a Wicket Stuff project on the user list, this is where the community of Wicket Stuff lives, so here it goes: = Vote to release WicketStuff WiQuery 7.0 This is a vote for releasing WiQuery 7.0 from the Wicket Stuff organisation. WiQuery is a

Re: Wicket CSRF

2015-10-30 Thread Martijn Dashorst
Use the CsrfPreventionRequestCycleListener. It checks the origin header and prevents requests from untrusted origins, which the cryptomapper doesn't do. That just encrypts the URLs, making them hard to guess, but doesn't prevent anyone from calling such an URL from a different origin. Martijn

[ANNOUNCE] Apache Wicket 7.1.0 released

2015-10-26 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 7.1.0! This release marks another minor release of Wicket 7. 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 7.0.0. New and noteworthy

Re: [VOTE] Release Apache Wicket 7.1.0 (take 2)

2015-10-24 Thread Martijn Dashorst
This vote passes. I'll upload the release. Martijn On Thu, Oct 22, 2015 at 10:36 PM, Sebastien <seb...@gmail.com> wrote: > [x] Yes, release Apache Wicket 7.1.0 > > Tested over Wicket jQuery UI > > On Tue, Oct 20, 2015 at 1:06 AM, Martijn Dashorst <dash

Re: Wicket 8

2015-10-24 Thread Martijn Dashorst
No. I don't think it will be in 6 months. We might do some milestones. We'll be sure to get Java 8 features right. Martijn On Saturday, 24 October 2015, Mihir Chhaya wrote: > Hello, > > On apache wicket website download section, there is link for wicket 8 > snapshot.

[MEETUP] Wicket 7 migration party 27 november in Deventer

2015-10-21 Thread Martijn Dashorst
there! Martijn Dashorst - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Have a Heineken on me Wicket team!

2015-10-15 Thread Martijn Dashorst
aerated it's alive!!! dumdumdumdum taadaa taadaadaa On Tue, Sep 22, 2015 at 11:15 PM, Paul Bors wrote: > Soon we will lunch a small little site for the new James Bond 007 movie and > as some of you might now, he started drinking Heineken now-a-day :) > >

Re: Have a Heineken on me Wicket team!

2015-09-23 Thread Martijn Dashorst
Did you use Wicket 007? Martijn On Tue, Sep 22, 2015 at 11:15 PM, Paul Bors wrote: > Soon we will lunch a small little site for the new James Bond 007 movie and > as some of you might now, he started drinking Heineken now-a-day :) > > http://hknbond-us.heineken.com/ > > Just

Re: Performance Degredation for Adding Components in Wicket 7.0.0 vs. Wicket 6.20.0

2015-09-15 Thread Martijn Dashorst
Thanks for doing this! Martijn On Mon, Sep 14, 2015 at 10:43 PM, Aaron J. Garcia wrote: > >> I created an issue in JIRA, >> attached a quick-start, and marked it as Major issue. In my opinion, this >> should be moved to Critical or Blocker status though... I'm sure I'm not

Re: Upgrading Wicket 1.2 site

2015-09-07 Thread Martijn Dashorst
Probably you're asking this question on the Hibernate lists as well: does it make sense to upgrade from Hibernate 1.2 to 5? And on the Spring list as well. :-) It depends: it is totally dependent on the quality of the code in the first place. It is quite a lot years you'll need to update. One of

Re: Strange Java linkage error with wicketstuff HTML Validator 1.10

2015-07-30 Thread Martijn Dashorst
It appears that I have released 1.11 instead of 1.10... that makes sense: pebkac... Martijn On Thu, Jul 30, 2015 at 3:19 PM, Martin Grigorov mgrigo...@apache.org wrote: javap it On Jul 30, 2015 3:17 PM, Martijn Dashorst martijn.dasho...@gmail.com wrote: True

Re: Strange Java linkage error with wicketstuff HTML Validator 1.10

2015-07-30 Thread Martijn Dashorst
True, but HtmlValidatingResponseFilter was compiled against wicket 7, so the reference should've been updated. Martijn On Thu, Jul 30, 2015 at 3:10 PM, Martin Grigorov mgrigo...@apache.org wrote: s/LObject/LSerializable/ -- Become a Wicket expert, learn from the best:

Strange Java linkage error with wicketstuff HTML Validator 1.10

2015-07-30 Thread Martijn Dashorst
I'm quite baffled by this problem: https://gist.github.com/dashorst/e658eb5c2dc98eb7c44a Anyone have an idea what is wrong here? Martijn - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands,

[ANNOUNCE] WicketStuff 7.0.0 Released

2015-07-29 Thread Martijn Dashorst
): removed custom StatelessLink component Carl-Eric Menzel (1): add from/bind shortcut Martijn Dashorst (4): Use wicket 7.0.0 Fix parent dependency to 7.0.0-SNAPSHOT Use wicket15-tree version 7.0.0 Release WicketStuff 7.0.0 Martin Tzvetanov Grigorov (6): Changes

[ANNOUNCE] Apache Wicket v7.0 Released

2015-07-28 Thread Martijn Dashorst
framework processing billions of requests daily across the world. With this release we have added a major improvement to our framework, making development with Wicket even easier., said Martijn Dashorst, Vice President of Apache Wicket. By adding 'Component Queuing' we have divorced the strict

[ANNOUNCE] Wicket 7.0.0-M6 released

2015-06-23 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 7.0.0-M6! This release marks another minor release of Wicket 7. 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 7.0.0. New and noteworthy

Re: Wicket Version Support

2015-06-22 Thread Martijn Dashorst
On Mon, Jun 22, 2015 at 3:59 PM, Mihir Chhaya mihir.chh...@gmail.com wrote: Hello, This is regarding technical support for various Wicket Versions. I am aware of community and commercial support information available on Wicket website at https://wicket.apache.org/help/ But, I am looking

[ANNOUNCE] Apache Wicket 6.20.0 adds InlineImage and CSRF prevention measure

2015-06-17 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 6.20.0! This release marks another minor release of Wicket 6. Starting with Wicket 6 we use semantic versioning for the future development of Wicket, and as such no API breaks are present in this release compared to 6.0.0. New and

Re: Wicket site available in GitHub

2015-06-17 Thread Martijn Dashorst
I'm currently working with my intern to migrate the user guide to asciidoctor. He's a smart guy so it progresses quite impressively. We have a php script that migrates all docs from gdoc to asciidoc and are now in the process of generating a single HTML file and PDF. Multi page HTML site

Re: Wicket 6.20 release date?

2015-06-16 Thread Martijn Dashorst
syncs with Central is a bit of a mystery, but usually it is done within 12 hours after releasing the staging repository. Martijn On Tue, Jun 16, 2015 at 4:43 PM, tomask79 tomas.klou...@embedit.cz wrote: Martijn Dashorst wrote I'm not certain it will be today... Work intervened. Am working

Re: up to date Wicket presentation?

2015-06-15 Thread Martijn Dashorst
On Mon, Jun 15, 2015 at 4:52 PM, andrea del bene an.delb...@gmail.com wrote: a crush-course on Wicket 6. It doesn't cover every topic of the framework but it might help you. Crush: a burning desire to be with someone who you find very attractive and extremely special. I absolutely love a

Re: Wicket 6.20 release date?

2015-06-05 Thread Martijn Dashorst
My intention was today btw. Martijn On Fri, Jun 5, 2015 at 10:50 AM, Martijn Dashorst martijn.dasho...@gmail.com wrote: I would like to introduce that class we spoke of earlier, and then release it. Martijn On Fri, Jun 5, 2015 at 8:20 AM, Martin Grigorov mgrigo...@apache.org wrote: Yes

Re: Wicket 6.20 release date?

2015-06-05 Thread Martijn Dashorst
I would like to introduce that class we spoke of earlier, and then release it. Martijn On Fri, Jun 5, 2015 at 8:20 AM, Martin Grigorov mgrigo...@apache.org wrote: Yes, it is long overdue! 6.19.0 has been released 4 months ago. There are almost 50 resolved tickets for 6.20. Martijn? Martin

Re: Wicket 6.20 release date?

2015-06-05 Thread Martijn Dashorst
I'm not certain it will be today... Work intervened. Am working on the code as we speak. Martijn On Fri, Jun 5, 2015 at 11:06 AM, Tobias Soloschenko tobiassolosche...@googlemail.com wrote: Would be awesome! :-) kind regards Tobias Am 05.06.2015 um 10:50 schrieb Martijn Dashorst

Re: Training slides/presentation for work colleagues?

2015-06-02 Thread Martijn Dashorst
I don't have a training available (I tried to find a deck from way back), but you can look at these slides: http://www.slideshare.net/dashorst Wicket and JavaEE is a rather complete deck I was able to go through in roughly 60 minutes, but if you want to explain things more in depth, you can

Re: Next Wicket 7 Release?

2015-05-15 Thread Martijn Dashorst
On Thu, May 14, 2015 at 9:43 PM, Don Ferguson don.fergu...@gmail.com wrote: Good people of Wicket land: it’s been 3 months since 7.0.0-M5 came out. Is an M6 or a release candidate going to be coming our way any time soon? Rest assured! We are working on it. We uncovered some nastiness with

Re: Wicket on Heroku with multiple dyno's

2015-05-06 Thread Martijn Dashorst
Have you enabled heroku's new support for semi-sticky sessions? https://blog.heroku.com/archives/2015/4/28/introducing_session_affinity Martijn On Wed, May 6, 2015 at 1:02 AM, Thies Edeling tedel...@gmail.com wrote: Hi, I can't seem to get a Wicket app running on Heroku with multiple dyno's.

ApacheCon US 2015

2015-03-19 Thread Martijn Dashorst
Dear Apache enthusiast, In just a few weeks, we'll be holding ApacheCon in Austin, Texas, and we'd love to have you in attendance. You can save $300 on admission by registering NOW, since the early bird price ends on the 21st. Register at http://s.apache.org/acna2015-reg ApacheCon this year

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: Question regarding index handling with RefreshingView and OddEvenItem

2015-02-16 Thread Martijn Dashorst
Why not use pure css for zebra striping? adding classes for odd/even is rather oldschool... tbody tr:nth-child(odd) { background-color: #ccc; } Martijn On Sun, Feb 15, 2015 at 3:56 PM, Thorsten Schöning tschoen...@am-soft.de wrote: Hi all, I'm using DataView to publish some search results in

Re: 6.19.0 release date?

2015-01-23 Thread Martijn Dashorst
from now) Martijn On Thu, Jan 22, 2015 at 2:35 PM, Martin Grigorov mgrigo...@apache.org wrote: 6.19 only or 7.0.0 too ? Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Thu, Jan 22, 2015 at 3:21 PM, Martijn Dashorst martijn.dasho...@gmail.com wrote: I'll

Re: 6.19.0 release date?

2015-01-22 Thread Martijn Dashorst
I'll see if I can build a release this weekend (or tomorrow) Martijn On Thu, Jan 22, 2015 at 12:50 PM, Tom Götz t...@decoded.de wrote: Hi there, are there already considerations for a release date of 6.19.0? Cheers, -Tom

  1   2   3   4   5   6   7   8   9   10   >