morgand 01/03/08 17:52:26
Modified: scopes/conf scopes.tld
Log:
updated with new tags
Revision Changes Path
1.2 +96 -123 jakarta-taglibs/scopes/conf/scopes.tld
Index: scopes.tld
===================================================================
RCS file: /home/cvs/jakarta-taglibs/scopes/conf/scopes.tld,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- scopes.tld 2001/03/07 01:53:59 1.1
+++ scopes.tld 2001/03/09 01:52:26 1.2
@@ -23,164 +23,137 @@
<uri>http://jakarta.apache.org/taglibs/scopes</uri>
<!-- ******************** Defined Custom Tags *************************** -->
-
- <tag>
- <name>initParameter</name>
- <tagclass>org.apache.taglibs.scopes.InitParameterTag</tagclass>
- <bodycontent>empty</bodycontent>
- <info>Get the value of a single init parameter.</info>
- <attribute>
- <name>name</name>
- <required>true</required>
- <rtexprvalue>false</rtexprvalue>
- </attribute>
- </tag>
-
- <tag>
- <name>initParameters</name>
- <tagclass>org.apache.taglibs.scopes.InitParametersTag</tagclass>
- <teiclass>org.apache.taglibs.scopes.InitParametersTEI</teiclass>
- <bodycontent>JSP</bodycontent>
- <info>Loop through all init parameters.</info>
- <attribute>
- <name>id</name>
- <required>true</required>
- <rtexprvalue>false</rtexprvalue>
- </attribute>
- </tag>
-
- <tag>
- <name>equalsInitParameter</name>
- <tagclass>org.apache.taglibs.scopes.EqualsInitParameterTag</tagclass>
- <bodycontent>JSP</bodycontent>
- <info>
- Includes the body of the tag if the init parameter is equal to
- the value of the "match" attribute.
- </info>
- <attribute>
- <name>name</name>
- <required>true</required>
- <rtexprvalue>false</rtexprvalue>
- </attribute>
- <attribute>
- <name>value</name>
- <required>false</required>
- <rtexprvalue>false</rtexprvalue>
- </attribute>
- <attribute>
- <name>match</name>
- <required>true</required>
- <rtexprvalue>true</rtexprvalue>
- </attribute>
- <attribute>
- <name>ignorecase</name>
- <required>false</required>
- <rtexprvalue>false</rtexprvalue>
- </attribute>
- </tag>
-
- <tag>
- <name>existsInitParameter</name>
- <tagclass>org.apache.taglibs.scopes.ExistsInitParameterTag</tagclass>
- <bodycontent>JSP</bodycontent>
- <info>Includes the body of the tag if the init parameter exists.</info>
- <attribute>
- <name>name</name>
- <required>true</required>
- <rtexprvalue>false</rtexprvalue>
- </attribute>
- <attribute>
- <name>value</name>
- <required>false</required>
- <rtexprvalue>false</rtexprvalue>
- </attribute>
- </tag>
<tag>
- <name>attribute</name>
- <tagclass>org.apache.taglibs.scopes.AttributeTag</tagclass>
+ <name>initParameter</name>
+ <tagclass>org.apache.taglibs.scopes.InitParameterTag</tagclass>
<bodycontent>empty</bodycontent>
- <info>Get the value of a single application attribute.</info>
+ <info>Get the value of a single init parameter.</info>
<attribute>
<name>name</name>
<required>true</required>
<rtexprvalue>false</rtexprvalue>
</attribute>
+ </tag>
+
+ <tag>
+ <name>initParameters</name>
+ <tagclass>org.apache.taglibs.scopes.InitParametersTag</tagclass>
+ <teiclass>org.apache.taglibs.scopes.InitParametersTEI</teiclass>
+ <bodycontent>JSP</bodycontent>
+ <info>Loop through all init parameters.</info>
<attribute>
- <name>scope</name>
- <required>false</required>
+ <name>id</name>
+ <required>true</required>
<rtexprvalue>false</rtexprvalue>
</attribute>
</tag>
<tag>
- <name>attributes</name>
- <tagclass>org.apache.taglibs.scopes.AttributesTag</tagclass>
- <teiclass>org.apache.taglibs.scopes.AttributesTEI</teiclass>
+ <name>equals</name>
+ <tagclass>org.apache.taglibs.scopes.EqualsTag</tagclass>
<bodycontent>JSP</bodycontent>
- <info>Loop through all application attributes.</info>
+ <info>
+ Includes the body of the tag if the desired value is equal to
+ the value of the "match" attribute. Desired value is
+ designated via the "attribute", "parameter", or "initParameter"
+ XML attribute.
+ </info>
<attribute>
- <name>id</name>
+ <name>match</name>
<required>true</required>
+ <rtexprvalue>true</rtexprvalue>
+ </attribute>
+ <attribute>
+ <name>ignoreCase</name>
+ <required>false</required>
<rtexprvalue>false</rtexprvalue>
</attribute>
<attribute>
+ <name>attribute</name>
+ <required>false</required>
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
+ <attribute>
+ <name>parameter</name>
+ <required>false</required>
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
+ <attribute>
+ <name>attribute</name>
+ <required>false</required>
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
+ <attribute>
<name>scope</name>
<required>false</required>
<rtexprvalue>false</rtexprvalue>
</attribute>
+ <attribute>
+ <name>initParameter</name>
+ <required>false</required>
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
</tag>
-
- <tag>
- <name>equalsAttribute</name>
- <tagclass>org.apache.taglibs.scopes.EqualsAttributeTag</tagclass>
- <bodycontent>JSP</bodycontent>
- <info>
- Includes the body of the tag if the application attribute is equal to
- the value of the "match" attribute.
- </info>
- <attribute>
- <name>name</name>
- <required>true</required>
- <rtexprvalue>false</rtexprvalue>
- </attribute>
- <attribute>
- <name>value</name>
- <required>false</required>
- <rtexprvalue>false</rtexprvalue>
- </attribute>
- <attribute>
- <name>match</name>
- <required>true</required>
- <rtexprvalue>true</rtexprvalue>
- </attribute>
- <attribute>
- <name>ignorecase</name>
- <required>false</required>
- <rtexprvalue>false</rtexprvalue>
+
+ <tag>
+ <name>exists</name>
+ <tagclass>org.apache.taglibs.scopes.ExistsTag</tagclass>
+ <bodycontent>JSP</bodycontent>
+ <info>
+ Checks for the existence of the desired parameter, initParameter
+ or attribute.
+ </info>
+ <attribute>
+ <name>parameter</name>
+ <required>false</required>
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
+ <attribute>
+ <name>attribute</name>
+ <required>false</required>
+ <rtexprvalue>false</rtexprvalue>
</attribute>
<attribute>
<name>scope</name>
<required>false</required>
<rtexprvalue>false</rtexprvalue>
- </attribute>
- </tag>
+ </attribute>
+ <attribute>
+ <name>initParameter</name>
+ <required>false</required>
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
+ </tag>
<tag>
- <name>existsAttribute</name>
- <tagclass>org.apache.taglibs.scopes.ExistsAttributeTag</tagclass>
- <bodycontent>JSP</bodycontent>
- <info>Includes the body of the tag if the application attribute exists.</info>
+ <name>attribute</name>
+ <tagclass>org.apache.taglibs.scopes.AttributeTag</tagclass>
+ <bodycontent>empty</bodycontent>
+ <info>Get the value of a single application attribute.</info>
<attribute>
<name>name</name>
<required>true</required>
<rtexprvalue>false</rtexprvalue>
</attribute>
<attribute>
- <name>value</name>
+ <name>scope</name>
<required>false</required>
<rtexprvalue>false</rtexprvalue>
</attribute>
+ </tag>
+
+ <tag>
+ <name>attributes</name>
+ <tagclass>org.apache.taglibs.scopes.AttributesTag</tagclass>
+ <teiclass>org.apache.taglibs.scopes.AttributesTEI</teiclass>
+ <bodycontent>JSP</bodycontent>
+ <info>Loop through all application attributes.</info>
+ <attribute>
+ <name>id</name>
+ <required>true</required>
+ <rtexprvalue>false</rtexprvalue>
+ </attribute>
<attribute>
<name>scope</name>
<required>false</required>
@@ -189,13 +162,13 @@
</tag>
<tag>
- <name>setAttribute</name>
+ <name>setAttribute</name>
<tagclass>org.apache.taglibs.scopes.SetAttributeTag</tagclass>
<bodycontent>JSP</bodycontent>
- <info>Sets the value of an application attribute to the content in the body of
the tag.</info>
+ <info>Sets the value of an application attribute to the content in the body of
the tag.</info>
<attribute>
- <name>name</name>
- <required>true</required>
+ <name>name</name>
+ <required>true</required>
<rtexprvalue>false</rtexprvalue>
</attribute>
<attribute>
@@ -203,7 +176,7 @@
<required>false</required>
<rtexprvalue>false</rtexprvalue>
</attribute>
- </tag>
+ </tag>
<tag>
<name>removeAttribute</name>
@@ -220,7 +193,7 @@
<required>false</required>
<rtexprvalue>false</rtexprvalue>
</attribute>
- </tag>
+ </tag>
<tag>
<name>parameter</name>