Google Code Exporter
Google Code Exporter
``` What steps will reproduce the problem? 1. Create a new class that extends RewriteRule 2. override the initialise(ServletContext) method 3. Add reference to class in urlrewrite.xml using 4. Run...
``` Ref: http://tuckey.org/urlrewrite/manual/4.0/#outbound-rule 1) Missing in description (useful): For enable parse of "path?querystring" you MUST add use-query-string="true" in urlrewrite tag 2) Regex example is wrong ^/world.jsp?country=([a-z]+)&city=([a-z]+)$ ? is a special...
``` Ref: http://tuckey.org/urlrewrite/manual/4.0/#outbound-rule 1) Missing in description (useful): For enable parse of "path?querystring" you MUST add use-query-string="true" in urlrewrite tag 2) Regex example is wrong ^/world.jsp?country=([a-z]+)&city=([a-z]+)$ ? is a special...
``` I'm trying to do some basic tests on the rules in the urlrewritefilter. However what I would prefer is to do some junit tests prio to full deployment. Therefor...
``` The example reads: ^/world.jsp?country=([a-z]+)&city=([a-z]+)$ /world/$1/$2 But must read: ^/world.jsp\?country=([a-z]+)&city=([a-z]+)$ /world/$1/$2 Question mark is not escaped. ``` Original issue reported on code.google.com by `[email protected]` on 14 Jan 2013 at 2:11
``` I have attached a patch against the current trunk code as today. This patch modifies pom.xml to build the JAR as an OSGi bundle. This is done using a...
``` We have an in house-build framework that we use to create java apps. We've been using resin since 2.0, tuckey with resin since 3.0. Rewrites have never been a...
``` Can you add a feature that allows UrlRewriteFilter to filter requests through additional javax.servlet.Filter's? The true problem is that web.xml's filter-mapping doesn't allow regex. For example it would be...
``` What steps will reproduce the problem? 1. Create a rule with a regular expression in 2. Use in the a variable with index bigger than 9, like for example...
``` i want using id attr in jsp page. e.g : using need write too much. thanks ``` Original issue reported on code.google.com by `[email protected]` on 30 Nov 2012 at...