You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by gl...@locus.apache.org on 2000/11/03 13:43:59 UTC

cvs commit: jakarta-taglibs/request/conf request.tld

glenn       00/11/03 04:43:57

  Modified:    request/conf request.tld
  Log:
  Cleanup for release
  
  Revision  Changes    Path
  1.5       +31 -30    jakarta-taglibs/request/conf/request.tld
  
  Index: request.tld
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/request/conf/request.tld,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- request.tld	2000/10/15 18:29:49	1.4
  +++ request.tld	2000/11/03 12:43:56	1.5
  @@ -24,7 +24,8 @@
   
     <!-- General information about this tag library -->
     <info>
  -        A tag library for accessing HttpServletRequest information.
  +    The REQUEST custom tag library contains tags which can be used to
  +    access all the information about the HTTP request for a JSP page.
     </info>
   
     <!-- ******************** Defined Custom Tags *************************** -->
  @@ -33,7 +34,7 @@
       <name>cookie</name>
       <tagclass>org.apache.taglibs.request.CookieTag</tagclass>
       <bodycontent>empty</bodycontent>
  -    <info>Used to get the value of a single request cookie.</info>
  +    <info>Get the value of a single request cookie.</info>
       <attribute>
         <name>name</name>
         <required>true</required>
  @@ -46,7 +47,7 @@
       <tagclass>org.apache.taglibs.request.CookiesTag</tagclass>
       <teiclass>org.apache.taglibs.request.CookiesTEI</teiclass>
       <bodycontent>JSP</bodycontent>
  -    <info>Used to loop through all cookies or get a single cookie.</info>
  +    <info>Loop through all request cookies or get the properties of a single named cookie.</info>
       <attribute>
         <name>id</name>
         <required>true</required>
  @@ -80,7 +81,7 @@
       <name>querystring</name>
       <tagclass>org.apache.taglibs.request.QueryStringTag</tagclass>
       <bodycontent>empty</bodycontent>
  -    <info>Used to get the value of a single querystring parameter.</info>
  +    <info>Get the value of a single querystring parameter.</info>
       <attribute>
         <name>name</name>
         <required>true</required>
  @@ -93,17 +94,12 @@
       <tagclass>org.apache.taglibs.request.QueryStringsTag</tagclass>
       <teiclass>org.apache.taglibs.request.QueryStringsTEI</teiclass>
       <bodycontent>JSP</bodycontent>
  -    <info>Used to loop through all querystring parameters/values or get a single querystring parameter.</info>
  +    <info>Loop through all querystring parameters.</info>
       <attribute>
         <name>id</name> 
         <required>true</required>
         <rtexprvalue>false</rtexprvalue>
       </attribute>
  -    <attribute>
  -      <name>name</name>
  -      <required>false</required>
  -      <rtexprvalue>false</rtexprvalue>
  -    </attribute>
     </tag>
   
     <tag>
  @@ -127,7 +123,7 @@
       <name>header</name> 
       <tagclass>org.apache.taglibs.request.HeaderTag</tagclass>
       <bodycontent>empty</bodycontent>
  -    <info>Used to get the value of a single request header.</info>
  +    <info>Get the value of a single request header.</info>
       <attribute>
         <name>name</name>
         <required>true</required>
  @@ -140,13 +136,13 @@
       <tagclass>org.apache.taglibs.request.HeadersTag</tagclass>
       <teiclass>org.apache.taglibs.request.HeadersTEI</teiclass>
       <bodycontent>JSP</bodycontent>
  -    <info>Used to loop through all headers or get a single header.</info>
  +    <info>Loop through all headers, or get the properties of a single header.</info>
       <attribute>
         <name>id</name>
         <required>true</required>
         <rtexprvalue>false</rtexprvalue>
       </attribute>
  -    <attribute>
  +    <attribute>     
         <name>name</name>
         <required>false</required>
         <rtexprvalue>false</rtexprvalue>
  @@ -158,12 +154,17 @@
       <tagclass>org.apache.taglibs.request.HeaderValuesTag</tagclass>
       <teiclass>org.apache.taglibs.request.HeaderValuesTEI</teiclass>
       <bodycontent>JSP</bodycontent>
  -    <info>Used to get the the name and value of a header.</info>
  +    <info>Loop through all the values for a header which has multiple values.</info>
       <attribute>
         <name>id</name>
         <required>true</required>
         <rtexprvalue>false</rtexprvalue>
       </attribute>
  +    <attribute>
  +      <name>name</name>
  +      <required>false</required>
  +      <rtexprvalue>false</rtexprvalue>
  +    </attribute>
     </tag>
   
     <tag>
  @@ -187,7 +188,7 @@
       <name>issecure</name>
       <tagclass>org.apache.taglibs.request.IsSecureTag</tagclass>
       <bodycontent>JSP</bodycontent>
  -    <info>Used to test whether the HTTP connection is secure (using HTTPS).</info>
  +    <info>Test whether the HTTP connection is secure (using HTTPS).</info>
       <attribute>
         <name>value</name>
         <required>false</required>
  @@ -199,7 +200,7 @@
       <name>issessionfromcookie</name>
       <tagclass>org.apache.taglibs.request.IsSessionFromCookieTag</tagclass>
       <bodycontent>JSP</bodycontent>
  -    <info>Used to test whether the HTTP session was from a cookie.</info>
  +    <info>Test whether the HTTP session was from a cookie.</info>
       <attribute>
         <name>value</name>
         <required>false</required>
  @@ -211,7 +212,7 @@
       <name>issessionfromurl</name>
       <tagclass>org.apache.taglibs.request.IsSessionFromURLTag</tagclass>
       <bodycontent>JSP</bodycontent>
  -    <info>Used to test whether the HTTP connection is secure (using HTTPS).</info>
  +    <info>Test whether the HTTP session was from URL encoding.</info>
       <attribute>
         <name>value</name>
         <required>false</required>
  @@ -223,7 +224,7 @@
       <name>issessionvalid</name>
       <tagclass>org.apache.taglibs.request.IsSessionValidTag</tagclass>
       <bodycontent>JSP</bodycontent>
  -    <info>Used to test whether the HTTP session is valid.</info>
  +    <info>Test whether the HTTP session is valid.</info>
       <attribute>
         <name>value</name>
         <required>false</required>
  @@ -235,7 +236,7 @@
       <name>isuserinrole</name>
       <tagclass>org.apache.taglibs.request.IsUserInRoleTag</tagclass>
       <bodycontent>JSP</bodycontent>
  -    <info>Used to test whether the HTTP connection is secure (using HTTPS).</info>
  +    <info>Test whether the remote user is in a role.</info>
       <attribute>
         <name>role</name>
         <required>yes</required>
  @@ -252,7 +253,7 @@
       <name>parameter</name>
       <tagclass>org.apache.taglibs.request.ParameterTag</tagclass>
       <bodycontent>empty</bodycontent>
  -    <info>Used to output the value of a single parameter.</info>
  +    <info>Output the value of a single parameter.</info>
       <attribute>
         <name>name</name>
         <required>true</required>
  @@ -265,7 +266,7 @@
       <tagclass>org.apache.taglibs.request.ParametersTag</tagclass>
       <teiclass>org.apache.taglibs.request.ParametersTEI</teiclass>
       <bodycontent>JSP</bodycontent>
  -    <info>Used to loop through all parameters or get a single parameter.</info>
  +    <info>Loop through all parameters.</info>
       <attribute>
         <name>id</name>
         <required>true</required>
  @@ -283,12 +284,17 @@
       <tagclass>org.apache.taglibs.request.ParameterValuesTag</tagclass>
       <teiclass>org.apache.taglibs.request.ParameterValuesTEI</teiclass>
       <bodycontent>JSP</bodycontent>
  -    <info>Used to get the name and values of a single parameter.</info>
  +    <info>Get the name and values of a single parameter.</info>
       <attribute>
         <name>id</name>
         <required>true</required>
         <rtexprvalue>false</rtexprvalue>
       </attribute>
  +    <attribute>
  +      <name>name</name>
  +      <required>false</required>
  +      <rtexprvalue>false</rtexprvalue>
  +    </attribute>
     </tag>
   
     <tag>
  @@ -313,7 +319,7 @@
       <tagclass>org.apache.taglibs.request.RequestTag</tagclass>
       <teiclass>org.apache.taglibs.request.RequestTEI</teiclass>
       <bodycontent>empty</bodycontent>
  -    <info>Used to get information about the current request.</info>
  +    <info>Get information about the current request.</info>
       <attribute>
         <name>id</name>
         <required>true</required>
  @@ -325,7 +331,7 @@
       <name>attribute</name>
       <tagclass>org.apache.taglibs.request.AttributeTag</tagclass>
       <bodycontent>empty</bodycontent>
  -    <info>Used to get the value of a single request attribute.</info>
  +    <info>Get the value of a single request attribute.</info>
       <attribute>
         <name>name</name>
         <required>true</required>
  @@ -338,15 +344,10 @@
       <tagclass>org.apache.taglibs.request.AttributesTag</tagclass>
       <teiclass>org.apache.taglibs.request.AttributesTEI</teiclass>
       <bodycontent>JSP</bodycontent>
  -    <info>Used to loop through all request attributes.</info>
  +    <info>Loop through all request attributes.</info>
       <attribute>
         <name>id</name>
         <required>true</required>
  -      <rtexprvalue>false</rtexprvalue>
  -    </attribute>
  -    <attribute>
  -      <name>name</name>
  -      <required>false</required>
         <rtexprvalue>false</rtexprvalue>
       </attribute>
     </tag>