You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by jo...@locus.apache.org on 2000/08/26 21:39:13 UTC

cvs commit: jakarta-velocity/xdocs script-elements.xml site-book.xml

jon         00/08/26 12:39:13

  Modified:    xdocs    site-book.xml
  Added:       xdocs    script-elements.xml
  Log:
  not yet complete by any means, but it is an itial start. need to continue
  to add examples and full explanations of the script elements.
  
  Revision  Changes    Path
  1.3       +14 -13    jakarta-velocity/xdocs/site-book.xml
  
  Index: site-book.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/xdocs/site-book.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- site-book.xml	2000/08/25 05:31:54	1.2
  +++ site-book.xml	2000/08/26 19:39:12	1.3
  @@ -1,13 +1,14 @@
  -<?xml version="1.0"?>
  -
  -<book title="Velocity Documentation" copyright="2000 The Apache Software Foundation">
  -
  -<separator/>
  -    <page id="index" label="Overview" source="index.xml"/>
  -    <page id="getting-started" label="Getting Started" source="getting-started.xml"/>
  -    <page id="install" label="Install" source="install.xml"/>
  -    <page id="design" label="Design" source="design.xml"/>
  -    <page id="contributors" label="Contributors" source="contributors.xml"/>
  -    <page id="code-standards" label="Coding Standards" source="code-standards.xml"/>
  -    <page id="license" label="License" source="license.xml"/>
  -</book>
  +<?xml version="1.0"?>
  +
  +<book title="Velocity Documentation" copyright="2000 The Apache Software Foundation">
  +
  +<separator/>
  +    <page id="index" label="Overview" source="index.xml"/>
  +    <page id="getting-started" label="Getting Started" source="getting-started.xml"/>
  +    <page id="install" label="Install" source="install.xml"/>
  +    <page id="design" label="Design" source="design.xml"/>
  +    <page id="script-elements" label="Script Elements" source="script-elements.xml"/>
  +    <page id="contributors" label="Contributors" source="contributors.xml"/>
  +    <page id="code-standards" label="Coding Standards" source="code-standards.xml"/>
  +    <page id="license" label="License" source="license.xml"/>
  +</book>
  
  
  
  1.1                  jakarta-velocity/xdocs/script-elements.xml
  
  Index: script-elements.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <document>
  
   <header>
    <title>Velocity Script Elements</title>
    <subtitle>Velocity Script Elements</subtitle>
    <authors>
     <person name="Velocity Documentation Team" email="jon@latchkey.com"/>
    </authors>
   </header>
  
   <body>
  
   <s1 title="Script Elements">
      <p>
      There are several different types of Script Elements within Velocity. The 
      overall purpose of these elements is described in the <link 
      href="design.html">Design Document</link>. The following elements are currently
      defined within Velocity and also explained in detail below.
      </p>    
      <ul>
          <li>Variables</li>
          <li>Conditionals:
              <ul>
                  <li>If Statement</li>
                  <li>Foreach Statement</li>
                  <li>While Statement (Not Yet Implemented)</li>
              </ul>
          </li>
          <li>Parse</li>
          <li>Include</li>
          <li>Param</li>
          <li>Set</li>
          <li>Comment</li>
          <li>Stop</li>
      </ul>
   </s1>
  
  
   </body>
   </document>