You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by cr...@apache.org on 2001/07/11 19:35:38 UTC

cvs commit: jakarta-tomcat-4.0/tester/web JspParams01.jsp JspParams02.jsp

craigmcc    01/07/11 10:35:37

  Modified:    tester/src/bin tester.xml
  Added:       tester/web JspParams01.jsp JspParams02.jsp
  Log:
  Add unit tests to verify that <jsp:params> is not allowed inside <jsp:incluce>
  
  Revision  Changes    Path
                       
  
  
  1.1                  jakarta-tomcat-4.0/tester/web/JspParams01.jsp
  
  Index: JspParams01.jsp
  ===================================================================
  <jsp:include page="JspParams01a.jsp" flush="true">
    <jsp:params>
      <jsp:param name="foo" value="bar"/>
    </jsp:params>
  </jsp:include>
  
  
  
  1.1                  jakarta-tomcat-4.0/tester/web/JspParams02.jsp
  
  Index: JspParams02.jsp
  ===================================================================
  <jsp:forward page="JspParams01a.jsp">
    <jsp:params>
      <jsp:param name="foo" value="bar"/>
    </jsp:params>
  </jsp:forward>