Re: [Wicket-user] simple bookmarkable url

2005-11-10 Thread Igor Vaynberg
thats my point. there are thousands of possibilities as to how to do this. thats why we are trying to create something flexible instead of catering to one specific solution. in the meantime, you can still do what you want without any changes to wicket. -Igor On 11/9/05, Jeff Miller [EMAIL

Re: [Wicket-user] simple bookmarkable url

2005-11-09 Thread Jeff Miller
I understand. That is why I suggested a url that was more like a typicalurl (no page=) and did not require any special configuration by the developer. Another possibility would be to override Page2.html to mean bookmarkablePage=wicket.examples.template.Page2 so that url:

Re: [Wicket-user] simple bookmarkable url

2005-11-08 Thread Jeff Miller
Howare thebase url's different? In all cases, aren't the base url's the following? www.wicket-library.com/wicket-examples/template My desire is to have url's that are as simple as possible. Long url's are problems for nontechnical users (for example in emails, whenbookmarking, on written

Re: [Wicket-user] simple bookmarkable url

2005-11-08 Thread Johan Compagner
We could also support: page=wicket (instead of bookmarkablePage=wicket) the base in this: www.wicket-library.com/wicket-examples/template is www.wicket-library.com/wicket-examples/ but with: www.wicket-library.com/wicket-examples/template /page it is:

Re: [Wicket-user] simple bookmarkable url

2005-11-08 Thread Juergen Donnerstag
On 11/8/05, Jeff Miller [EMAIL PROTECTED] wrote: How are the base url's different? In all cases, aren't the base url's the following? www.wicket-library.com/wicket-examples/template My desire is to have url's that are as simple as possible. Long url's are problems for nontechnical users

Re: [Wicket-user] simple bookmarkable url

2005-11-08 Thread Jeff Miller
I considered recommending "page=". It would be better than "bookmarkablePage=". Allowing "page=" in conjunction with alias would certainly allow simpler urls. When browsing to bookmarkable page,wouldthe urlshow in browser as "page=alias"? I would prefer that to

Re: [Wicket-user] simple bookmarkable url

2005-11-08 Thread Dan Gould
Jeff Miller wrote: I considered recommending page=. It would be better than bookmarkablePage=. Allowing page= in conjunction with alias would certainly allow simpler urls. +1 --- SF.Net email is sponsored by: Tame your development

Re: [Wicket-user] simple bookmarkable url

2005-11-08 Thread Juergen Donnerstag
you know you can have that today by implementing it yourself? Take a look WebRequestCrawlerSave and you'll see that you can easily change bookmarkablePage to page; you can make it case insensitive etc. Juergen On 11/8/05, Dan Gould [EMAIL PROTECTED] wrote: Jeff Miller wrote: I considered

Re: [Wicket-user] simple bookmarkable url

2005-11-08 Thread Igor Vaynberg
or use a url rewriting filter like http://tuckey.org/urlrewrite/ -Igor On 11/8/05, Juergen Donnerstag [EMAIL PROTECTED] wrote: you know you can have that today by implementing it yourself? Take alook WebRequestCrawlerSave and you'll see that you can easily changebookmarkablePage to page; you can

Re: [Wicket-user] simple bookmarkable url

2005-11-08 Thread Jeff Miller
Thanks. I'll take a look. With the proper regular expression, I may be able to affect any url. I don't want to program a rule for each url. I was hoping you Wicket developers would tell me that my proposal was faily simple to add to Wicket. I was looking for the simple url's to be as easy and

Re: [Wicket-user] simple bookmarkable url

2005-11-08 Thread Igor Vaynberg
you can create a regular _expression_ to go from page=name to bookmarkablePage=name that along with page aliases whill get you where you want to go we are concentrating our efforts on 1.2. your request is pretty simple to implement, but we are trying to figure out how to create pluggable and

Re: [Wicket-user] simple bookmarkable url

2005-11-07 Thread Johan Compagner
there is already support for page aliasses see ApplicationPages On 11/4/05, Jeff Miller [EMAIL PROTECTED] wrote: Is there a way to create bookmarkable page without embedding any of the Wicket implementation details in the url? For example, the template example page 2 url is:

Re: [Wicket-user] simple bookmarkable url

2005-11-07 Thread Jeff Miller
Where would I find an example? I could not find any on wiki, wicket.sourceforge.net, or in examples. The javadoc isnot clear how to use ApplicationPages except that I need to use putClassAlias method. What object, if any, needs reference to the ApplicationPages object with the aliases? Thanks,

Re: [Wicket-user] simple bookmarkable url

2005-11-07 Thread Juergen Donnerstag
you may take a look at WebRequestWithCryptedUrl or WebRequestCrawlerSave as well. They are experimental only, but may point you into the right direction. Any improvements on this code are of course wellcome. Juergen On 11/7/05, Jeff Miller [EMAIL PROTECTED] wrote: putClassAlias is close to

[Wicket-user] simple bookmarkable url

2005-11-04 Thread Jeff Miller
Is there a way to create bookmarkable page without embedding any of the Wicket implementation details in the url? For example, the template example page 2 url is: http://www.wicket-library.com/wicket-examples/template?bookmarkablePage=wicket.examples.template.Page2