Why isn't the bookmarkable url kept when appending ?wicket:interface=:n:myPage::ILinkListener:: etc?

View: New views
5 Messages — Rating Filter:   Alert me  

Why isn't the bookmarkable url kept when appending ?wicket:interface=:n:myPage::ILinkListener:: etc?

by Edvin Syse :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

When using a bookmarkable page and altering the state of the page so
that the url is rewritten to
?wicket:interface=:n:myPage::ILinkListener:: etc, why is the basepath /
instead of the bookmarkable page's path?

If someone bookmarks a "stateful" page, they will be redirected to the
homepage if they use the bookmark later. With the mentioned approach,
they could atleast be taken to the bookmarkable page, which would add
tremendous value I think. Is there a good reason why this wasn't done? :)

--
Med vennlig hilsen

Edvin Syse
Programutvikler

www.sysedata.no / edvin@...
Tlf: 333 49700  / Faks: 333 49701
Adresse: Møllegaten 12, 3111 Tønsberg

Syse Data AS -Profesjonelle IT-tjenester


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Why isn't the bookmarkable url kept when appending ?wicket:interface=:n:myPage::ILinkListener:: etc?

by Martijn Dashorst :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

use HybridUrlEncodingStrategy to mount the page.

Martijn

On Tue, Jul 22, 2008 at 8:46 AM, Edvin Syse <edvin@...> wrote:

> When using a bookmarkable page and altering the state of the page so that
> the url is rewritten to ?wicket:interface=:n:myPage::ILinkListener:: etc,
> why is the basepath / instead of the bookmarkable page's path?
>
> If someone bookmarks a "stateful" page, they will be redirected to the
> homepage if they use the bookmark later. With the mentioned approach, they
> could atleast be taken to the bookmarkable page, which would add tremendous
> value I think. Is there a good reason why this wasn't done? :)
>
> --
> Med vennlig hilsen
>
> Edvin Syse
> Programutvikler
>
> www.sysedata.no / edvin@...
> Tlf: 333 49700  / Faks: 333 49701
> Adresse: Møllegaten 12, 3111 Tønsberg
>
> Syse Data AS -Profesjonelle IT-tjenester
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>
>



--
Become a Wicket expert, learn from the best: http://wicketinaction.com
Apache Wicket 1.3.4 is released
Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Why isn't the bookmarkable url kept when appending ?wicket:interface=:n:myPage::ILinkListener:: etc?

by Edvin Syse :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

The client can't live with the url's created by
HybridUrlEncodingStrategy. They are dead set on that arguments in the
url should be appended with ?, not dot. Conventionally, dots does not
denote arguments, and I must agree that he has a point.

I think everyone would agree that keeping the bookmarkable part of the
url adds value, so I must ask - is there a technical or otherwise good
reason not to include it? As long as the current behaviour is the
default for bookmarkable pages, it will degrade the user experience for
everyone using it, and it seems this could be easily fixed..

-- Edvin

Martijn Dashorst skrev:

> use HybridUrlEncodingStrategy to mount the page.
>
> Martijn
>
> On Tue, Jul 22, 2008 at 8:46 AM, Edvin Syse <edvin@...> wrote:
>  
>> When using a bookmarkable page and altering the state of the page so that
>> the url is rewritten to ?wicket:interface=:n:myPage::ILinkListener:: etc,
>> why is the basepath / instead of the bookmarkable page's path?
>>
>> If someone bookmarks a "stateful" page, they will be redirected to the
>> homepage if they use the bookmark later. With the mentioned approach, they
>> could atleast be taken to the bookmarkable page, which would add tremendous
>> value I think. Is there a good reason why this wasn't done? :)
>>
>> --
>> Med vennlig hilsen
>>
>> Edvin Syse
>> Programutvikler
>>
>> www.sysedata.no / edvin@...
>> Tlf: 333 49700  / Faks: 333 49701
>> Adresse: Møllegaten 12, 3111 Tønsberg
>>
>> Syse Data AS -Profesjonelle IT-tjenester
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@...
>> For additional commands, e-mail: users-help@...
>>
>>
>>    
>
>
>
>  

--
Med vennlig hilsen

Edvin Syse
Programutvikler

www.sysedata.no / edvin@...
Tlf: 333 49700  / Faks: 333 49701
Adresse: Møllegaten 12, 3111 Tønsberg

Syse Data AS -Profesjonelle IT-tjenester


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Why isn't the bookmarkable url kept when appending ?wicket:interface=:n:myPage::ILinkListener:: etc?

by Erik van Oosten :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Perhaps my non versioned HybridUrlEncoding strategy is something for you:

http://www.nabble.com/More-on-wicket-url-stratergy-td18212748.html#a18273996

Regards,
    Erik.


Edvin Syse wrote:

> The client can't live with the url's created by
> HybridUrlEncodingStrategy. They are dead set on that arguments in the
> url should be appended with ?, not dot. Conventionally, dots does not
> denote arguments, and I must agree that he has a point.
>
> I think everyone would agree that keeping the bookmarkable part of the
> url adds value, so I must ask - is there a technical or otherwise good
> reason not to include it? As long as the current behaviour is the
> default for bookmarkable pages, it will degrade the user experience
> for everyone using it, and it seems this could be easily fixed..
>
> -- Edvin
--
Erik van Oosten
http://day-to-day-stuff.blogspot.com/



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...


Re: Why isn't the bookmarkable url kept when appending ?wicket:interface=:n:myPage::ILinkListener:: etc?

by Edvin Syse :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Nice!

Thanks a lot, Erik!

-- Edvin

Erik van Oosten skrev:

> Perhaps my non versioned HybridUrlEncoding strategy is something for you:
>
> http://www.nabble.com/More-on-wicket-url-stratergy-td18212748.html#a18273996
>
> Regards,
>     Erik.
>
>
> Edvin Syse wrote:
>> The client can't live with the url's created by
>> HybridUrlEncodingStrategy. They are dead set on that arguments in the
>> url should be appended with ?, not dot. Conventionally, dots does not
>> denote arguments, and I must agree that he has a point.
>>
>> I think everyone would agree that keeping the bookmarkable part of the
>> url adds value, so I must ask - is there a technical or otherwise good
>> reason not to include it? As long as the current behaviour is the
>> default for bookmarkable pages, it will degrade the user experience
>> for everyone using it, and it seems this could be easily fixed..
>>
>> -- Edvin
> --
> Erik van Oosten
> http://day-to-day-stuff.blogspot.com/
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@...
> For additional commands, e-mail: users-help@...
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@...
For additional commands, e-mail: users-help@...

LightInTheBox - Buy quality products at wholesale price