Re: Wicket plugin architecture

2013-07-17 Thread Decebal Suiu
Hi If anybody is interested, Wicket Plugin <https://github.com/decebals/wicket-plugin> is now available on github. Best regards, Decebal -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-plugin-architecture-tp4652305p4660307.html Sent from the Users

RE: Wicket plugin architecture

2012-10-18 Thread Decebal Suiu
d to add a little improvement over the solution chosen by you. A demo will be also available. I will come with more information in the next post. Any suggestion or idea is welcome. Best regards, Decebal -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-pl

Re: Wicket plugin architecture

2012-10-18 Thread Bas Gooren
lot of custom images? Best regards, Michal Wegrzyn -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Thursday, October 18, 2012 16:24 To: users@wicket.apache.org Subject: Re: Wicket plugin architecture On Thu, Oct 18, 2012 at 4:21 PM, Michal Wegrzyn wrote: Than

RE: Wicket plugin architecture

2012-10-18 Thread Michal Wegrzyn
--Original Message- > From: Martin Grigorov [mailto:mgrigo...@apache.org] > Sent: Thursday, October 18, 2012 16:24 > To: users@wicket.apache.org > Subject: Re: Wicket plugin architecture > > On Thu, Oct 18, 2012 at 4:21 PM, Michal Wegrzyn > wrote: > > Th

Re: Wicket plugin architecture

2012-10-18 Thread Martin Grigorov
t; Michal Wegrzyn > >> -Original Message- >> From: Martin Grigorov [mailto:mgrigo...@apache.org] >> Sent: Tuesday, September 25, 2012 10:48 >> To: users@wicket.apache.org >> Subject: Re: Wicket plugin architecture >> >> Hi, >> >> The si

RE: Wicket plugin architecture

2012-10-18 Thread Michal Wegrzyn
mages? Best regards, Michal Wegrzyn > -Original Message- > From: Martin Grigorov [mailto:mgrigo...@apache.org] > Sent: Tuesday, September 25, 2012 10:48 > To: users@wicket.apache.org > Subject: Re: Wicket plugin architecture > > Hi, > > The

Re: Wicket plugin architecture

2012-09-25 Thread Decebal Suiu
le to adapt jenkins plugin system to wicket but I don't know how big is this task. It's anybody here that can explains us how the plugin system is implemented in brixcms? Best regards, Decebal -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-plug

Re: Wicket plugin architecture

2012-09-25 Thread Decebal Suiu
com/Wicket-plugin-architecture-tp4652305p4652321.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Wicket plugin architecture

2012-09-25 Thread Dan Simko
Hi, You can also look at https://github.com/brix-cms/brix-cms. It is much simpler than hippo. Best regards, Dan On Tue, Sep 25, 2012 at 10:48 AM, Martin Grigorov wrote: > Hi, > > The simplest way is to use Wicket's org.apache.wicket.IInitializer class. > Just create a Jar (the plugin) that cont

Re: Wicket plugin architecture

2012-09-25 Thread Martin Grigorov
Hi, The simplest way is to use Wicket's org.apache.wicket.IInitializer class. Just create a Jar (the plugin) that contains the plugin classes and wicket.properties in the root package and a line inside: initializer=com.example.MyInitializer MyInitializer#init(Application) will be called just befo

Wicket plugin architecture

2012-09-25 Thread Michal Wegrzyn
Dear developers, I need to prepare plugin architecture for a Wicket based project. I've found that open source Hippo CMS ( http://svn.onehippo.org/repos/hippo/ ) does it, but I am curious if there are any other projects that do such a thing? Do you maybe know this kind of projects or frameworks?