<%--
 Copyright 2004-2005 Sun Microsystems, Inc.  All rights reserved.
 Use is subject to license terms.
--%>

<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %>
<%@ taglib prefix="my" uri="http://jakarta.apache.org/tomcat/jsp2-example-taglib"%>
<fmt:setBundle basename="LocalStrings"/>
<html>
  <head>
    <title><fmt:message key="dynamicattrs.jsp.title"/></title>
  </head>
  <body>
    <h1><fmt:message key="dynamicattrs.jsp.title"/></h1>
    <hr>
    <p><fmt:message key="dynamicattrs.jsp.overview"/></p>
    <hr>
    <h2><fmt:message key="dynamicattrs.jsp.invocation"/> 1 (<fmt:message key="dynamicattrs.jsp.sixattrs"/>)</h2>
    <ul>
      <my:echoAttributes x="1" y="2" z="3" r="red" g="green" b="blue"/>
    </ul>
    <h2><fmt:message key="dynamicattrs.jsp.invocation"/> 2 (<fmt:message key="dynamicattrs.jsp.zeroattrs"/>)</h2>
    <ul>
      <my:echoAttributes/>
    </ul>
    <h2><fmt:message key="dynamicattrs.jsp.invocation"/> 3 (<fmt:message key="dynamicattrs.jsp.threeattrs"/>)</h2>
    <ul>
      <my:echoAttributes dogName="Scruffy" 
	   		 catName="Fluffy" 
			 blowfishName="Puffy"/>
    </ul>
  </body>
</html>