Re: Strange stack trace in logs

2008-07-03 Thread Piller Sébastien
Nobody ever saw stack traces like this on theire logs? It's strange, I really have a lot of them... About 2MB only with things like that... And I haven't any idea on what's going on (I'm not able to reproduce it on my side) Piller Sébastien a écrit : Hello, I've put my wicket app in

Re: Enable / Disable Container using AJAX

2008-07-03 Thread Maurice Marrink
AFAIK there is no is such thing as isEnabledInHierarchy like there is for visibility. You can however use an IVisitor to quickly traverse all child components of the container and set them to enabled / disabled. If you do this in the onBeforeRender of the container you get pretty much the behavior

Roadmap for Wicket

2008-07-03 Thread Murat Yücel
Hi All I have been looking for a roadmap for the wicket project, but i could not find anything on your homepage or on google :)... Can anyone provide a link to a roadmap for wicket? Could be nice to see a roadmap for wicket 1.4 and wicket 1.5. What is the idea behind the version? What will be

Re: Strange stack trace in logs

2008-07-03 Thread Martijn Dashorst
usually this is from users that copy/paste incomplete url's from other users, or people tampering with urls Martijn On Thu, Jul 3, 2008 at 8:58 AM, Piller Sébastien [EMAIL PROTECTED] wrote: Nobody ever saw stack traces like this on theire logs? It's strange, I really have a lot of them...

Re: generics

2008-07-03 Thread Matej Knopp
Okay, long story short. I'm gonna be -1 on removing model utility methods and default model slot from component until you suggest a clean and transparent way to support - compound (inherited) models - component assigned models - automatic detachment Just because you don't use these features it

Re: generics

2008-07-03 Thread Matej Knopp
Ligther? Does it meen with no Compund and ComponentAssignedModel? Wouldn't that feel more like crippled? The default model slot doesn't take any runtime space when you don't use it, property would. And removing four methods from component will hardly make it much lighter. -Matej On Thu, Jul 3,

Re: generics

2008-07-03 Thread Matej Knopp
And there is some functionality in there that Wicket might be better without. For example, onModelChanged / Changing things become tricky when you share the same model between different instances. And when using setModelObject() with an object that is equal to the current model object, but a

Re: generics

2008-07-03 Thread Matej Knopp
On Thu, Jul 3, 2008 at 9:51 AM, Matej Knopp [EMAIL PROTECTED] wrote: And there is some functionality in there that Wicket might be better without. For example, onModelChanged / Changing things become tricky when you share the same model between different instances. And when using

Re: generics

2008-07-03 Thread Matej Knopp
On Thu, Jul 3, 2008 at 10:02 AM, Eelco Hillenius [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 12:47 AM, Matej Knopp [EMAIL PROTECTED] wrote: Ligther? Does it meen with no Compund and ComponentAssignedModel? Wouldn't that feel more like crippled? The default model slot doesn't take any

Re: Roadmap for Wicket

2008-07-03 Thread Frank Bille
1.5 wishlist in wiki: http://cwiki.apache.org/WICKET/wicket-15-wish-list.html Non-bug issues in JIRA: http://tinyurl.com/4ofab2 Frank On Thu, Jul 3, 2008 at 9:14 AM, Murat Yücel [EMAIL PROTECTED] wrote: Hi All I have been looking for a roadmap for the wicket project, but i could not find

Re: How to configure the max space used for all Session store on a WebApplication ?

2008-07-03 Thread Johan Compagner
that wont work. Because pages are stored in a file that will grow until max. And then it will truncate so reuse the file from the beginning So deleting 1 page in it wont result in the file being smaller. johan On Thu, Jul 3, 2008 at 10:00 AM, Gerald Reinhart [EMAIL PROTECTED] wrote: Johan

Re: Functional testing tools comparison

2008-07-03 Thread Frank Bille
Hi, I have a test suite for selenium for the wicket examples, which I use to test with when releasing (or testing your release). In that way I can quickly test on IE6, IE7 (using vmware (2 pcs unfortunatly)), Firefox etc. I can wrap them up and put them somewhere. Frank On Wed, Jul 2, 2008 at

Re: generics

2008-07-03 Thread Martijn Dashorst
Matej: drink some coffee, you're +1-ing yourself now :) Martijn On Thu, Jul 3, 2008 at 10:08 AM, Matej Knopp [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 10:02 AM, Eelco Hillenius [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 12:47 AM, Matej Knopp [EMAIL PROTECTED] wrote: Ligther? Does

Re: Functional testing tools comparison

2008-07-03 Thread Martijn Dashorst
Do you have them running from maven? Could we RC them onto our build server? Martijn On Thu, Jul 3, 2008 at 10:20 AM, Frank Bille [EMAIL PROTECTED] wrote: Hi, I have a test suite for selenium for the wicket examples, which I use to test with when releasing (or testing your release). In that

Re: Roadmap for Wicket

2008-07-03 Thread Murat Yücel
Thanks will look it :) 2008/7/3 Frank Bille [EMAIL PROTECTED]: 1.5 wishlist in wiki: http://cwiki.apache.org/WICKET/wicket-15-wish-list.html Non-bug issues in JIRA: http://tinyurl.com/4ofab2 Frank On Thu, Jul 3, 2008 at 9:14 AM, Murat Yücel [EMAIL PROTECTED] wrote: Hi All I

Re: generics

2008-07-03 Thread Matej Knopp
Rofl :) I've slept like 4 hours. I wanted to +1 Eelco of course. Or maybe that just my Ego and my subconciousness messing with me. On Thu, Jul 3, 2008 at 10:22 AM, Martijn Dashorst [EMAIL PROTECTED] wrote: Matej: drink some coffee, you're +1-ing yourself now :) Martijn On Thu, Jul 3, 2008 at

Re: generics

2008-07-03 Thread Matej Knopp
On Thu, Jul 3, 2008 at 10:02 AM, Eelco Hillenius [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 12:47 AM, Matej Knopp [EMAIL PROTECTED] wrote: Ligther? Does it meen with no Compund and ComponentAssignedModel? Wouldn't that feel more like crippled? The default model slot doesn't take any

Re: How to configure the max space used for all Session store on a WebApplication ?

2008-07-03 Thread Matej Knopp
Yeah, we don't shrink the files. We can't, that's not how DiskPageStore works. Anyway, what's the usecase? Are you trying to suggest that you're running out of disk space? :) -Matej On Thu, Jul 3, 2008 at 10:18 AM, Johan Compagner [EMAIL PROTECTED] wrote: that wont work. Because pages are

Re: Functional testing tools comparison

2008-07-03 Thread Frank Bille
no, I run them manually, from command line. I haven't got that thing set up, though one of my colleagues have created something that integrated into maven for work (I think). We can see if selenium is the best fit for us, and then I can try to integrate it into maven. It is doable, since we have

Re: Functional testing tools comparison

2008-07-03 Thread Thomas Lutz
I've selenium tests running from maven here... basically it's easy to setup. Better Builds With Maven suggests several ways to do functional tests, they'd prefer to put the functional integration tests in a separate module, but I had to keep them together in one module, so I followed the

Re: Enable / Disable Container using AJAX

2008-07-03 Thread TH Lim
Thanks. I think it will get more complicated as I wanted the effect to kick in after the page is rendered. What I do now is enable/disable individual components in AjaxCheckbox.onUpdate(). Mr Mean wrote: AFAIK there is no is such thing as isEnabledInHierarchy like there is for visibility.

Re: How to configure the max space used for all Session store on a WebApplication ?

2008-07-03 Thread Gerald Reinhart
Use case : - an application with a long session time out - potentially a very important number of session - disk space not huge The solution is perhaps to define a small maxSizePerSession on the DiskPageStore, and considering that if the server don't store an important number of version

Re: How to configure the max space used for all Session store on a WebApplication ?

2008-07-03 Thread Johan Compagner
setting the right maxSizePerPagemap is way more importand then maxSizePerSession just see what sizes your pages are. Then the if they are on average (now taking a big number) 500KB then ask you self how many pages you want if that is 4 then you set the maxSizePerPagemap to 2MB and

TextField in IE and Opera

2008-07-03 Thread Alexander Landsnes Keül
I'm having a wee bit of a problem getting TextFields to cooperate in our project. I'm baffled by the problem, because it's something that's been working fine for months. The panel I'm working with is very a simple, a form with two text fields; username and password. If I submit the form in

Re: Functional testing tools comparison

2008-07-03 Thread richardwilko
hi, I've used selenium in the past and I do like it. However it uses domIds quite a bit, and as these are autogenerated by wicket they can prove troublesome. For example, you might get a test working, then add a new component to the page, which then changes all the dom ids on the page,

Re: Functional testing tools comparison

2008-07-03 Thread Frank Bille
Selenium uses xpath, so you don't have to use domid's. But if you do, the selenium IDE is good for maintaining the tests as well. If a test fails when UI changes it's easy to fix in the IDE. My 2c On Thu, Jul 3, 2008 at 1:41 PM, richardwilko [EMAIL PROTECTED] wrote: hi, I've used selenium

Re: Functional testing tools comparison

2008-07-03 Thread John Krasnay
On Thu, Jul 03, 2008 at 04:41:27AM -0700, richardwilko wrote: hi, I've used selenium in the past and I do like it. However it uses domIds quite a bit, and as these are autogenerated by wicket they can prove troublesome. For example, you might get a test working, then add a new component

OSGi and class loading issues solution proposal

2008-07-03 Thread Daniel Stoch
Hi, I'm using Wicket with Spring inside OSGi environment for quite a long time and during this I had some problems related to class loading. So below there is a small proposal what should be change in Wicket core to solve these problems. 1. DefaultClassResolver - loading classes Some time ago

Re: OSGi and class loading issues solution proposal

2008-07-03 Thread Edward Yakop
On Thu, Jul 3, 2008 at 8:24 PM, Daniel Stoch [EMAIL PROTECTED] wrote: But there is a one assumption, that bundle with Wicket classes (you probably have a Wicket bundled somehow in your app, don't you? :)), should have a dynamic import for all classes which can be located in many different

WebApplication-level styles?

2008-07-03 Thread Miguel Paraz
Hi, Is it possible to set the style once, at the WebApplication, instead of getting the Session in every Page, and calling setStyle() ? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: WebApplication-level styles?

2008-07-03 Thread richardwilko
We subclass Session and call set style in the constructor. Miguel Paraz wrote: Hi, Is it possible to set the style once, at the WebApplication, instead of getting the Session in every Page, and calling setStyle() ? -

Re: Enable / Disable Container using AJAX

2008-07-03 Thread Timo Rantalaiho
On Thu, 03 Jul 2008, TH Lim wrote: I think it will get more complicated as I wanted the effect to kick in after the page is rendered. What I do now is enable/disable individual components in AjaxCheckbox.onUpdate(). You can just change that to use block.visitChildren(FormComponent.class...

Re: OSGi and class loading issues solution proposal

2008-07-03 Thread Daniel Stoch
On Thu, Jul 3, 2008 at 2:53 PM, Edward Yakop [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 8:24 PM, Daniel Stoch [EMAIL PROTECTED] wrote: But there is a one assumption, that bundle with Wicket classes (you probably have a Wicket bundled somehow in your app, don't you? :)), should have a

Re: OSGi and class loading issues solution proposal

2008-07-03 Thread Edward Yakop
On Thu, Jul 3, 2008 at 9:27 PM, Daniel Stoch [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 2:53 PM, Edward Yakop [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 8:24 PM, Daniel Stoch [EMAIL PROTECTED] wrote: But there is a one assumption, that bundle with Wicket classes (you probably have a

Re: OSGi and class loading issues solution proposal

2008-07-03 Thread Daniel Stoch
On Thu, Jul 3, 2008 at 3:35 PM, Edward Yakop [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 9:27 PM, Daniel Stoch [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 2:53 PM, Edward Yakop [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 8:24 PM, Daniel Stoch [EMAIL PROTECTED] wrote: But there is a

Re: OSGi and class loading issues solution proposal

2008-07-03 Thread Edward Yakop
On Thu, Jul 3, 2008 at 9:55 PM, Daniel Stoch [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 3:35 PM, Edward Yakop [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 9:27 PM, Daniel Stoch [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 2:53 PM, Edward Yakop [EMAIL PROTECTED] wrote: On Thu, Jul 3,

Re: Wizard and CheckGroup

2008-07-03 Thread Thomas Mäder
Why would there be raw input for the Checkbbox on page 2 when stepping from 1 to 2? What is happening is that the checkbox is populated from the underlying model, which happens to come up unchecked. What you should check is: why isnt's the model updated when you first step from 2 to 3? Are you

wicketstuff-push

2008-07-03 Thread Julien Graglia
Hi, I'am looking for a way to do reverse ajax (or cometd) in Wicket. I have search the Wicket website, examples, and google and the only thing I found was some mail archives talking about a maven artifact called wicketstuff-push, and classes like

RE: Enabling compoents based on Wicket URI path?

2008-07-03 Thread Michael Mehrle
Not to come across snide but of course I know how to set a component to invisible. I need to know how to get the current page URL/URI as the page loads - remember that the navigator is only a panel and can be inside of many pages. Is this more clear? Thanks for trying to help. Michael

Re: OSGi and class loading issues solution proposal

2008-07-03 Thread Igor Vaynberg
why dont you guys hash all this out. since no one uses osgi from the core team we are mostly unaware of these issues but do want to support the platform. once you settle down on the changes you want to see create jira issues and we will take it from there. -igor On Thu, Jul 3, 2008 at 5:53 AM,

Re: wicketstuff-push

2008-07-03 Thread Frank Bille
As far as I know it only lives in subversion. I tried it myself a month ago and it is functional: http://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-push/ http://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-push-examples/ On Thu, Jul 3, 2008

Re: Enabling compoents based on Wicket URI path?

2008-07-03 Thread Igor Vaynberg
((webrequest)getrequest()).gethttpservletrequest().getrequesturi() -igor On Thu, Jul 3, 2008 at 7:13 AM, Michael Mehrle [EMAIL PROTECTED] wrote: Not to come across snide but of course I know how to set a component to invisible. I need to know how to get the current page URL/URI as the page

How to catch an Error (and not only RuntimeException) in the RequestCycle ?

2008-07-03 Thread Gerald Reinhart
Hi, I'm wondering how to catch Error or no RuntimeException in the RequestCycle. There is a RequestCycle.onRuntimeException(Page page, RuntimeException e) but not RequestCycle.onError(Page page, Error e) or RequestCycle.onThrowable(Page page, Throwable t)... Regards, Gerald Reinhart -- View

Re: How to catch an Error (and not only RuntimeException) in the RequestCycle ?

2008-07-03 Thread James Carman
You shouldn't try to catch errors. On Thu, Jul 3, 2008 at 11:50 AM, Gerald Reinhart [EMAIL PROTECTED] wrote: Hi, I'm wondering how to catch Error or no RuntimeException in the RequestCycle. There is a RequestCycle.onRuntimeException(Page page, RuntimeException e) but not

Re: Gmap2 problem with Firefox 3.0

2008-07-03 Thread Rafał Jaskółka
Hi, It seams that main problem for FF3 are custom wicket tags, wicket:panel in this case. The most simple solution will be adding line getMarkupSettings().setStripWicketTags(true); in init() method of application class. After adding: @Override protected void init() {

Re: OSGi and class loading issues solution proposal

2008-07-03 Thread Daniel Stoch
On Thu, Jul 3, 2008 at 4:28 PM, Igor Vaynberg [EMAIL PROTECTED] wrote: why dont you guys hash all this out. since no one uses osgi from the core team we are mostly unaware of these issues but do want to support the platform. once you settle down on the changes you want to see create jira

RE: Enabling compoents based on Wicket URI path?

2008-07-03 Thread Michael Mehrle
Last night I figured this out: final WebRequestCycle cycle = (WebRequestCycle)RequestCycle.get(); final IRequestTarget target = cycle.getRequestTarget(); String path = urlFor(target).toString(); Your way is better. Igor saves the day again - thanks a lot mate.

Re: How to catch an Error (and not only RuntimeException) in the RequestCycle ?

2008-07-03 Thread Gerald Reinhart
jwcarman wrote: You shouldn't try to catch errors. In order to log it, not to catch it. (the subject of the Thread is not well define) -- View this message in context:

Re: generics

2008-07-03 Thread Eelco Hillenius
On Thu, Jul 3, 2008 at 12:47 AM, Matej Knopp [EMAIL PROTECTED] wrote: Ligther? Does it meen with no Compund and ComponentAssignedModel? Wouldn't that feel more like crippled? The default model slot doesn't take any runtime space when you don't use it, property would. And removing four methods

Re: Gmap2 problem with Firefox 3.0

2008-07-03 Thread Martin Funk
Rafa? Jaskó?ka wrote: Hi, It seams that main problem for FF3 are custom wicket tags, wicket:panel in this case. The most simple solution will be adding line you meant: was, didn't you?

Re: generics

2008-07-03 Thread Eelco Hillenius
On Thu, Jul 3, 2008 at 9:46 AM, Eelco Hillenius [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 12:47 AM, Matej Knopp [EMAIL PROTECTED] wrote: Ligther? Does it meen with no Compund and ComponentAssignedModel? Wouldn't that feel more like crippled? The default model slot doesn't take any

Re: How to configure the max space used for all Session store on a WebApplication ?

2008-07-03 Thread Eelco Hillenius
On Thu, Jul 3, 2008 at 2:55 AM, Johan Compagner [EMAIL PROTECTED] wrote: setting the right maxSizePerPagemap is way more importand then maxSizePerSession just see what sizes your pages are. Then the if they are on average (now taking a big number) 500KB then ask you self how many pages you

Re: How to configure the max space used for all Session store on a WebApplication ?

2008-07-03 Thread Johan Compagner
The 'real' size is more the 2MB. (pagemap size) because if you always have 1 pagemap then thats the max. The question is how many pagemaps you also want to support. On 7/3/08, Eelco Hillenius [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 2:55 AM, Johan Compagner [EMAIL PROTECTED] wrote:

Re: Functional testing tools comparison

2008-07-03 Thread Janne Hietamäki
On Wed, Jul 2, 2008 at 11:00 PM, Timo Rantalaiho [EMAIL PROTECTED] wrote: I agree that practical examples on examples on each would be great! I should try to get around doing an example with jdave-wicket-selenium. I committed some additions to jdave-wicket-selenium trunk last week and I'm

Re: wicketstuff-push

2008-07-03 Thread Julien Graglia
Le jeudi 03 juillet 2008 à 16:28 +0200, Frank Bille a écrit : As far as I know it only lives in subversion. I tried it myself a month ago and it is functional: http://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-push/

Re: How to configure the max space used for all Session store on a WebApplication ?

2008-07-03 Thread Eelco Hillenius
Even 2 MB is more than you'd want. Anyway, it's a worst case thing I assume. Eelco On Thu, Jul 3, 2008 at 10:16 AM, Johan Compagner [EMAIL PROTECTED] wrote: The 'real' size is more the 2MB. (pagemap size) because if you always have 1 pagemap then thats the max. The question is how many

Re: Gmap2 problem with Firefox 3.0

2008-07-03 Thread Rafał Jaskółka
Yes, I didn't updated example sources for few days. And realized that I should do it, after sending previous post :) 2008/7/3 Martin Funk [EMAIL PROTECTED]: Rafa? Jaskó?ka wrote: Hi, It seams that main problem for FF3 are custom wicket tags, wicket:panel in this case. The most simple

Re: How to add nodes to a tree using Ajax

2008-07-03 Thread Kai Schubert-Altmann
Hi, thanks to both of you! Matejs code worked very fine, so i didn't tried gekes version. But now i have the next three problems/questions: 1. If i want to add a new node to the selected node, then i have to get the selected node first. How can i do that? 2. Can i change the shown icons to

Re: ajax event handler with a textfield .. .

2008-07-03 Thread Timo Rantalaiho
On Thu, 03 Jul 2008, Rakesh Sinha wrote: Thanks for pointing this one out. Can you paste / point to a code fragement for - OnChangeAjaxBehavior and how to integrate with TextField. Use the source, Luke :) Just use it instead of the normal AjaxFormComponentUpdatingBehavior. Probably you can

Re: Functional testing tools comparison

2008-07-03 Thread Martijn Dashorst
I just confirmed that watir sucks: it is IE/Windows only. This makes it unsuitable to use it inside my company where we value running build servers on linux. I'm working on OS X which makes building tests a disaster (not to mention that the damned safari port won't build on my mac). Martijn On

Re: Gmap2 problem with Firefox 3.0

2008-07-03 Thread Martin Funk
Rafa? Jaskó?ka wrote: Yes, I didn't updated example sources for few days. And realized that I should do it, after sending previous post :) yeah:-) sorry for the arrogant tone in my mail. I just added a little logging message too. So if the programmer doesn't notice the sysadmin will tell

Re: Gmap2 problem with Firefox 3.0

2008-07-03 Thread Martin Funk
Murat Yücel wrote: I am not able to see the examples in IE 7 either. Could you confirm this? Yeah, can soemone confirm this. I currently don't have access to a windows machine. There also seems to be a problem with using png images as a marker. Found this fix which seems to solve the

Re: How to add nodes to a tree using Ajax

2008-07-03 Thread Kai Schubert-Altmann
HI everybody I solved the first problem by my own by adding the following method to the tree: public DefaultMutableTreeNode getSelectedNode() { Object selected = null; try { selected = this.getTreeState().getSelectedNodes().iterator().next(); } catch (NoSuchElementException

Re: wicketstuff-push

2008-07-03 Thread freak182
You can also check out the jetty website for the latest cometd implementation...fyi, it comes with the jetty server...it's great i use it also to my project the wicket-push :) julien Graglia wrote: Le jeudi 03 juillet 2008 à 16:28 +0200, Frank Bille a écrit : As far as I know it only lives

Re: ajax event handler with a textfield .. .

2008-07-03 Thread Rakesh Sinha
On 7/3/08, Timo Rantalaiho [EMAIL PROTECTED] wrote: On Thu, 03 Jul 2008, Rakesh Sinha wrote: Thanks for pointing this one out. Can you paste / point to a code fragement for - OnChangeAjaxBehavior and how to integrate with TextField. Use the source, Luke :) Just use it instead of the

Problem with Pagination in Wicket 1.3.4

2008-07-03 Thread Umesh Paliwal
Hi , I had downloaded Wicket 1.3.4 for the Autocomplete issue with IE. Now the AutoComplete works fine. But when I click on the table with Pagination, I get the following error. Unexpected RuntimeException WicketMessage: Unable to find component with id 'first' in [MarkupContainer

Re: Functional testing tools comparison

2008-07-03 Thread Nino Saturnino Martinez Vazquez Wael
hehe on the watir point, I wonder if windows are finally loosing the battle(not wanting to start a religious war though):) btw an a thing that you could you if interested are to use jmeter in conjunction with selenium. Eg you always have your selenium test which runs.. And then when you

Re: Functional testing tools comparison

2008-07-03 Thread Janne Hietamäki
On Thu, Jul 3, 2008 at 11:28 PM, Martijn Dashorst [EMAIL PROTECTED] wrote: I just confirmed that watir sucks: it is IE/Windows only. This makes it unsuitable to use it inside my company where we value running build servers on linux. I'm working on OS X which makes building tests a disaster

RE: OSGi and class loading issues solution proposal

2008-07-03 Thread David Leangen
Before I'll create any JIRA issue, first I want to ask other osgi-guys what are they thinking about proposed changes. Well, I use the OSGi/Wicket combination extensively in the form of pax-wicket. Edward is the lead developer, but we often collaborate. Personally, I think this is a great

RE: [PROPOSAL] Use path in URL when target is instance of BookmarkablePageRequestTarget

2008-07-03 Thread David Leangen
Also there is a complete rewrite of URL handling planned for 1.5 which will allow much better control over URL generation and bookmarkability in Wicket. Well, in that case, I won't press this any more. The current stuff is great, but there is indeed a lot of room for improvement. Will be