dion        2002/11/20 21:59:52

  Modified:    src/plugins-build/xdoc site.jelly
  Log:
  Fix bad xml :(
  
  Revision  Changes    Path
  1.6       +8 -4      jakarta-turbine-maven/src/plugins-build/xdoc/site.jelly
  
  Index: site.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/xdoc/site.jelly,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- site.jelly        21 Nov 2002 00:20:41 -0000      1.5
  +++ site.jelly        21 Nov 2002 05:59:52 -0000      1.6
  @@ -36,11 +36,15 @@
         
         <!-- Alternator for row style in a table -->
         <define:tag name="printRow">
  -        <j:if test="${(count % 2) gt 0}"
  -          <tr class="a"> 
  +        <j:if test="${(count % 2) gt 0}">
  +          <x:element name="tr">
  +            <x:attribute name="class">a</x:attribute>
  +          </x:element>
           </j:if>
  -        <j:if test="${(count % 2) le 0}"
  -          <tr class="b">
  +        <j:if test="${(count % 2) le 0}">
  +          <x:element name="tr">
  +            <x:attribute name="class">b</x:attribute>
  +          </x:element>
           </j:if>
         </define:tag>
   
  
  
  

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

Reply via email to