You are viewing a plain text version of this content. The canonical link for it is here.
Posted to watchdog-dev@jakarta.apache.org by sa...@locus.apache.org on 2000/10/04 02:26:57 UTC

cvs commit: jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/BodyTagSupport positiveDoAfterBody.jsp positiveDoEndTag.jsp positiveDoInitBody.jsp positiveLifeCycle.jsp positiveRelease.jsp

santosh     00/10/03 17:26:57

  Added:       src/server/jsp-tests/jsp/tagext/BodyTagSupport
                        positiveDoAfterBody.jsp positiveDoEndTag.jsp
                        positiveDoInitBody.jsp positiveLifeCycle.jsp
                        positiveRelease.jsp
  Log:
  watchdog 4.0
  
  Revision  Changes    Path
  1.1                  jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/BodyTagSupport/positiveDoAfterBody.jsp
  
  Index: positiveDoAfterBody.jsp
  ===================================================================
  <html>
  <title>positiveDoAfterBody</title>
  <body>
  <% 
  	/** 	
  	Name : positiveDoAfterBody
  	Description : Pass an attr to the test tag and 
  	              print it inside the doAfterBody() method,
  	              indicating that doAfterBody() is called.
  	               
  	               
  	Result :     The passed attribute should be printed
  	             
  	**/  
  %>	 
  
  
  <%@ taglib uri="http://java.apache.org/tomcat/examples-taglib" prefix="eg" %>
  
  <eg:test toBrowser="true" att1="doAfterBody">
  Test For </eg:test>
  </body>
  </html>
  
  
  
  1.1                  jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/BodyTagSupport/positiveDoEndTag.jsp
  
  Index: positiveDoEndTag.jsp
  ===================================================================
  <html>
  <title>positiveDoEndTag</title>
  <body>
  <% 
  	/** 	
  	Name : positiveDoEndTag
  	Description : Pass an attribute to the test tag
  	              and print it inside the doEndTag()
  	              indicating that the method is called.
  	Result :   Should print the attribute that is passed.
  	**/  
  %>	 
  
  
  <%@ taglib uri="http://java.apache.org/tomcat/examples-taglib" prefix="eg" %>
  
  <eg:test toBrowser="true" att1="doEndTag">
  Test For </eg:test>
  
  </body>
  </html>
  
  
  
  1.1                  jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/BodyTagSupport/positiveDoInitBody.jsp
  
  Index: positiveDoInitBody.jsp
  ===================================================================
  <html>
  <title>positiveDoInitBody</title>
  <body>
  <% 
  	/** 	
  	Name : positiveDoInitBody
  	Description : Pass an attribute to the test tag
  	              and print it inside the doInitBody()
  	              method,indiacting that the method is invoked.
  	Result :   The attribute passed should be printed.
  	**/  
  %>	 
  
  
  <%@ taglib uri="http://java.apache.org/tomcat/examples-taglib" prefix="eg" %>
  
  <eg:test toBrowser="true" att1="doInitBody">
  Test For </eg:test>
  </body>
  </html>
  
  
  
  1.1                  jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/BodyTagSupport/positiveLifeCycle.jsp
  
  Index: positiveLifeCycle.jsp
  ===================================================================
  <html>
  <title>positiveLifeCycle</title>
  <body>
  <% 
  	/** 	
  	Name : positiveLifeCycle
  	Description : 
  	Result :   
  	**/  
  %>	 
  
  
  <%@ taglib uri="http://java.apache.org/tomcat/examples-taglib" prefix="eg" %>
  
  <eg:lifeCycle toBrowser="true" att1="pageContext" att2="doStartTag" att3="doInitBody"
  att4="doAfterBody" att5="doEndTag" att6="release" >
   </eg:lifeCycle>
  </body>
  </html>
  
  
  
  1.1                  jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/BodyTagSupport/positiveRelease.jsp
  
  Index: positiveRelease.jsp
  ===================================================================
  <html>
  <title>positiveRelease</title>
  <body>
  <% 
  	/** 	
  	Name : positiveRelease
  	Description : Pass an attribute to the test tag and
  	              print it in the release() method,indicating
  	              that the method is called.
  	Result :   The attribute passed,should be printed.
  	**/  
  %>	 
  
  
  <%@ taglib uri="http://java.apache.org/tomcat/examples-taglib" prefix="eg" %>
  
  <eg:test toBrowser="true" att1="release">
  Test For </eg:test>
  </body>
  </html>