does the breadcrumb extension support bookmarkable links?

2012-01-18 Thread Daniel Watrous
I've been working with the breadcrumb components in the extensions library today. Now that I have it working the way I need it to, I noticed that none of the links are bookmarkable. I wondered if it were possible to use this feature and still have links be bookmarkable? I did some searching and

Absolute urls, bookmarkable links and web server proxy

2011-12-23 Thread infiniter
to the new app, however I now need to make all my bookmarkable links show those absolute urls. Any recommendation? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Absolute-urls-bookmarkable-links-and-web-server-proxy-tp4229418p4229418.html Sent from the Users forum mailing

Re: Absolute urls, bookmarkable links and web server proxy

2011-12-23 Thread Igor Vaynberg
.: New url: http:/www.example:8080/app/customer/john Required url: http:/www.example/john Basically the web server routes the urls to the new app, however I now need to make all my bookmarkable links show those absolute urls. Any recommendation? -- View this message in context: http://apache

Re: Absolute urls, bookmarkable links and web server proxy

2011-12-23 Thread infiniter
Actually the Apache rules are already set, but my issue is a bit different: I need the bookmarkable links to show the required urls now.. These urls may be even point to a different domain, but I don't want to be too invasive by replacing my BookmarkablePageLinks with ExternalLinks. I was thinking

Markup for BookMarkable links

2010-08-30 Thread Mike Dee
and examples are just wrong? c) Or am I a moron and doing something else wrong? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Markup-for-BookMarkable-links-tp2400422p2400422.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: Bookmarkable Links Session

2010-03-17 Thread Mauro Ciancio
maurocian...@gmail.com wrote: Hello everyone,  I'm developing an application that uses a lot of bookmarkable links in order to get pretty urls. When I log in with my userpassword, I'm redirected to the home page. This behavior is ok, but the session appears to be not created, so i still see

Bookmarkable Links Session

2010-03-16 Thread Mauro Ciancio
Hello everyone, I'm developing an application that uses a lot of bookmarkable links in order to get pretty urls. When I log in with my userpassword, I'm redirected to the home page. This behavior is ok, but the session appears to be not created, so i still see the login link

Re: Bookmarkable Links Session

2010-03-16 Thread Antoine van Wel
() when logging in, that should both solve your problem and fix a potential security hole. Antoine On Tue, Mar 16, 2010 at 8:32 PM, Mauro Ciancio maurocian...@gmail.com wrote: Hello everyone,  I'm developing an application that uses a lot of bookmarkable links in order to get pretty urls

Re: AW: AW: Tabbed Panel with bookmarkable links

2009-04-29 Thread Vladimir K
: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- View this message in context: http://www.nabble.com/Tabbed-Panel-with-bookmarkable-links-tp22418170p23295407.html Sent from the Wicket - User mailing list archive at Nabble.com

Passing hidden parameters / bookmarkable links

2009-04-15 Thread Henrique Boregio
I am developing a system that has groups and want to make them accesible via user-friendly urls such as www.mysite.com/group/GROUPNAME On a web page, I have a list of groups which are all links to their group pages, such as: www.mysite.com/group/groupA www.mysite.com/group/groupB ... This is

Re: Passing hidden parameters / bookmarkable links

2009-04-15 Thread Jeremy Thomerson
You can't - it's either in the URL and accessible or not. If you only want to pass the group name, then the group name needs to be unique so that you can look it up. Otherwise, you have to pass the ID and the name. At that point, the name is just for SEO or prettyness - whatever - because the

AW: AW: Tabbed Panel with bookmarkable links

2009-03-12 Thread Christian Helmbold
The development of the bookmarkable tabbed panel component is continued on http://wicketskunkworks.org. We decided to use a Google Code project for now but we plan to make the final component available via wicket stuff or maybe in the extensions tree of the core distribution (i don't know if

Re: AW: Tabbed Panel with bookmarkable links

2009-03-12 Thread Martijn Dashorst
Why start yet another project when the intention is to move it to stuff anyway? Martijn On Thu, Mar 12, 2009 at 12:22 PM, Christian Helmbold christian.helmb...@yahoo.de wrote: The development of the bookmarkable tabbed panel component is continued on http://wicketskunkworks.org. We decided

Re: AW: Tabbed Panel with bookmarkable links

2009-03-12 Thread Brill Pappin
I don't think we know that it will be moved... right now we only know that we two need it. - Brill On 12-Mar-09, at 7:28 AM, Martijn Dashorst wrote: Why start yet another project when the intention is to move it to stuff anyway? Martijn On Thu, Mar 12, 2009 at 12:22 PM, Christian

Re: AW: Tabbed Panel with bookmarkable links

2009-03-11 Thread Jeremy Thomerson
Use wicket-stuff. It makes sense for this. You might even consider just adding this to minis in WS. http://wicket-stuff.svn.sourceforge.net/viewvc/wicket-stuff/trunk/wicketstuff-core/minis-parent/ -- Jeremy Thomerson http://www.wickettraining.com On Tue, Mar 10, 2009 at 10:25 AM, Christian

AW: Tabbed Panel with bookmarkable links

2009-03-10 Thread Christian Helmbold
; for(int element : unbookmarkableTabIndex) this.unbookmarkableTabIndex.add(element); } @Override protected WebMarkupContainer newLink(String linkId, int index) { WebMarkupContainer link; // create default (not bookmarkable) links for the specified tabs

Re: Tabbed Panel with bookmarkable links

2009-03-10 Thread James Carman
WebMarkupContainer newLink(String linkId, int index)  {    WebMarkupContainer link;    // create default (not bookmarkable) links for the specified tabs.    if (unbookmarkableTabIndex.contains(index))      link = super.newLink(linkId, index);    // create bookmarkable links    else

AW: AW: Tabbed Panel with bookmarkable links

2009-03-10 Thread Christian Helmbold
What if you use two different tabbed panels on the same page? Good point! It doesn't work with two panels on the same page! I don't know why and how to fix it. It was a mistake in my test code, that lead to this error. I accidentally added the tabs of my second tabbed panel to the

Re: AW: Tabbed Panel with bookmarkable links

2009-03-10 Thread Brill Pappin
); } @Override protected WebMarkupContainer newLink(String linkId, int index) { WebMarkupContainer link; // create default (not bookmarkable) links for the specified tabs. if (unbookmarkableTabIndex.contains(index)) link = super.newLink(linkId, index); // create bookmarkable links

Re: Tabbed Panel with bookmarkable links

2009-03-10 Thread Brill Pappin
); this.tabParameterName = tabParameterName; for(int element : unbookmarkableTabIndex) this.unbookmarkableTabIndex.add(element); } @Override protected WebMarkupContainer newLink(String linkId, int index) { WebMarkupContainer link; // create default (not bookmarkable) links

AW: AW: Tabbed Panel with bookmarkable links

2009-03-10 Thread Christian Helmbold
Instead of competing, why don't we set up a project some place and check both solutions in under different packages? We can then refactor them into one and take the best of both :) I agree. Is there an existing place in the wicket project to do this? I've discovered some troubles in my

Re: Tabbed Panel with bookmarkable links

2009-03-10 Thread James Carman
);   }   @Override  protected WebMarkupContainer newLink(String linkId, int index)  {   WebMarkupContainer link;   // create default (not bookmarkable) links for the specified tabs.   if (unbookmarkableTabIndex.contains(index))     link = super.newLink(linkId, index);   // create bookmarkable links

AW: Tabbed Panel with bookmarkable links

2009-03-10 Thread Christian Helmbold
: unbookmarkableTabIndex) this.unbookmarkableTabIndex.add(element); } @Override protected WebMarkupContainer newLink(String linkId, int index) { WebMarkupContainer link; // create default (not bookmarkable) links for the specified tabs

AW: AW: Tabbed Panel with bookmarkable links

2009-03-10 Thread Christian Helmbold
for parameters to a requested page. A * parameter for the selected tab will be inserted. * @param unbookmarkableTabIndex Indexes of tabs with standard (no * bookmarkable) links. First tab has index 0. */ public BookmarkableTabbedPanel( String id, ListITab tabs

Re: AW: AW: Tabbed Panel with bookmarkable links

2009-03-10 Thread Brill Pappin
Yes, because you no longer have the previous state... I have the same problem, but maybe some ideas for a solution. - Brill On 10-Mar-09, at 11:25 AM, Christian Helmbold wrote: Instead of competing, why don't we set up a project some place and check both solutions in under different

Tabbed Panel with bookmarkable links

2009-03-09 Thread Christian Helmbold
Hello, I've written a component which provides bookmarkable links for a tabbed panel. The link to the currend tab is disabled and the url to the default tab contains no tab information to keep URLs short. It works so far, but since this is my first wicket component I'd like to know your

Re: Tabbed Panel with bookmarkable links

2009-03-09 Thread Brill Pappin
bookmarkable links for a tabbed panel. The link to the currend tab is disabled and the url to the default tab contains no tab information to keep URLs short. It works so far, but since this is my first wicket component I'd like to know your suggestions to improve the code. A possible

bookmarkable links

2009-02-19 Thread Matías Tito
Hi, I am beginnig on Wicket. Well, my questions is: Diferences beetwen bookmarkablelink and links - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: bookmarkable links

2009-02-19 Thread Jeremy Thomerson
bookmarkable links are bookmarkable - you can come back to them even after session is destroyed or send to a friend and they can come to them links are not bookmarkable - relative only to your session - and stateful On Thu, Feb 19, 2009 at 10:55 AM, Matías Tito mt...@zauber.com.ar wrote: Hi, I

Re: Session Expiration. UnauthorizedComponentInstantiationException. PageExpiredException. IllegalStateException. Ajax and Bookmarkable links.

2008-02-06 Thread mattsmith
.-UnauthorizedComponentInstantiationException.-PageExpiredException.-IllegalStateException.-Ajax-and-Bookmarkable-links.-tp15272371p15306738.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e

Session Expiration. UnauthorizedComponentInstantiationException. PageExpiredException. IllegalStateException. Ajax and Bookmarkable links.

2008-02-04 Thread Matt Smith
A co-worker and I are looking into how to provide a consistent handling of session expiration with an AuthenticatedWebApplication. If a session expires, ideally, we'd like to provide a consistent behavior of redirecting to a login page with a helpful message (i.e. - Your session expired, please

tabbedpanel and bookmarkable links

2007-08-27 Thread wired
(version 1.2.6) Does anyone have any quick workaround to making the link in each tab of a TabbedPanel bookmarkable? Many thanks. -- View this message in context: http://www.nabble.com/tabbedpanel-and-bookmarkable-links-tf4337745.html#a12355907 Sent from the Wicket - User mailing list archive

Re: tabbedpanel and bookmarkable links

2007-08-27 Thread Swaroop Belur
workaround to making the link in each tab of a TabbedPanel bookmarkable? Many thanks. -- View this message in context: http://www.nabble.com/tabbedpanel-and-bookmarkable-links-tf4337745.html#a12355907 Sent from the Wicket - User mailing list archive at Nabble.com