--- webapps/jsp-examples/jsp2/jspx/textRotate.jspx.orig Mon Sep 11 21:55:26 2006 +++ webapps/jsp-examples/jsp2/jspx/textRotate.jspx Mon Sep 11 21:53:47 2006 @@ -6,11 +6,12 @@ JSP 2.0 JSPX - + JSP 2.0 XML Syntax (.jspx) Demo --- webapps/jsp-examples/jsp2/el/functions.jsp.orig Mon Sep 11 21:55:56 2006 +++ webapps/jsp-examples/jsp2/el/functions.jsp Mon Sep 11 21:51:56 2006 @@ -13,6 +13,7 @@ See the License for the specific language governing permissions and limitations under the License. --> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> <%@ taglib prefix="my" uri="http://jakarta.apache.org/tomcat/jsp2-example-taglib"%> @@ -30,7 +31,7 @@
Change Parameter
- foo = + foo =

@@ -42,19 +43,19 @@ \${param["foo"]} - ${param["foo"]}  + ${fn:escapeXml(param["foo"])}  \${my:reverse(param["foo"])} - ${my:reverse(param["foo"])}  + ${my:reverse(fn:escapeXml(param["foo"]))}  \${my:reverse(my:reverse(param["foo"]))} - ${my:reverse(my:reverse(param["foo"]))}  + ${my:reverse(my:reverse(fn:escapeXml(param["foo"])))}  \${my:countVowels(param["foo"])} - ${my:countVowels(param["foo"])}  + ${my:countVowels(fn:escapeXml(param["foo"]))}  --- webapps/jsp-examples/jsp2/el/implicit-objects.jsp.orig Mon Sep 11 21:55:56 2006 +++ webapps/jsp-examples/jsp2/el/implicit-objects.jsp Mon Sep 11 21:52:32 2006 @@ -13,6 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. --> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> + JSP 2.0 Expression Language - Implicit Objects @@ -49,7 +51,7 @@
Change Parameter
- foo = + foo =

@@ -61,11 +63,11 @@ \${param.foo} - ${param.foo}  + ${fn:escapeXml(param["foo"])}  \${param["foo"]} - ${param["foo"]}  + ${fn:escapeXml(param["foo"])}  \${header["host"]}