Author: markt Date: Mon Jul 11 09:28:25 2011 New Revision: 1145083 URL: http://svn.apache.org/viewvc?rev=1145083&view=rev Log: Ensure it is clear when tag isn't working
Modified: tomcat/trunk/webapps/examples/jsp/tagplugin/if.jsp Modified: tomcat/trunk/webapps/examples/jsp/tagplugin/if.jsp URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/examples/jsp/tagplugin/if.jsp?rev=1145083&r1=1145082&r2=1145083&view=diff ============================================================================== --- tomcat/trunk/webapps/examples/jsp/tagplugin/if.jsp (original) +++ tomcat/trunk/webapps/examples/jsp/tagplugin/if.jsp Mon Jul 11 09:28:25 2011 @@ -38,7 +38,10 @@ <h3>Conditionally execute the body</h3> <c:if test="${2>0}"> - It's true that (2>0)! + <p>It's true that (2>0)! Working.</p> + </c:if> + <c:if test="${0>2}"> + <p>It's not true that (0>2)! Failed.</p> </c:if> </body> </html> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org