Revision: 960
          http://stripes.svn.sourceforge.net/stripes/?rev=960&view=rev
Author:   bengunter
Date:     2008-10-02 01:10:38 +0000 (Thu, 02 Oct 2008)

Log Message:
-----------
Fixed STS-575. AnnotatedClassActionResolver.getRequestedPath(..) calls 
HttpServletRequest.getRequestURI() instead of constructing the URI from 
servletPath and pathInfo.

Modified Paths:
--------------
    
trunk/stripes/src/net/sourceforge/stripes/controller/AnnotatedClassActionResolver.java

Modified: 
trunk/stripes/src/net/sourceforge/stripes/controller/AnnotatedClassActionResolver.java
===================================================================
--- 
trunk/stripes/src/net/sourceforge/stripes/controller/AnnotatedClassActionResolver.java
      2008-09-27 19:02:23 UTC (rev 959)
+++ 
trunk/stripes/src/net/sourceforge/stripes/controller/AnnotatedClassActionResolver.java
      2008-10-02 01:10:38 UTC (rev 960)
@@ -289,20 +289,16 @@
      * @return the servlet-context relative path that is being requested
      */
     protected String getRequestedPath(HttpServletRequest request) {
-        String servletPath = null, pathInfo = null;
-
         // Check to see if the request is processing an include, and pull the 
path
         // information from the appropriate source.
         if (request.getAttribute(StripesConstants.REQ_ATTR_INCLUDE_PATH) != 
null) {
-            servletPath = (String) 
request.getAttribute(StripesConstants.REQ_ATTR_INCLUDE_PATH);
-            pathInfo    = (String) 
request.getAttribute(StripesConstants.REQ_ATTR_INCLUDE_PATH_INFO);
+            String servletPath = (String) 
request.getAttribute(StripesConstants.REQ_ATTR_INCLUDE_PATH);
+            String pathInfo    = (String) 
request.getAttribute(StripesConstants.REQ_ATTR_INCLUDE_PATH_INFO);
+            return (servletPath == null ? "" : servletPath) + (pathInfo == 
null ? "" : pathInfo);
         }
         else {
-            servletPath = request.getServletPath();
-            pathInfo    = request.getPathInfo();
+            return request.getRequestURI();
         }
-
-        return (servletPath == null ? "" : servletPath) + (pathInfo == null ? 
"" : pathInfo);
     }
 
     /**


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development

Reply via email to