User: leifj
Date: 07/06/10 13:04:07
Modified: andromda-jsf2/src/main/resources/templates/jsf2/views/jsp
index.jsp.vsl
Log:
pass initial request parameters through
Revision Changes Path
1.4 +1 -1 cartridges/andromda-jsf2/src/main/resources/templates/jsf2/views/jsp/index.jsp.vsl
Index: index.jsp.vsl
===================================================================
RCS file: /cvsroot/andromdaplugins/cartridges/andromda-jsf2/src/main/resources/templates/jsf2/views/jsp/index.jsp.vsl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -w -r1.3 -r1.4
--- index.jsp.vsl 11 Jan 2007 17:37:58 -0000 1.3
+++ index.jsp.vsl 10 Jun 2007 20:04:07 -0000 1.4
@@ -3,4 +3,4 @@
#else
#set($path = "/crud-index")
#end
-<%response.sendRedirect(request.getContextPath() + "${path}.${facesServletExtension}");%>
\ No newline at end of file
+<%response.sendRedirect(request.getContextPath() + "${path}.${facesServletExtension}"+(request.getQueryString() != null ? "?"+request.getQueryString() : ""));%>
|