Author: markt Date: Wed Mar 3 19:27:25 2010 New Revision: 918651 URL: http://svn.apache.org/viewvc?rev=918651&view=rev Log: Echo tags are not expected to have bodies. Has the happy side-effect of providing a tag that can be used to test bug 48827.
Modified: tomcat/trunk/test/webapp/WEB-INF/tags/echo-deferred.tag tomcat/trunk/test/webapp/WEB-INF/tags/echo-double.tag tomcat/trunk/test/webapp/WEB-INF/tags/echo-long.tag tomcat/trunk/test/webapp/WEB-INF/tags/echo-noel.tag tomcat/trunk/test/webapp/WEB-INF/tags/echo.tag Modified: tomcat/trunk/test/webapp/WEB-INF/tags/echo-deferred.tag URL: http://svn.apache.org/viewvc/tomcat/trunk/test/webapp/WEB-INF/tags/echo-deferred.tag?rev=918651&r1=918650&r2=918651&view=diff ============================================================================== --- tomcat/trunk/test/webapp/WEB-INF/tags/echo-deferred.tag (original) +++ tomcat/trunk/test/webapp/WEB-INF/tags/echo-deferred.tag Wed Mar 3 19:27:25 2010 @@ -14,4 +14,5 @@ See the License for the specific language governing permissions and limitations under the License. --%> -<%@ tag %><%@ attribute name="echo" deferredValue="true" %><p>${echo}</p> \ No newline at end of file +<%@ tag %><%@ attribute name="echo" deferredValue="true" %><%@ +tag body-content="empty" %><p>${echo}</p> \ No newline at end of file Modified: tomcat/trunk/test/webapp/WEB-INF/tags/echo-double.tag URL: http://svn.apache.org/viewvc/tomcat/trunk/test/webapp/WEB-INF/tags/echo-double.tag?rev=918651&r1=918650&r2=918651&view=diff ============================================================================== --- tomcat/trunk/test/webapp/WEB-INF/tags/echo-double.tag (original) +++ tomcat/trunk/test/webapp/WEB-INF/tags/echo-double.tag Wed Mar 3 19:27:25 2010 @@ -16,4 +16,5 @@ --%> <%@ tag %><%@ attribute name="echo" type="java.lang.Double"%><%@ -attribute name="index" type="java.lang.String" %><p>${index}-${echo}</p> \ No newline at end of file +attribute name="index" type="java.lang.String" %><%@ +tag body-content="empty" %><p>${index}-${echo}</p> \ No newline at end of file Modified: tomcat/trunk/test/webapp/WEB-INF/tags/echo-long.tag URL: http://svn.apache.org/viewvc/tomcat/trunk/test/webapp/WEB-INF/tags/echo-long.tag?rev=918651&r1=918650&r2=918651&view=diff ============================================================================== --- tomcat/trunk/test/webapp/WEB-INF/tags/echo-long.tag (original) +++ tomcat/trunk/test/webapp/WEB-INF/tags/echo-long.tag Wed Mar 3 19:27:25 2010 @@ -16,4 +16,5 @@ --%> <%@ tag %><%@ attribute name="echo" type="java.lang.Long"%><%@ -attribute name="index" type="java.lang.String" %><p>${index}-${echo}</p> \ No newline at end of file +attribute name="index" type="java.lang.String" %><%@ +tag body-content="empty" %><p>${index}-${echo}</p> \ No newline at end of file Modified: tomcat/trunk/test/webapp/WEB-INF/tags/echo-noel.tag URL: http://svn.apache.org/viewvc/tomcat/trunk/test/webapp/WEB-INF/tags/echo-noel.tag?rev=918651&r1=918650&r2=918651&view=diff ============================================================================== --- tomcat/trunk/test/webapp/WEB-INF/tags/echo-noel.tag (original) +++ tomcat/trunk/test/webapp/WEB-INF/tags/echo-noel.tag Wed Mar 3 19:27:25 2010 @@ -16,4 +16,4 @@ --%> <%@ tag%><%@ attribute name="echo" type="java.lang.String" rtexprvalue="false" -%><p>${echo}</p> \ No newline at end of file +%><%@ tag body-content="empty" %><p>${echo}</p> \ No newline at end of file Modified: tomcat/trunk/test/webapp/WEB-INF/tags/echo.tag URL: http://svn.apache.org/viewvc/tomcat/trunk/test/webapp/WEB-INF/tags/echo.tag?rev=918651&r1=918650&r2=918651&view=diff ============================================================================== --- tomcat/trunk/test/webapp/WEB-INF/tags/echo.tag (original) +++ tomcat/trunk/test/webapp/WEB-INF/tags/echo.tag Wed Mar 3 19:27:25 2010 @@ -14,4 +14,6 @@ See the License for the specific language governing permissions and limitations under the License. --%> -<%@ tag %><%@ attribute name="echo" type="java.lang.String"%><p>${echo}</p> \ No newline at end of file +<%@ tag %><%@ +attribute name="echo" type="java.lang.String"%><%@ +tag body-content="empty" %><p>${echo}</p> \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org