dmkarr 2002/10/22 22:24:57
Modified: contrib/struts-el/src/share/org/apache/strutsel/taglib/logic
package.html
Log:
Fixed tag prefix.
Revision Changes Path
1.2 +10 -10
jakarta-struts/contrib/struts-el/src/share/org/apache/strutsel/taglib/logic/package.html
Index: package.html
===================================================================
RCS file:
/home/cvs/jakarta-struts/contrib/struts-el/src/share/org/apache/strutsel/taglib/logic/package.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- package.html 23 Oct 2002 05:10:35 -0000 1.1
+++ package.html 23 Oct 2002 05:24:57 -0000 1.2
@@ -69,33 +69,33 @@
</p>
<p><i>Example:</i></p>
<pre>
- <logic:forward name="${forwardName}"/></pre>
+ <logic-el:forward name="${forwardName}"/></pre>
<p><i>Example:</i></p>
<pre>
<%-- Iterates through all HTTP headers. --%>
- <logic:iterate id="item" collection="${header}">
+ <logic-el:iterate id="item" collection="${header}">
<tr>
<td><c:out value="${item}.key"/></td>
<td><c:out value="${item}.value"/></td>
</tr>
- </logic:iterate></pre>
+ </logic-el:iterate></pre>
<p><i>Example:</i></p>
<pre>
- <logic:match cookie="${cookieName}" value="${cookieValue}">
+ <logic-el:match cookie="${cookieName}" value="${cookieValue}">
Match succeeded.
- </logic:match></pre>
+ </logic-el:match></pre>
<p><i>Example:</i></p>
<pre>
- <logic:match expr='${hash["foo"]}' value="${matchValue}">
+ <logic-el:match expr='${hash["foo"]}' value="${matchValue}">
Match succeeded.
- </logic:match></pre>
+ </logic-el:match></pre>
<p><i>Example:</i></p>
<pre>
- <logic:messagesPresent property="${messageKey}">
+ <logic-el:messagesPresent property="${messageKey}">
Message found.
- </logic:messagesPresent></pre>
+ </logic-el:messagesPresent></pre>
<p><i>Example:</i></p>
<pre>
- <logic:redirect href="http://localhost:${portnum}/factory" />
+ <logic-el:redirect href="http://localhost:${portnum}/factory" />
</body>
</html>
--
To unsubscribe, e-mail: <mailto:struts-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-dev-help@;jakarta.apache.org>