How to get access to HttpServletRequest in wicket 1.5-SNAPSHOT?

2011-02-05 Thread Michael O'Cleirigh
Hello, I'm trying to fix a bug in wicketstuff/core master branch that tracks wicket 1.5-SNAPSHOT. In the /jdk-1.6-parent/javaee-inject/src/main/java/org/wicketstuff/javaee/injection/JavaEEProxyFieldValueFactory.java it needs to get access to the underlying HttpSession. In 1.5-RC1 this

Re: (WICKET-2207) Modal Window created with a page creator don't open on IE8 and direct to an invalid adress

2011-02-05 Thread Rodolfo Hansen
Have you tried it with my modal window patch ? https://issues.apache.org/jira/browse/WICKET-3151 On Fri, 2011-01-21 at 00:37 -0800, Dinesh Sharma wrote: Hi, Am new in this Forum and came across this thread while looking for one Model Window issue. I have to use Model Window in my project

Re: How to get access to HttpServletRequest in wicket 1.5-SNAPSHOT?

2011-02-05 Thread Michael O'Cleirigh
I found the answer in this recent commit: https://github.com/mocleiri/wicket/commit/f973ddb47700857b8af2d1bc2075bbf1f03e5209 (scroll down to the first file: Include.java). HttpSession session = ((ServletWebRequest) RequestCycle.get().getRequest()).getHttpServletRequest().getSession();

Re: The finality of MarkupException

2011-02-05 Thread Martijn Dashorst
Usually final is put there 'automatically' to protect us from messing up API users. It is easier to remove final than it is to add it :) Martijn On Sat, Feb 5, 2011 at 5:01 AM, Craig Tataryn crai...@tataryn.net wrote: I'm familiar with the *definition* of final, what I'm getting at is it would