You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by nb...@apache.org on 2004/11/10 21:52:32 UTC

cvs commit: jakarta-velocity-tools/docs/view CookieTool.html ParameterParser.html

nbubna      2004/11/10 12:52:32

  Modified:    docs/struts ActionMessagesTool.html ErrorsTool.html
                        userguide.html
               docs/view CookieTool.html ParameterParser.html
  Log:
  update to reflect changes to xdocs and site.dvsl
  
  Revision  Changes    Path
  1.2       +3 -3      jakarta-velocity-tools/docs/struts/ActionMessagesTool.html
  
  Index: ActionMessagesTool.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity-tools/docs/struts/ActionMessagesTool.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ActionMessagesTool.html	21 Feb 2004 18:31:23 -0000	1.1
  +++ ActionMessagesTool.html	10 Nov 2004 20:52:31 -0000	1.2
  @@ -139,8 +139,8 @@
               <a href="#exist()">exist()</a></td>
             <td bgcolor="EEEEEE">
               
  -            	Returns  if there are action messages queued,
  -     		otherwise .
  +            	Returns <code>true</code> if there are action messages queued,
  +     		otherwise <code>false</code>.
               
             </td>
           </tr>
  @@ -159,7 +159,7 @@
             <td bgcolor="EEEEEE">
               
                   This a convenience method and the equivalent of
  -                
  +                <code>$messages.get($messages.globalName)</code>
               
             </td>
           </tr>
  
  
  
  1.5       +3 -3      jakarta-velocity-tools/docs/struts/ErrorsTool.html
  
  Index: ErrorsTool.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity-tools/docs/struts/ErrorsTool.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ErrorsTool.html	21 Feb 2004 18:31:23 -0000	1.4
  +++ ErrorsTool.html	10 Nov 2004 20:52:31 -0000	1.5
  @@ -143,7 +143,7 @@
               <a href="#exist()">exist()</a></td>
             <td bgcolor="EEEEEE">
               
  -                Returns  if there are errors queued, otherwise .
  +                Returns <code>true</code> if there are errors queued, otherwise <code>false</code>.
               
             </td>
           </tr>
  @@ -162,7 +162,7 @@
             <td bgcolor="EEEEEE">
               
                   This a convenience method and the equivalent of
  -                
  +                <code>$errors.get($errors.globalName)</code>
               
             </td>
           </tr>
  @@ -462,7 +462,7 @@
   <table width="100%" cellpadding="1" cellspacing="0" border="0"><tr><td bgcolor="#000000">
     <table width="100%" cellpadding="5" cellspacing="0" border="0"><tr><td bgcolor="#FFFFFF">
       <pre><sourcecode>#macro (errorMarkup)
  -    #if ($errors.exist)
  +    #if ($errors.exist())
           &lt;ul&gt;
           #foreach ($e in $errors.all )
               &lt;li&gt;$e&lt;/li&gt;
  
  
  
  1.6       +1 -1      jakarta-velocity-tools/docs/struts/userguide.html
  
  Index: userguide.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity-tools/docs/struts/userguide.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- userguide.html	21 Jul 2004 17:16:10 -0000	1.5
  +++ userguide.html	10 Nov 2004 20:52:31 -0000	1.6
  @@ -358,7 +358,7 @@
   &lt;BODY&gt;
       &lt;h2&gt;Order Confirmation&lt;/h2&gt;
   
  -    &lt;h3&gt;Delivery Adress:&lt;/h3&gt;&lt;br&gt;
  +    &lt;h3&gt;Delivery Address:&lt;/h3&gt;&lt;br&gt;
       Name: Peter Pan&lt;br&gt;
       Street: Crain St. 10&lt;br&gt;
       City: 60201 Evanston IL
  
  
  
  1.2       +4 -4      jakarta-velocity-tools/docs/view/CookieTool.html
  
  Index: CookieTool.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity-tools/docs/view/CookieTool.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- CookieTool.html	21 Feb 2004 18:31:24 -0000	1.1
  +++ CookieTool.html	10 Nov 2004 20:52:32 -0000	1.2
  @@ -121,7 +121,7 @@
               <a href="#getAll()">getAll()</a></td>
             <td bgcolor="EEEEEE">
               
  -                Expose array of  objects for this request to the
  +                Expose array of <code>Cookie</code> objects for this request to the
                   template.
               
             </td>
  @@ -131,7 +131,7 @@
               <a href="#get()">get()</a></td>
             <td bgcolor="EEEEEE">
               
  -                Returns the  with the specified name, if it exists.
  +                Returns the <code>Cookie</code> with the specified name, if it exists.
               
             </td>
           </tr>
  @@ -140,8 +140,8 @@
               <a href="#add()">add()</a></td>
             <td bgcolor="EEEEEE">
               
  -                Adds a new  with the specified name and value to the
  -                .
  +                Adds a new <code>Cookie</code> with the specified name and value to the
  +                <code>HttpServletResponse</code>.
               
             </td>
           </tr>
  
  
  
  1.5       +1 -1      jakarta-velocity-tools/docs/view/ParameterParser.html
  
  Index: ParameterParser.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity-tools/docs/view/ParameterParser.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ParameterParser.html	21 Feb 2004 18:31:24 -0000	1.4
  +++ ParameterParser.html	10 Nov 2004 20:52:32 -0000	1.5
  @@ -121,7 +121,7 @@
               <a href="#exists()">exists()</a></td>
             <td bgcolor="EEEEEE">
               
  -                Returns  if a parameter for the specified key exists.
  +                Returns <code>true</code> if a parameter for the specified key exists.
               
             </td>
           </tr>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: velocity-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: velocity-dev-help@jakarta.apache.org