Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-test-webapp/src/main/webapp/jsp/tag2.jsp')
-rw-r--r--jetty-test-webapp/src/main/webapp/jsp/tag2.jsp19
1 files changed, 19 insertions, 0 deletions
diff --git a/jetty-test-webapp/src/main/webapp/jsp/tag2.jsp b/jetty-test-webapp/src/main/webapp/jsp/tag2.jsp
new file mode 100644
index 0000000000..8071927562
--- /dev/null
+++ b/jetty-test-webapp/src/main/webapp/jsp/tag2.jsp
@@ -0,0 +1,19 @@
+<html>
+<body>
+
+<%@ taglib uri="http://www.acme.com/taglib2" prefix="acme" %>
+
+<acme:date2 format="long">
+ On ${day} of ${month} in the year ${year}
+</acme:date2>
+
+<br/>
+
+<acme:date2 format="short">
+ ${day} - ${month} - ${year}
+</acme:date2>
+
+<br/>
+
+</body>
+</html>

Back to the top