geirm       2003/10/08 04:50:04

  Modified:    docs     anakia.html casestudy1.html casestudy2.html
                        changes.html code-standards.html contributors.html
                        design.html developer-guide.html devtools.html
                        differences.html getting-started.html index.html
                        install.html license.html migration.html
                        newshistory.html powered.html
                        specification-ast.html specification-bnf.html
                        specification.html texen.html todo.html
                        toolsubproject.html user-guide.html
                        user-guide_es.html user-guide_fi.html
                        user-guide_fr.html velocity_and_weblogic.html
                        veltag.html vtl-reference-guide.html
               docs/ymtd ymtd-changes.html ymtd-conclusion.html
                        ymtd-embedded.html ymtd-error-handling.html
                        ymtd-generation.html ymtd-hosting.html
                        ymtd-implementation.html ymtd-javabeans.html
                        ymtd-sampleapp.html ymtd-saying-hello.html
                        ymtd-taglibs.html ymtd.html
  Log:
  update to get ApacheCon logo on site
  
  Revision  Changes    Path
  1.42      +6 -1      jakarta-velocity/docs/anakia.html
  
  Index: anakia.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/anakia.html,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- anakia.html       17 Jul 2003 03:12:34 -0000      1.41
  +++ anakia.html       8 Oct 2003 11:50:02 -0000       1.42
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.18      +6 -1      jakarta-velocity/docs/casestudy1.html
  
  Index: casestudy1.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/casestudy1.html,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- casestudy1.html   17 Jul 2003 03:12:34 -0000      1.17
  +++ casestudy1.html   8 Oct 2003 11:50:02 -0000       1.18
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.14      +6 -1      jakarta-velocity/docs/casestudy2.html
  
  Index: casestudy2.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/casestudy2.html,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- casestudy2.html   17 Jul 2003 03:12:34 -0000      1.13
  +++ casestudy2.html   8 Oct 2003 11:50:02 -0000       1.14
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.98      +6 -14     jakarta-velocity/docs/changes.html
  
  Index: changes.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/changes.html,v
  retrieving revision 1.97
  retrieving revision 1.98
  diff -u -r1.97 -r1.98
  --- changes.html      31 Aug 2003 18:45:23 -0000      1.97
  +++ changes.html      8 Oct 2003 11:50:02 -0000       1.98
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  @@ -157,19 +162,6 @@
   1.3 release.
   </p>
                                                   <ul>
  -<li>
  -Added support for dynamic selection of output character encoding to
  -VelocityServlet.  By default, the selected encoding is the value of
  -the output.encoding Velocity property, but can be made dynamic by
  -overriding the new chooseCharacterEncoding() method. (dlr)
  -</li>
  -<li>
  -Bill Boland pointed out that VelocityServlet's pooling of
  -VelocityWriter was preventing the underlying OutputStreamWriter from
  -being garbage collected.  This was fixed by clearing the
  -VelocityWriter's reference to its internal OutputStreamWriter to allow
  -the latter to be GC'd while VelocityWriter is pooled. (#18951)
  -</li>
   <li>
   Deprecated org.apache.velocity.runtime.Runtime in favor of the
   RuntimeInstance and RuntimeSingleton classes. (dlr)
  
  
  
  1.47      +6 -1      jakarta-velocity/docs/code-standards.html
  
  Index: code-standards.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/code-standards.html,v
  retrieving revision 1.46
  retrieving revision 1.47
  diff -u -r1.46 -r1.47
  --- code-standards.html       17 Jul 2003 03:12:34 -0000      1.46
  +++ code-standards.html       8 Oct 2003 11:50:02 -0000       1.47
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.49      +6 -1      jakarta-velocity/docs/contributors.html
  
  Index: contributors.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/contributors.html,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -u -r1.48 -r1.49
  --- contributors.html 17 Jul 2003 03:12:34 -0000      1.48
  +++ contributors.html 8 Oct 2003 11:50:02 -0000       1.49
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.45      +6 -1      jakarta-velocity/docs/design.html
  
  Index: design.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/design.html,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -r1.44 -r1.45
  --- design.html       17 Jul 2003 03:12:34 -0000      1.44
  +++ design.html       8 Oct 2003 11:50:02 -0000       1.45
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.101     +6 -1      jakarta-velocity/docs/developer-guide.html
  
  Index: developer-guide.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/developer-guide.html,v
  retrieving revision 1.100
  retrieving revision 1.101
  diff -u -r1.100 -r1.101
  --- developer-guide.html      17 Jul 2003 03:12:34 -0000      1.100
  +++ developer-guide.html      8 Oct 2003 11:50:02 -0000       1.101
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.21      +6 -1      jakarta-velocity/docs/devtools.html
  
  Index: devtools.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/devtools.html,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- devtools.html     17 Jul 2003 03:12:34 -0000      1.20
  +++ devtools.html     8 Oct 2003 11:50:02 -0000       1.21
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.32      +6 -1      jakarta-velocity/docs/differences.html
  
  Index: differences.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/differences.html,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- differences.html  17 Jul 2003 03:12:34 -0000      1.31
  +++ differences.html  8 Oct 2003 11:50:02 -0000       1.32
  @@ -43,7 +43,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.51      +6 -1      jakarta-velocity/docs/getting-started.html
  
  Index: getting-started.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/getting-started.html,v
  retrieving revision 1.50
  retrieving revision 1.51
  diff -u -r1.50 -r1.51
  --- getting-started.html      17 Jul 2003 03:12:34 -0000      1.50
  +++ getting-started.html      8 Oct 2003 11:50:02 -0000       1.51
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.90      +16 -1     jakarta-velocity/docs/index.html
  
  Index: index.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/index.html,v
  retrieving revision 1.89
  retrieving revision 1.90
  diff -u -r1.89 -r1.90
  --- index.html        17 Jul 2003 03:12:34 -0000      1.89
  +++ index.html        8 Oct 2003 11:50:02 -0000       1.90
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  @@ -168,6 +173,16 @@
         <tr><td>
           <blockquote>
                                       <p>
  +<strong>Cotsec Forms Uses Velocity</strong>
  +<blockquote>
  +<a href="http://www.cotsec.com/";>Cotsec</a> has released a
  +cross-language/cross-platform rapid development
  +environment called Cotsec Forms that uses Velocity as it's underlying
  +template engine.
  +(<i>2003-08-23</i>)
  +</blockquote>
  +</p>
  +                                                <p>
   <strong>Velocity Tools 1.0</strong>
   <blockquote>
   The first release of the <a href="tools/index.html">Velocity Tools</a> subproject 
is 
  
  
  
  1.52      +6 -1      jakarta-velocity/docs/install.html
  
  Index: install.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/install.html,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -r1.51 -r1.52
  --- install.html      17 Jul 2003 03:12:34 -0000      1.51
  +++ install.html      8 Oct 2003 11:50:02 -0000       1.52
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.47      +6 -1      jakarta-velocity/docs/license.html
  
  Index: license.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/license.html,v
  retrieving revision 1.46
  retrieving revision 1.47
  diff -u -r1.46 -r1.47
  --- license.html      17 Jul 2003 03:12:34 -0000      1.46
  +++ license.html      8 Oct 2003 11:50:02 -0000       1.47
  @@ -42,7 +42,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.42      +6 -1      jakarta-velocity/docs/migration.html
  
  Index: migration.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/migration.html,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- migration.html    17 Jul 2003 03:12:34 -0000      1.41
  +++ migration.html    8 Oct 2003 11:50:02 -0000       1.42
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.7       +6 -1      jakarta-velocity/docs/newshistory.html
  
  Index: newshistory.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/newshistory.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- newshistory.html  17 Jul 2003 03:12:34 -0000      1.6
  +++ newshistory.html  8 Oct 2003 11:50:02 -0000       1.7
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.53      +22 -1     jakarta-velocity/docs/powered.html
  
  Index: powered.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/powered.html,v
  retrieving revision 1.52
  retrieving revision 1.53
  diff -u -r1.52 -r1.53
  --- powered.html      17 Jul 2003 03:12:34 -0000      1.52
  +++ powered.html      8 Oct 2003 11:50:02 -0000       1.53
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  @@ -570,6 +575,22 @@
        unstructured data. Spectacle uses Velocity templates for the rendering of 
        information objects in HTML, XML or other formats.
       
  +            </font>
  +</td>
  +            </tr>
  +                                <tr>
  +                        <td bgcolor="#a0ddf0" colspan="" rowspan="" valign="top" 
align="left">
  +    <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  +                
  +       <a href="http://www.cotsec.com/";>Cotsec Forms</a>
  +      
  +            </font>
  +</td>
  +                                <td bgcolor="#a0ddf0" colspan="" rowspan="" 
valign="top" align="left">
  +    <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  +                
  +          Cotsec Forms is a framework for generating Forms based applications
  +      
               </font>
   </td>
               </tr>
  
  
  
  1.26      +6 -1      jakarta-velocity/docs/specification-ast.html
  
  Index: specification-ast.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/specification-ast.html,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- specification-ast.html    17 Jul 2003 03:12:34 -0000      1.25
  +++ specification-ast.html    8 Oct 2003 11:50:02 -0000       1.26
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.26      +6 -1      jakarta-velocity/docs/specification-bnf.html
  
  Index: specification-bnf.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/specification-bnf.html,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- specification-bnf.html    17 Jul 2003 03:12:34 -0000      1.25
  +++ specification-bnf.html    8 Oct 2003 11:50:02 -0000       1.26
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.26      +6 -1      jakarta-velocity/docs/specification.html
  
  Index: specification.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/specification.html,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- specification.html        17 Jul 2003 03:12:34 -0000      1.25
  +++ specification.html        8 Oct 2003 11:50:02 -0000       1.26
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.39      +6 -1      jakarta-velocity/docs/texen.html
  
  Index: texen.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/texen.html,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- texen.html        17 Jul 2003 03:12:34 -0000      1.38
  +++ texen.html        8 Oct 2003 11:50:02 -0000       1.39
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.45      +6 -1      jakarta-velocity/docs/todo.html
  
  Index: todo.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/todo.html,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -r1.44 -r1.45
  --- todo.html 17 Jul 2003 03:12:34 -0000      1.44
  +++ todo.html 8 Oct 2003 11:50:03 -0000       1.45
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.9       +6 -1      jakarta-velocity/docs/toolsubproject.html
  
  Index: toolsubproject.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/toolsubproject.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- toolsubproject.html       17 Jul 2003 03:12:34 -0000      1.8
  +++ toolsubproject.html       8 Oct 2003 11:50:03 -0000       1.9
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.77      +6 -1      jakarta-velocity/docs/user-guide.html
  
  Index: user-guide.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/user-guide.html,v
  retrieving revision 1.76
  retrieving revision 1.77
  diff -u -r1.76 -r1.77
  --- user-guide.html   17 Jul 2003 03:12:34 -0000      1.76
  +++ user-guide.html   8 Oct 2003 11:50:03 -0000       1.77
  @@ -43,7 +43,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.8       +6 -1      jakarta-velocity/docs/user-guide_es.html
  
  Index: user-guide_es.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/user-guide_es.html,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- user-guide_es.html        17 Jul 2003 03:12:35 -0000      1.7
  +++ user-guide_es.html        8 Oct 2003 11:50:03 -0000       1.8
  @@ -45,7 +45,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.9       +6 -1      jakarta-velocity/docs/user-guide_fi.html
  
  Index: user-guide_fi.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/user-guide_fi.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- user-guide_fi.html        17 Jul 2003 03:12:35 -0000      1.8
  +++ user-guide_fi.html        8 Oct 2003 11:50:03 -0000       1.9
  @@ -45,7 +45,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.6       +6 -1      jakarta-velocity/docs/user-guide_fr.html
  
  Index: user-guide_fr.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/user-guide_fr.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- user-guide_fr.html        17 Jul 2003 03:12:35 -0000      1.5
  +++ user-guide_fr.html        8 Oct 2003 11:50:03 -0000       1.6
  @@ -45,7 +45,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.11      +6 -1      jakarta-velocity/docs/velocity_and_weblogic.html
  
  Index: velocity_and_weblogic.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/velocity_and_weblogic.html,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- velocity_and_weblogic.html        17 Jul 2003 03:12:35 -0000      1.10
  +++ velocity_and_weblogic.html        8 Oct 2003 11:50:03 -0000       1.11
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.20      +6 -1      jakarta-velocity/docs/veltag.html
  
  Index: veltag.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/veltag.html,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- veltag.html       17 Jul 2003 03:12:35 -0000      1.19
  +++ veltag.html       8 Oct 2003 11:50:03 -0000       1.20
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  
  
  
  1.57      +8 -3      jakarta-velocity/docs/vtl-reference-guide.html
  
  Index: vtl-reference-guide.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/vtl-reference-guide.html,v
  retrieving revision 1.56
  retrieving revision 1.57
  diff -u -r1.56 -r1.57
  --- vtl-reference-guide.html  5 Oct 2003 21:28:38 -0000       1.56
  +++ vtl-reference-guide.html  8 Oct 2003 11:50:03 -0000       1.57
  @@ -43,7 +43,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="./index.html">Overview</a>
   </li>
  @@ -576,14 +581,14 @@
       Format:
       </p>
                                                   <p>
  -    <strong>#macro(</strong> vmname $arg1 [ $arg2 $arg3 ... $argn ]
  +    <strong>#macro(</strong> vmname $arg1[, $arg2, $arg3, ... $argn ]
       <strong>)</strong> [ VM VTL code... ] <strong>#end</strong>
       </p>
                                                   <ul>
       <li><em>vmname</em> - Name used to call the VM
       (<em>#vmname</em>)</li>
       <li><em>$arg1 $arg2 [ ... ]</em> - Arguments to the VM. There can be
  -    any number of arguments, but the number used at invocation must
  +    any number of argumentss, but the number used at invocation must
       match the number specified in the definition.</li>
       <li><em>[ VM VTL code... ]</em> - Any valid VTL code, anything you
       can put into a template, can be put into a VM.</li>
  
  
  
  1.31      +6 -1      jakarta-velocity/docs/ymtd/ymtd-changes.html
  
  Index: ymtd-changes.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/ymtd/ymtd-changes.html,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- ymtd-changes.html 17 Jul 2003 03:12:37 -0000      1.30
  +++ ymtd-changes.html 8 Oct 2003 11:50:04 -0000       1.31
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="../index.html">Overview</a>
   </li>
  
  
  
  1.30      +6 -1      jakarta-velocity/docs/ymtd/ymtd-conclusion.html
  
  Index: ymtd-conclusion.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/ymtd/ymtd-conclusion.html,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- ymtd-conclusion.html      17 Jul 2003 03:12:37 -0000      1.29
  +++ ymtd-conclusion.html      8 Oct 2003 11:50:04 -0000       1.30
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="../index.html">Overview</a>
   </li>
  
  
  
  1.29      +6 -1      jakarta-velocity/docs/ymtd/ymtd-embedded.html
  
  Index: ymtd-embedded.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/ymtd/ymtd-embedded.html,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- ymtd-embedded.html        17 Jul 2003 03:12:37 -0000      1.28
  +++ ymtd-embedded.html        8 Oct 2003 11:50:04 -0000       1.29
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="../index.html">Overview</a>
   </li>
  
  
  
  1.30      +6 -1      jakarta-velocity/docs/ymtd/ymtd-error-handling.html
  
  Index: ymtd-error-handling.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/ymtd/ymtd-error-handling.html,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- ymtd-error-handling.html  17 Jul 2003 03:12:37 -0000      1.29
  +++ ymtd-error-handling.html  8 Oct 2003 11:50:04 -0000       1.30
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="../index.html">Overview</a>
   </li>
  
  
  
  1.30      +6 -1      jakarta-velocity/docs/ymtd/ymtd-generation.html
  
  Index: ymtd-generation.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/ymtd/ymtd-generation.html,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- ymtd-generation.html      17 Jul 2003 03:12:37 -0000      1.29
  +++ ymtd-generation.html      8 Oct 2003 11:50:04 -0000       1.30
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="../index.html">Overview</a>
   </li>
  
  
  
  1.29      +6 -1      jakarta-velocity/docs/ymtd/ymtd-hosting.html
  
  Index: ymtd-hosting.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/ymtd/ymtd-hosting.html,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- ymtd-hosting.html 17 Jul 2003 03:12:37 -0000      1.28
  +++ ymtd-hosting.html 8 Oct 2003 11:50:04 -0000       1.29
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="../index.html">Overview</a>
   </li>
  
  
  
  1.32      +6 -1      jakarta-velocity/docs/ymtd/ymtd-implementation.html
  
  Index: ymtd-implementation.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/ymtd/ymtd-implementation.html,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- ymtd-implementation.html  17 Jul 2003 03:12:37 -0000      1.31
  +++ ymtd-implementation.html  8 Oct 2003 11:50:04 -0000       1.32
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="../index.html">Overview</a>
   </li>
  
  
  
  1.32      +6 -1      jakarta-velocity/docs/ymtd/ymtd-javabeans.html
  
  Index: ymtd-javabeans.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/ymtd/ymtd-javabeans.html,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- ymtd-javabeans.html       17 Jul 2003 03:12:37 -0000      1.31
  +++ ymtd-javabeans.html       8 Oct 2003 11:50:04 -0000       1.32
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="../index.html">Overview</a>
   </li>
  
  
  
  1.32      +6 -1      jakarta-velocity/docs/ymtd/ymtd-sampleapp.html
  
  Index: ymtd-sampleapp.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/ymtd/ymtd-sampleapp.html,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- ymtd-sampleapp.html       17 Jul 2003 03:12:37 -0000      1.31
  +++ ymtd-sampleapp.html       8 Oct 2003 11:50:04 -0000       1.32
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="../index.html">Overview</a>
   </li>
  
  
  
  1.32      +6 -1      jakarta-velocity/docs/ymtd/ymtd-saying-hello.html
  
  Index: ymtd-saying-hello.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/ymtd/ymtd-saying-hello.html,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- ymtd-saying-hello.html    17 Jul 2003 03:12:37 -0000      1.31
  +++ ymtd-saying-hello.html    8 Oct 2003 11:50:04 -0000       1.32
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="../index.html">Overview</a>
   </li>
  
  
  
  1.32      +6 -1      jakarta-velocity/docs/ymtd/ymtd-taglibs.html
  
  Index: ymtd-taglibs.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/ymtd/ymtd-taglibs.html,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- ymtd-taglibs.html 17 Jul 2003 03:12:37 -0000      1.31
  +++ ymtd-taglibs.html 8 Oct 2003 11:50:04 -0000       1.32
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="../index.html">Overview</a>
   </li>
  
  
  
  1.31      +6 -1      jakarta-velocity/docs/ymtd/ymtd.html
  
  Index: ymtd.html
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/docs/ymtd/ymtd.html,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- ymtd.html 17 Jul 2003 03:12:37 -0000      1.30
  +++ ymtd.html 8 Oct 2003 11:50:04 -0000       1.31
  @@ -41,7 +41,12 @@
                   <tr>
                       <!-- LEFT SIDE NAVIGATION -->
                       <td width="20%" valign="top" nowrap="true">
  -                                <p><strong>About</strong></p>
  +                    
  +    <!-- to be removed after ApacheCon 2003 ends 20th of November 2003 -->
  +    <A HREF="http://apachecon.com/2003/US/index.html";><img border="0" 
src="http://jakarta.apache.org/images/logos/ac2003-150.gif"/></A>
  +    <!-- ============================================================ -->
  +
  +                <p><strong>About</strong></p>
           <ul>
                       <li>    <a href="../index.html">Overview</a>
   </li>
  
  
  

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

Reply via email to