You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by ge...@apache.org on 2002/03/23 15:27:51 UTC

cvs commit: jakarta-velocity/xdocs differences.xml changes.xml powered.xml

geirm       02/03/23 06:27:50

  Modified:    docs     differences.html changes.html powered.html
               xdocs    differences.xml changes.xml powered.xml
  Log:
  update
  
  Revision  Changes    Path
  1.26      +12 -6     jakarta-velocity/docs/differences.html
  
  Index: differences.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/differences.html,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- differences.html	27 Jan 2002 22:27:54 -0000	1.25
  +++ differences.html	23 Mar 2002 14:27:50 -0000	1.26
  @@ -16,6 +16,8 @@
                                           <meta name="author" value="Velocity Documentation Team">
               <meta name="email" value="geirm@optonline.net">
               
  +           
  +                                    
               <title>Velocity - Differences: Velocity vs. WebMacro</title>
           </head>
   
  @@ -254,12 +256,10 @@
   as snippets of re-usable data that can contain anything. They are parsed
   just like the data in a #parse() statement would be and you can pass in
   variables that can optionally have scope only within the Velocimacro.
  - </p>
  -                                                <p>
  -Velocimacro's are also helping keep the core #directive set small and
  -clean. In other words, WebMacro is adding #directives to the core at an
  -increasing rate and we are not. We would rather support optional
  -downloads for that "extra" funtionality that can be shared.
  +Velocimacro's help keep the core #directive set small and
  +clean : you can extend the designers toolkit with libraries of Velocimacros
  +rather than adding elements to the syntax or having two write tools that generate
  +HTML (or other specific) markup.
   </p>
                                                   <p>
   We hope this helps.  The best way to understand Velocity is to use it,
  @@ -286,6 +286,12 @@
           </body>
       </html>
   <!-- end the processing -->
  +
  +
  +
  +
  +
  +
   
   
   
  
  
  
  1.84      +14 -0     jakarta-velocity/docs/changes.html
  
  Index: changes.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/changes.html,v
  retrieving revision 1.83
  retrieving revision 1.84
  diff -u -r1.83 -r1.84
  --- changes.html	17 Mar 2002 23:37:48 -0000	1.83
  +++ changes.html	23 Mar 2002 14:27:50 -0000	1.84
  @@ -150,6 +150,20 @@
   This section describes changes to the main branch after the
   1.3 release.
   </p>
  +                                                <ul>
  +<li>
  +Fix to MethodMap part of introspector to make the overloaded
  +method selection work as specified in the JLS, from Attila
  +Szegedi. (gmj)
  +</li>
  +<li>
  +Tiny fix for bug where multiple slashes not getting rendered correctly. (#7380)
  +(gmj)
  +</li>
  +<li>
  +Fix for bug where #set($foo = !true) not working. (#7387) (gmj)
  +</li>
  +</ul>
                               </blockquote>
         </td></tr>
         <tr><td><br/></td></tr>
  
  
  
  1.44      +1 -2      jakarta-velocity/docs/powered.html
  
  Index: powered.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/powered.html,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- powered.html	15 Mar 2002 04:41:09 -0000	1.43
  +++ powered.html	23 Mar 2002 14:27:50 -0000	1.44
  @@ -1002,8 +1002,7 @@
       WebWork is a web application framework for J2EE. It is based on a
       concept called "Pull HMVC" (Pull Hierarchical Model View Controller).
       The basic idea is to separate the site programmers' and site designers'
  -    tasks.  WebWork now supports Velocity with their 1.0 release (currently
  -    in Release Candidate 1).
  +    tasks.  WebWork now supports Velocity with their 1.0 release.
       
               </font>
   </td>
  
  
  
  1.3       +4 -7      jakarta-velocity/xdocs/differences.xml
  
  Index: differences.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/xdocs/differences.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- differences.xml	26 Feb 2001 06:38:54 -0000	1.2
  +++ differences.xml	23 Mar 2002 14:27:50 -0000	1.3
  @@ -130,13 +130,10 @@
   as snippets of re-usable data that can contain anything. They are parsed
   just like the data in a #parse() statement would be and you can pass in
   variables that can optionally have scope only within the Velocimacro.
  - </p>
  -
  -<p>
  -Velocimacro's are also helping keep the core #directive set small and
  -clean. In other words, WebMacro is adding #directives to the core at an
  -increasing rate and we are not. We would rather support optional
  -downloads for that "extra" funtionality that can be shared.
  +Velocimacro's help keep the core #directive set small and
  +clean : you can extend the designers toolkit with libraries of Velocimacros
  +rather than adding elements to the syntax or having two write tools that generate
  +HTML (or other specific) markup.
   </p>
   
    <p>
  
  
  
  1.76      +16 -0     jakarta-velocity/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/xdocs/changes.xml,v
  retrieving revision 1.75
  retrieving revision 1.76
  diff -u -r1.75 -r1.76
  --- changes.xml	17 Mar 2002 23:37:48 -0000	1.75
  +++ changes.xml	23 Mar 2002 14:27:50 -0000	1.76
  @@ -21,6 +21,22 @@
   1.3 release.
   </p>
   
  +<ul>
  +<li>
  +Fix to MethodMap part of introspector to make the overloaded
  +method selection work as specified in the JLS, from Attila
  +Szegedi. (gmj)
  +</li>
  +<li>
  +Tiny fix for bug where multiple slashes not getting rendered correctly. (#7380)
  +(gmj)
  +</li>
  +<li>
  +Fix for bug where #set($foo = !true) not working. (#7387) (gmj)
  +</li>
  +</ul>
  +
  +
   </subsection>
   
   <subsection name="1.3-rc1">
  
  
  
  1.35      +1 -2      jakarta-velocity/xdocs/powered.xml
  
  Index: powered.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/xdocs/powered.xml,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- powered.xml	15 Mar 2002 04:41:09 -0000	1.34
  +++ powered.xml	23 Mar 2002 14:27:50 -0000	1.35
  @@ -520,8 +520,7 @@
       WebWork is a web application framework for J2EE. It is based on a
       concept called "Pull HMVC" (Pull Hierarchical Model View Controller).
       The basic idea is to separate the site programmers' and site designers'
  -    tasks.  WebWork now supports Velocity with their 1.0 release (currently
  -    in Release Candidate 1).
  +    tasks.  WebWork now supports Velocity with their 1.0 release.
       </td>
      </tr>
   
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>