Re: Eclipse-IDE Plugin "Wicket Bench" not existing (any more)?

2012-03-25 Thread Jeroen Steenbeeke
You could try Qwickie: http://code.google.com/p/qwickie/ 2012/3/24 Stefan Lindner : > It's dead. Someone tried to continue i tat > http://sourceforge.net/projects/stump/ but no release is available. > > -Ursprüngliche Nachricht- > Von: Ben Stover [mailto:bxsto...@yahoo.co.uk] > Gesendet:

Re: Access current request in IAuthorizationStrategy

2012-03-25 Thread Jürgen Lind
Thanks, I've been looking through some classes to find such a method but I missed on that one... J. On 26.03.2012 08:33, Igor Vaynberg wrote: RequestCycle.get() -igor On Sun, Mar 25, 2012 at 11:14 PM, Jürgen Lind wrote: Hi, I need a way to decide wether a certain page can be opend based

Re: Access current request in IAuthorizationStrategy

2012-03-25 Thread Igor Vaynberg
RequestCycle.get() -igor On Sun, Mar 25, 2012 at 11:14 PM, Jürgen Lind wrote: > Hi, > > I need a way to decide wether a certain page can be opend based on the URL it > was called with. Therefore, I need > access to the current request in the 'isInstantiationAuthorized' method of > IAuthorizati

Access current request in IAuthorizationStrategy

2012-03-25 Thread Jürgen Lind
Hi, I need a way to decide wether a certain page can be opend based on the URL it was called with. Therefore, I need access to the current request in the 'isInstantiationAuthorized' method of IAuthorizationStrategy. Is there a way to get access to the current request there? Thanks, J. ---

adding associated text to the close anchor on modal windows

2012-03-25 Thread lukuperman
Hello, I work on a team that supports a web application implemented with Wicket, and because of accessibility compliance I'm addressing some DQA findings. It would be nice to have the close anchor of modal windows (top right corner) having an associated text, for assistive technologies. This can be

Re: BookmarkablePageLink with Label is supported by Wicket?

2012-03-25 Thread Dan Retzlaff
Check out AbstractLink#setBody(IModel). On Sun, Mar 25, 2012 at 7:07 PM, Paolo wrote: > I read on this web site: > > > http://ondra.zizka.cz/stranky/programovani/java/web/wicket/wicket-link-with-label.texy > > - > Wicket does not have exactly a „link with label“ component out of

BookmarkablePageLink with Label is supported by Wicket?

2012-03-25 Thread Paolo
I read on this web site: http://ondra.zizka.cz/stranky/programovani/java/web/wicket/wicket-link-with-label.texy - Wicket does not have exactly a „link with label“ component out of the box. Remember Wicket tries to hide the HTTP from you (and is quite good at it). It has a Link, wh

Re: Homepage runs 2 times if I mount it as /

2012-03-25 Thread Paolo
Alle venerdì 23 marzo 2012, Jeff Schneller ha scritto: > I may be wrong but you don't need to mount the homepage which is why it is > being executed twice. Yes, ok, you are right. But the problem was start because I use the "NoVersionMount" to mount homepage because I don't like that the url of

Re: After upgrading from wicket 1.5.0 to 1.5.1+ we have a simple problem

2012-03-25 Thread Martin Grigorov
On Sun, Mar 25, 2012 at 7:19 PM, Bas Gooren wrote: > Hi, > > Op 25-3-2012 17:44, schreef Martin Grigorov: > >> Hi, >> >> On Sat, Mar 24, 2012 at 10:44 PM, Bas Gooren  wrote: >>> >>> After more debugging, I learned some new things about wicket. >>> >>> It appears that an invisible stateful link mak

Re: inferring locale from URL in 1.5

2012-03-25 Thread Martin Grigorov
wicketstuff.org is the one that is down most of the time. wicket-library.com is OK, I've never had problems with it. On Sun, Mar 25, 2012 at 7:39 PM, armhold wrote: > Martin, > > The wicket-examples site rarely works for me (server under-resourced?) but I > found the code in the examples section

Re: inferring locale from URL in 1.5

2012-03-25 Thread armhold
Martin, The wicket-examples site rarely works for me (server under-resourced?) but I found the code in the examples section of the Wicket source from git. LocaleFirstMapper was a huge help; I'm fairly sure I wouldn't have gotten it working without that reference, so thank you very much. Here's

Re: After upgrading from wicket 1.5.0 to 1.5.1+ we have a simple problem

2012-03-25 Thread Bas Gooren
Hi, Op 25-3-2012 17:44, schreef Martin Grigorov: Hi, On Sat, Mar 24, 2012 at 10:44 PM, Bas Gooren wrote: After more debugging, I learned some new things about wicket. It appears that an invisible stateful link makes a page stateful. The base page for this application contains a username labe

Re: java.io.UnsupportedEncodingException: ISO8859_10

2012-03-25 Thread Martin Grigorov
Hi, Wicket doesn't set any encodings. Either your code sets it via WebResponse#setContentType("text/html;encoding=blah") or Caucho uses the default encoding for the machine where it runs. Check with your system administrator. On Fri, Mar 23, 2012 at 4:00 PM, andretampold wrote: > Hello dear Wick

Re: Using AbstractResourceStreamWriter in wicket 1.5

2012-03-25 Thread Martin Grigorov
Hi, I haven't used it personally but I think this class is broken. It doesn't write directly to the container's response's outputstream, so whatever you write is buffered. And this is against the said in the javadoc of org.apache.wicket.core.util.resource.IResourceStreamWriter. Please file a ticke

Re: ModalWindow accessibility - DIV placeholder not used

2012-03-25 Thread Martin Grigorov
Hi Lucas, This is how ModalWindow currently works. There is a ticket (https://issues.apache.org/jira/browse/WICKET-3404) that will make some changes in the way its html is generated but I'm not sure whether these changes will help you anyhow. I'm not an expert in ARIA at all so maybe you can help

Re: After upgrading from wicket 1.5.0 to 1.5.1+ we have a simple problem

2012-03-25 Thread Martin Grigorov
Hi, On Sat, Mar 24, 2012 at 10:44 PM, Bas Gooren wrote: > After more debugging, I learned some new things about wicket. > > It appears that an invisible stateful link makes a page stateful. > The base page for this application contains a username label + logout link > (stateful), which are in a W

Re: Mixing Wicket + JQuery + JQueryUI to achieve infinite scroll.

2012-03-25 Thread Martin Grigorov
Hi Mark, Check that project - https://github.com/reaktor/oegyscroll. Use it as inspiration if it doesn't fulfill your requirements. For Ajax in Wicket 6 read https://cwiki.apache.org/confluence/display/WICKET/Wicket+Ajax On Sun, Mar 25, 2012 at 7:14 AM, Mark wrote: > Unfortunately I am a beginn

Re: HTML frame alternative to visualise external web-page

2012-03-25 Thread Martin Grigorov
Hi Walter, I have no idea why InlineFrame is designed this way. I see Sven is @author of it. @Sven: do you remember why you made it this way - with Wicket Page, pageClass and ILinkListener ? @Walter: please create a ticket. I think this can be improved for Wicket 6. On Sun, Mar 25, 2012 at 10:18

Re: Override BrowserInfoPage

2012-03-25 Thread Martin Grigorov
Hi, Override org.apache.wicket.protocol.http.WebSession#newBrowserInfoPage On Fri, Mar 23, 2012 at 6:54 PM, Adam Gray wrote: > You can provide your own markup for BrowserInfoPage if you place it in the > correct package within your application > (org.apache.wicket.markup.html.pages? I believe).

Re: mouseover in wicket

2012-03-25 Thread Pierre Goupil
For wicketstuff, if you look in GitHub, there's a branch for wicket-1.5.5. It was announced here some time ago. For Wicket 1.5.4, I don't know, may be you should explore the GIT repo. On Sun, Mar 25, 2012 at 9:04 AM, Dan12321 wrote: > Thanks. > > I try "jwicket-tooltip", but it seems that it

Re: HTML frame alternative to visualise external web-page

2012-03-25 Thread Walter Rugora
Dear Martin, I got back to your InlineFrame suggestion. I worked a bit on wicket the last days and found the posting on the DocumentInlineFrame by Ernesto Reinaldo Barreiro. I changed it for my purpose: http://pastebin.ca/2131961 Works great! Is there any reason why the Wicket InlineFrame class c

Re: mouseover in wicket

2012-03-25 Thread Dan12321
Thanks. I try "jwicket-tooltip", but it seems that it do not work with wicket 1.5.4. Visural wicket works, but I can not use ajax. When I move cursor over same element, I would like to call same method, that create tooltip. -- View this message in context: http://apache-wicket.1842946.n4.nabble