Taking a moment ...

2010-12-24 Thread Cemal Bayramoglu
This is an appropriate moment to explicitly say a sincere thanks and reiterate my respect and gratitude to everyone that has contributed to Wicket, all the useful satellite projects, and to this forum, the quality and value of which I have not witnessed on any other medium, free or paid-for! In

Re: Taking a moment ...

2010-12-24 Thread Altuğ Bilgin Altıntaş
Thanks Cemal. 2010/12/24 Cemal Bayramoglu jweekend_for...@cabouge.com This is an appropriate moment to explicitly say a sincere thanks and reiterate my respect and gratitude to everyone that has contributed to Wicket, all the useful satellite projects, and to this forum, the quality and

Simple way to show image on WebPage

2010-12-24 Thread Anton Bessonov
Hello, I've folder of images such as $PROJECT_ROOT/images/ and in $PROJECT_ROOT/src/main/java/org/myproject/myprofile/MyProfilePage.java: package org.myproject.myprofile; public class MyProfilePage extends WebPage { ... public MyProfilePage() { ... class MyProfileForm extends Form {

Re: adding behaviour to a panel

2010-12-24 Thread fachhoch
I was wrong the script was rendered I saw using firebug and found the script , but noticed that old script are not removed till the page is refreshed, suppose my panel added some scripts and css and onclick of ajax button I repalced the panel with new panel and it does not need the behaviour

Happy Christmas good new year!

2010-12-24 Thread nino martinez wael
Yet another year with Wicket evolving and new wicket stuffings. Thanks to the wicket developers Wicket stuffers for making my life better, and improving my code :) live long and prosper :) regards Nino

eHour

2010-12-24 Thread moèz ben rhouma
A framework for timesheet management based on Wicket: eHour. http://javajeedevelopment.blogspot.com/2010/12/ehour-timesheet-management.html

Re: eHour

2010-12-24 Thread Martin Grigorov
~tedeling++ ;-) On Fri, Dec 24, 2010 at 3:42 PM, moèz ben rhouma benrhouma.m...@gmail.comwrote: A framework for timesheet management based on Wicket: eHour. http://javajeedevelopment.blogspot.com/2010/12/ehour-timesheet-management.html

[ANNOUNCE] Wicket 1.4.15 released

2010-12-24 Thread Jeremy Thomerson
The Wicket development team is proud to announce that we have released Wicket 1.4.15. This is a bugfix and minor improvement release in the 1.4.x (stable) branch. To download: http://www.apache.org/dyn/closer.cgi/wicket/1.4.15 Release Tag:

Re: Authorization through Spring Security

2010-12-24 Thread Brian Topping
The key for using Wicket authorization annotations is to implement IAuthorizationStrategy and IUnauthorizedComponentInstantiationListener. When you get called in those methods, you can call out to Spring Security to check how to proceed. Just implement the methods with stubs, set breakpoints

Re: Simple way to show image on WebPage

2010-12-24 Thread andrea del bene
Hi Anton, I've used class ContextImage in a situation like this, but folder containing images must be inside WebContent folder, at the same level of WEB-INF folder. In this scenario you should be able to access your images writing something like this add(new ContextImage(icon,

Re: Authorization through Spring Security

2010-12-24 Thread Dmytro Seredenko
Hi Brian, thanks for your response, I'll definitely try proposed approach. The reasons to manage Sprimg Security 3 authorization are: - to have one security framework for authentication and authorization (which is more naturally than having two) - to have https configuration based on

Re: eHour

2010-12-24 Thread Thies Edeling
Heyy that looks familiar :) On Dec 24, 2010, at 16:12, Martin Grigorov mgrigo...@apache.org wrote: ~tedeling++ ;-) On Fri, Dec 24, 2010 at 3:42 PM, moèz ben rhouma benrhouma.m...@gmail.comwrote: A framework for timesheet management based on Wicket: eHour.

Re: Authorization through Spring Security

2010-12-24 Thread James Carman
On Fri, Dec 24, 2010 at 11:40 AM, Brian Topping topp...@codehaus.org wrote: The key for using Wicket authorization annotations is to implement IAuthorizationStrategy and IUnauthorizedComponentInstantiationListener.  When you get called in those methods, you can call out to Spring Security to

Re: Authorization through Spring Security

2010-12-24 Thread Dmytro Seredenko
Thanks guys, now I'm getting full picture. James, did you apply AOP approach you mentioned, or you went Wicket-way ? On Fri, Dec 24, 2010 at 11:39 AM, James Carman ja...@carmanconsulting.comwrote: On Fri, Dec 24, 2010 at 11:40 AM, Brian Topping topp...@codehaus.org wrote: The key for using

Re: Authorization through Spring Security

2010-12-24 Thread Jeremy Thomerson
On Fri, Dec 24, 2010 at 1:39 PM, James Carman ja...@carmanconsulting.com wrote: Doing it with intercept URLs might work for a few pages that you have mounted in Wicket, but in the end, every new page is going to have to be set up perfectly.  It's not worth it go go that route. It will work

Re: Authorization through Spring Security

2010-12-24 Thread Dmytro Seredenko
Ok, things become more complex :) Guys, here is the trivial task I'm trying to resolve: provide authentication against datasource (using custom AuthenticationProvider) + authorization based on a set of criteria (user role - one of them) + secure specific pages. I try to solve it using old-school