jon         01/08/23 09:28:38

  Modified:    xdocs/stylesheets site.vsl site_printable.vsl
  Log:
  patches from Attila Szegedi <[EMAIL PROTECTED]> to convert to the "new"
  anakia way of doing things.
  
  Revision  Changes    Path
  1.22      +4 -4      jakarta-site2/xdocs/stylesheets/site.vsl
  
  Index: site.vsl
  ===================================================================
  RCS file: /home/cvs/jakarta-site2/xdocs/stylesheets/site.vsl,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- site.vsl  2001/07/26 23:05:33     1.21
  +++ site.vsl  2001/08/23 16:28:38     1.22
  @@ -51,7 +51,7 @@
   <td bgcolor="$tabletdbg" colspan="$!colspan" rowspan="$!rowspan" valign="top" 
align="left">
       <font color="#000000" size="-1" face="arial,helvetica,sanserif">
           #if ($value.getText().length() != 0 || $value.hasChildren())
  -        $xmlout.outputString($value, true)
  +        $value.getContent()
           #else
           &nbsp;
           #end
  @@ -69,7 +69,7 @@
   <td bgcolor="$tablethbg" colspan="$!colspan" rowspan="$!rowspan" valign="top" 
align="left">
       <font color="#000000" size="-1" face="arial,helvetica,sanserif">
           #if ($value.getText().length() != 0 || $value.hasChildren())
  -        $xmlout.outputString($value, true)
  +        $value.getContent()
           #else
           &nbsp;
           #end
  @@ -144,7 +144,7 @@
               #elseif ($items.getName().equals("table"))
                   #table ($items)
               #else
  -                $xmlout.outputString($items)
  +                $items
               #end
           #end
           </blockquote>
  @@ -172,7 +172,7 @@
               #elseif ($items.getName().equals("subsection"))
                   #subsection ($items)
               #else
  -                $xmlout.outputString($items)
  +                $items
               #end
           #end
           </blockquote>
  
  
  
  1.2       +4 -4      jakarta-site2/xdocs/stylesheets/site_printable.vsl
  
  Index: site_printable.vsl
  ===================================================================
  RCS file: /home/cvs/jakarta-site2/xdocs/stylesheets/site_printable.vsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- site_printable.vsl        2001/07/10 22:39:37     1.1
  +++ site_printable.vsl        2001/08/23 16:28:38     1.2
  @@ -51,7 +51,7 @@
   <td bgcolor="$tabletdbg" colspan="$!colspan" rowspan="$!rowspan" valign="top" 
align="left">
       <font color="#000000" size="-1" face="arial,helvetica,sanserif">
           #if ($value.getText().length() != 0 || $value.hasChildren())
  -        $xmlout.outputString($value, true)
  +        $value.getContent()
           #else
           &nbsp;
           #end
  @@ -69,7 +69,7 @@
   <td bgcolor="$tablethbg" colspan="$!colspan" rowspan="$!rowspan" valign="top" 
align="left">
       <font color="#000000" size="-1" face="arial,helvetica,sanserif">
           #if ($value.getText().length() != 0 || $value.hasChildren())
  -        $xmlout.outputString($value, true)
  +        $value.getContent()
           #else
           &nbsp;
           #end
  @@ -129,7 +129,7 @@
               #elseif ($items.getName().equals("table"))
                   #table ($items)
               #else
  -                $xmlout.outputString($items)
  +                $items
               #end
           #end
           </blockquote>
  @@ -158,7 +158,7 @@
               #elseif ($items.getName().equals("subsection"))
                   #subsection ($items)
               #else
  -                $xmlout.outputString($items)
  +                $items
               #end
           #end
           <!--</blockquote>-->
  
  
  

Reply via email to