Sample Tapestry 5 GWT project in wiki

2010-05-09 Thread Shing Hing Man
I am trying out GWT with Tapestry. In the wiki http://wiki.apache.org/tapestry/Tapestry5GWTIntegration at the top, the link to the sample GWT Tapestry Eclipse project is broken. Does anyone know where it has moved to ? Thanks in advance for any assistance ! Shing

Re: URLRewriting and tapestry.force-absolute-uris

2010-05-09 Thread Steve Eynon
Hi Christian, If you are just looking to change incoming legacy requests and don't care about URLs once the user has entered the system, have a look at: Url Rewrite Filter - http://tuckey.org/urlrewrite/ It's a servlet filter than alters the URL before Tapestry sees it, allowing you to convert

[T5.1] Cookies.removeCookieValue issue

2010-05-09 Thread paha
there is minor issue with current CookiesImpl.removeCookieValue implementation. public void removeCookieValue(String name) { Cookie cookie = new Cookie(name, null); cookie.setPath(request.getContextPath() + /); cookie.setMaxAge(0);