rlubke 01/12/18 09:56:04
Modified: src/server/jsp-tests/jsp/tagext/TagSupport
default_return_values.jsp positiveDoAfterBody.jsp
positiveSetGetId.jsp
Log:
Previously Jasper would call body related methods on
custom actions that didn't have a body. Once this was corrected,
JSP pages that had actions such as <custom:action/> started to
fail as the expected body method was not called.
The affected JSP pages have been corrected. The actions
now look similar to:
<custom:action>
</custom:action>
Revision Changes Path
1.2 +2 -1
jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/TagSupport/default_return_values.jsp
Index: default_return_values.jsp
===================================================================
RCS file:
/home/cvs/jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/TagSupport/default_return_values.jsp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- default_return_values.jsp 2000/11/30 23:43:03 1.1
+++ default_return_values.jsp 2001/12/18 17:56:04 1.2
@@ -15,7 +15,8 @@
<%@ taglib uri="/TestLib.tld" prefix="def" %>
-<def:default />
+<def:default>
+</def:default>
</body>
</html>
1.2 +10 -5
jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/TagSupport/positiveDoAfterBody.jsp
Index: positiveDoAfterBody.jsp
===================================================================
RCS file:
/home/cvs/jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/TagSupport/positiveDoAfterBody.jsp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- positiveDoAfterBody.jsp 2000/11/30 23:43:03 1.1
+++ positiveDoAfterBody.jsp 2001/12/18 17:56:04 1.2
@@ -28,11 +28,16 @@
<%@ taglib uri="/TestLib.tld" prefix="test" %>
-<test:iterator iteration="0" />
-<test:iterator iteration="2" />
-<test:iterator iteration="4" />
-<test:iterator iteration="1" />
-<test:iterator iteration="3" />
+<test:iterator iteration="0">
+</test:iterator>
+<test:iterator iteration="2">
+</test:iterator>
+<test:iterator iteration="4">
+</test:iterator>
+<test:iterator iteration="1">
+</test:iterator>
+<test:iterator iteration="3">
+</test:iterator>
</body>
</html>
1.2 +2 -1
jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/TagSupport/positiveSetGetId.jsp
Index: positiveSetGetId.jsp
===================================================================
RCS file:
/home/cvs/jakarta-watchdog-4.0/src/server/jsp-tests/jsp/tagext/TagSupport/positiveSetGetId.jsp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- positiveSetGetId.jsp 2000/11/30 23:43:03 1.1
+++ positiveSetGetId.jsp 2001/12/18 17:56:04 1.2
@@ -14,7 +14,8 @@
<%@ taglib uri="/TestLib.tld" prefix="test" %>
-<test:iterator iteration="0" setget="true" tagid="TestSetGetId" />
+<test:iterator iteration="0" setget="true" tagid="TestSetGetId">
+</test:iterator>
</body>
</html>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>