cmlenz      02/03/20 08:03:27

  Modified:    src/doc  jstl-taglib.xml struts-taglib.xml
  Log:
  Document the <slide:content> tag
  
  Revision  Changes    Path
  1.2       +47 -0     jakarta-slide/src/doc/jstl-taglib.xml
  
  Index: jstl-taglib.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/doc/jstl-taglib.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- jstl-taglib.xml   19 Mar 2002 17:25:18 -0000      1.1
  +++ jstl-taglib.xml   20 Mar 2002 16:03:27 -0000      1.2
  @@ -335,6 +335,53 @@
         </tag>
         
         <tag>
  +        <name>content</name>
  +        <summary>
  +          Retrieve the content of a node.
  +        </summary>
  +        <tagclass>
  +          org.apache.slide.taglib.tag.jstl.ContentTag
  +        </tagclass>
  +        <bodycontent>JSP</bodycontent>
  +        <info>
  +          <p>
  +            Using the content tag, you have access to the actual content of 
  +            a node (or a particular revision of a node). 
  +          </p>
  +          <p>
  +            If you provide the 'var' attribute, the content will be exposed as 
  +            a <code>String</code> in the page context. Alternatively, you can 
  +            specify the 'varReader' attribute, so that the content is made 
  +            available as a <code>java.io.Reader</code> object. If none of these
  +            two are specified, the content will be printed to the output 
  +            stream.
  +          </p>
  +        </info>
  +        <attribute>
  +          <name>var</name>
  +          <required>false</required>
  +          <rtexprvalue>false</rtexprvalue>
  +          <info>
  +            <p>
  +              Specifies the name of the page scope attribute under which the 
  +              content will be made available as String.
  +            </p>
  +          </info>
  +        </attribute>
  +        <attribute>
  +          <name>varReader</name>
  +          <required>false</required>
  +          <rtexprvalue>false</rtexprvalue>
  +          <info>
  +            <p>
  +              Specifies the name of the page scope attribute under which the 
  +              content will be made available as <code>java.io.Reader</code>.
  +            </p>
  +          </info>
  +        </attribute>
  +      </tag>
  +      
  +      <tag>
           <name>property</name>
           <summary>
             Expose a property of a node as bean.
  
  
  
  1.7       +47 -0     jakarta-slide/src/doc/struts-taglib.xml
  
  Index: struts-taglib.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/doc/struts-taglib.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- struts-taglib.xml 19 Mar 2002 17:25:18 -0000      1.6
  +++ struts-taglib.xml 20 Mar 2002 16:03:27 -0000      1.7
  @@ -350,6 +350,53 @@
         </tag>
         
         <tag>
  +        <name>content</name>
  +        <summary>
  +          Retrieve the content of a node.
  +        </summary>
  +        <tagclass>
  +          org.apache.slide.taglib.tag.struts.ContentTag
  +        </tagclass>
  +        <bodycontent>JSP</bodycontent>
  +        <info>
  +          <p>
  +            Using the content tag, you have access to the actual content of 
  +            a node (or a particular revision of a node). 
  +          </p>
  +          <p>
  +            If you provide the 'id' attribute, the content will be exposed as 
  +            a <code>String</code> in the page context. Alternatively, you can 
  +            specify the 'idReader' attribute, so that the content is made 
  +            available as a <code>java.io.Reader</code> object. If none of these
  +            two are specified, the content will be printed to the output 
  +            stream.
  +          </p>
  +        </info>
  +        <attribute>
  +          <name>id</name>
  +          <required>false</required>
  +          <rtexprvalue>false</rtexprvalue>
  +          <info>
  +            <p>
  +              Specifies the name of the page scope attribute under which the 
  +              content will be made available as String.
  +            </p>
  +          </info>
  +        </attribute>
  +        <attribute>
  +          <name>idReader</name>
  +          <required>false</required>
  +          <rtexprvalue>false</rtexprvalue>
  +          <info>
  +            <p>
  +              Specifies the name of the page scope attribute under which the 
  +              content will be made available as <code>java.io.Reader</code>.
  +            </p>
  +          </info>
  +        </attribute>
  +      </tag>
  +      
  +      <tag>
           <name>property</name>
           <summary>
             Expose a property of a node as bean.
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to