You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by ni...@apache.org on 2002/07/07 11:53:41 UTC

cvs commit: xml-forrest/tools/centipede/targets compile.xtarget dev.xtarget init.xtarget preinit.xtarget robot.xtarget

nicolaken    2002/07/07 02:53:41

  Added:       tools/antipede/resources/stylesheets build.xsl getcent.xsl
                        getcorelibs.xsl layout.xsl log.xsl module.css
                        module.xsl properties.xsl
  Removed:     tools/centipede/lib IzPress.jar jtidy.jar junit-3.7.jar
               tools/centipede/src/java ClassAvailableTask.java
                        IZPressHtmlCompressTask.java JTidyTask.java
               tools/centipede/src/resources Release-Checklist.txt
               tools/centipede/src/resources/stylesheets
                        announcement2readme.xsl announcement2txt.xsl
                        bugzilla2patchqueue.xsl changelog.xsl
                        patchqueue2text4dev.xsl patchqueue2xdocs.xsl
               tools/centipede/targets compile.xtarget dev.xtarget
                        init.xtarget preinit.xtarget robot.xtarget
  Log:
  Updated build system to Centipede 1beta2.
  Just as a reminder: next Centipede version will remove the need to have Ant
  in the project CVS altogether.
  
  Revision  Changes    Path
  1.1                  xml-forrest/tools/antipede/resources/stylesheets/build.xsl
  
  Index: build.xsl
  ===================================================================
  <?xml version="1.0" ?>
  <!-- Create documentation from an ant build file  -->
  <xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
  	<xsl:output method="html"  indent="yes"/>
  	
  	<xsl:template match="project">
  		<html>
  		<body>
  		<h1><xsl:value-of select="./@name"/></h1>
  			<pre><xsl:value-of select="./description"/></pre>
  			<br />
  			<xsl:apply-templates select="target"/>
  		</body>
  		</html>
  	</xsl:template >
  	
  	<xsl:template match="*[ @description | @taskname]">
  	<!-- use taskname if it exists, otherwise use the task element name-->
  		<li><b>
  		<xsl:if test="not(@taskname)">
  				<xsl:value-of select="name()"/>
  		</xsl:if>
  		<xsl:value-of select="@taskname"/></b>
  		<xsl:text> </xsl:text>
  		<xsl:value-of select="@description"/>
  		</li>
  	</xsl:template>
  	
  	<xsl:template match="//target">
  	  
  	  <xsl:if test = "not(starts-with(@name,'-'))">
  	   <p>
  		<b><xsl:value-of select="@name"/></b> - 
  		<xsl:value-of select="@description"/>
  		<ul><xsl:apply-templates select="./*"/></ul>
  		</p>
  	  </xsl:if>
  	</xsl:template>
  		
  	<xsl:template match="*"/>
  	
  </xsl:stylesheet>
  
  
  
  1.1                  xml-forrest/tools/antipede/resources/stylesheets/getcent.xsl
  
  Index: getcent.xsl
  ===================================================================
  <?xml version="1.0"?>
  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  
  	<xsl:template match="/">	
  	 <project default="getcents" basedir="." name="getcents">
        
         <description>		 
           Autogenerated Ant build file that downloads needed cents for the project.
         </description>
        	 
  	   <target name="getcents">
  	     <xsl:attribute name="depends">
  	       <xsl:for-each select = "properties/centipede/tools/cents/*">
  	         <xsl:value-of select="name()"/>-present,
             </xsl:for-each>
  	       <xsl:for-each select = "properties/centipede/tools/cents/*">
  	         <xsl:value-of select="name()"/>-target,
             </xsl:for-each>dummy-target
          </xsl:attribute> 
         </target>	   
  
         <xsl:apply-templates/>
         
  	   <target name="dummy-target">
  	     <echo message="cents fetch finished"/>
         </target> 
                
       </project>  
  	</xsl:template>
  	  	
  
  	<xsl:template match="properties">	
  	
  	<xsl:variable name = "repository" select = "centipede/tools/cents/./@repository" />	 
        
        <xsl:for-each select = "centipede/tools/cents/*">
         
  	   <target>
  	      <xsl:attribute name="name"><xsl:value-of select="name()"/>-target</xsl:attribute>
  	      <xsl:attribute name="unless"><xsl:value-of select="name()"/>.present</xsl:attribute>
  	      <xsl:attribute name="depends"><xsl:value-of select="name()"/>-present</xsl:attribute> 
  	      	      
          <antipede-jjar>
           
           <xsl:attribute name="package"><xsl:value-of select="name()"/>.cent</xsl:attribute> 
           <xsl:attribute name="repository"><xsl:value-of select="$repository"/></xsl:attribute>   
           <xsl:attribute name="localrepository">${cents.dir}</xsl:attribute>    
           <xsl:attribute name="pathrefid">dummy.classpath</xsl:attribute>
           <!--            
           <xsl:attribute name="version"></xsl:attribute> 
           <xsl:attribute name="pathrefid"></xsl:attribute> 
           <xsl:attribute name="classpath"></xsl:attribute> 
           <xsl:attribute name="onlyDependencies"></xsl:attribute> 
           <xsl:attribute name="verifyignore"></xsl:attribute> -->
        
          </antipede-jjar>
         </target>       
        </xsl:for-each>
  
        <xsl:for-each select = "centipede/tools/cents/*">
         
  	   <target>
  	      <xsl:attribute name="name"><xsl:value-of select="name()"/>-present</xsl:attribute>
  	      
            <condition>
  	        <xsl:attribute name="property"><xsl:value-of select="name()"/>.present</xsl:attribute>          
              <or>
               <available>
                <xsl:attribute name="file">${cents.dir}/<xsl:value-of select="name()"/>.cent.jar</xsl:attribute>          
               </available>
               <available type="dir">
                <xsl:attribute name="file">${cents.dir}/<xsl:value-of select="name()"/>.cent</xsl:attribute>          
              </available>
             </or>
            </condition>
  
            <echo><xsl:value-of select="name()"/> cent is present: ${<xsl:value-of select="name()"/>.present}</echo> 
   
         </target>       
        </xsl:for-each>
              	  
  	</xsl:template>
  		
  </xsl:stylesheet>
  
  
  1.1                  xml-forrest/tools/antipede/resources/stylesheets/getcorelibs.xsl
  
  Index: getcorelibs.xsl
  ===================================================================
  <?xml version="1.0"?>
  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  
  	<xsl:template match="/">	
  	 <project default="getcorelibs" basedir="." name="getcorelibs">
        
         <description>		 
           Autogenerated Ant build file that downloads core libs for the project.
         </description>
        	 
  	   <target name="getcorelibs">
  	     <xsl:attribute name="depends">
  	       <xsl:for-each select = "module/project/depend">
  	         <xsl:value-of select="@project"/>-present,
             </xsl:for-each>
  	       <xsl:for-each select = "module/project/depend">
  	         <xsl:value-of select="@project"/>-target,
             </xsl:for-each>dummy-target
          </xsl:attribute> 
         </target>	   
  
         <xsl:apply-templates/>
         
  	   <target name="dummy-target">
  	     <echo message="core libs fetch finished"/>
         </target> 
                
       </project>  
  	</xsl:template>
  	  	
  
  	<xsl:template match="properties">	
  	
  	<xsl:variable name = "repository" select = "@project" />	 
        
        <xsl:for-each select = "module/project/depend">
         
  	   <target>
  	      <xsl:attribute name="name"><xsl:value-of select="@project"/>-target</xsl:attribute>
  	      <xsl:attribute name="unless"><xsl:value-of select="@project"/>.present</xsl:attribute>
  	      <xsl:attribute name="depends"><xsl:value-of select="@project"/>-present</xsl:attribute> 
  	      	      
          <antipede-jjar>
           
           <xsl:attribute name="package"><xsl:value-of select="@project"/></xsl:attribute> 
           <xsl:attribute name="repository"><xsl:value-of select="$repository"/></xsl:attribute>   
           <xsl:attribute name="localrepository">${xlayout.lib.core.dir}</xsl:attribute>    
           <xsl:attribute name="pathrefid">dummy.classpath</xsl:attribute>
           <!--            
           <xsl:attribute name="version"></xsl:attribute> 
           <xsl:attribute name="pathrefid"></xsl:attribute> 
           <xsl:attribute name="classpath"></xsl:attribute> 
           <xsl:attribute name="onlyDependencies"></xsl:attribute> 
           <xsl:attribute name="verifyignore"></xsl:attribute> -->
        
          </antipede-jjar>
         </target>       
        </xsl:for-each>
  
        <xsl:for-each select = "module/project/depend">
         
  	   <target>
  	      <xsl:attribute name="name"><xsl:value-of select="@project"/>-present</xsl:attribute>
  
            <available>
              <xsl:attribute name="file">${cents.dir}/<xsl:value-of select="@project"/>.cent.jar</xsl:attribute>          
  	        <xsl:attribute name="property"><xsl:value-of select="@project"/>.present</xsl:attribute>
            </available>
  
            <echo><xsl:value-of select="@project"/>.jar is present: ${<xsl:value-of select="@project"/>.present}</echo> 
   
         </target>       
        </xsl:for-each>
              	  
  	</xsl:template>
  		
  </xsl:stylesheet>
  
  
  1.1                  xml-forrest/tools/antipede/resources/stylesheets/layout.xsl
  
  Index: layout.xsl
  ===================================================================
  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     
     <xsl:output indent="yes" method="html"/>
  
     <xsl:template match="/">
        <html>
           <head>
             <title>Project properties</title>
             <style><![CDATA[
     <!--
  
  td.block
  {   display:block; 
      text-align: justify; 
      font-weight:plain;
      padding: 0px;
      background-color: #414681; 
      color: #ffffff; 
      margin: 5px 0px 5px 0px; 
      font-size: 12px; 
      font-family: Verdana, Arial, Helvetica, sans-serif
  }
  
  td.comment
  {   display:block; 
      text-align: justify; 
      font-weight:plain;
      font-style:italic;   
      padding: 0px;
      background-color: #cfcdc6; 
      color: #000000; 
      margin: 5px 0px 5px 0px; 
      font-size: 12px; 
      font-family: Verdana, Arial, Helvetica, sans-serif
  }
  
  td.name {display:block; 
        list-style-type:disc;
        text-align: left; 
        font-weight:plain;
        padding: 0px;
        background-color: #FFFFFF; 
        color: #000000; 
        margin: 0px 0px 0px 40px; 
        font-size: 12px; 
        font-family: Verdana, Arial, Helvetica, sans-serif
      }
      
  
  td.value {
      display:block; 
      text-align: left; 
      font-weight:plain;
      padding: 0px;
      background-color: #ffe3a6; 
      color: #000000; 
      margin: 0px 0px 0px 40px; 
      font-size: 12px; 
      font-family: Verdana, Arial, Helvetica, sans-serif
    }
  
  
       //-->]]>
  
             </style>
           </head>
           <body>
             <table><tr><td>
              <xsl:apply-templates/>
             </td></tr></table> 
           </body>
        </html>
     </xsl:template>
  
     <xsl:template match="@*">
     </xsl:template>
  
     <xsl:template match="text()">
        <xsl:value-of select="."/>
     </xsl:template>
  
     <xsl:template match="comment()">
       <table><tr><td class="comment"><pre>
        <xsl:value-of select="."/>
       </pre></td></tr></table>
     </xsl:template>
  
     <xsl:template match="*">
       <table><tr><td class="block">
       <xsl:value-of select="name(.)"/>
       <table>
       <xsl:for-each select="@*">
        <tr>
          <td class="name"><xsl:value-of select="name(.)"/></td>
          <td class="value">=<xsl:value-of select="."/></td>
        </tr>      
       </xsl:for-each>
       </table> 
       </td></tr></table>        
     </xsl:template>
  
     <xsl:template match="*[node()]">
       <table><tr><td class="block">
       <xsl:value-of select="name(.)"/>
       </td></tr></table> 
      
       <table><tr>
       <td width="20px"></td>
       <td class="name">     
       <xsl:apply-templates/>
       </td></tr></table> 
       
     </xsl:template>
  
     <xsl:template match="*[text() and not (comment() or processing-instruction())]">
        <br/><xsl:value-of select="name(.)"/>
        <xsl:apply-templates select="@*"/>
        <xsl:value-of select="."/>
     </xsl:template>
  
     <xsl:template name="nbsp-ref">
        <xsl:text>&#160;</xsl:text>
     </xsl:template>
  
  </xsl:stylesheet>
  
  
  1.1                  xml-forrest/tools/antipede/resources/stylesheets/log.xsl
  
  Index: log.xsl
  ===================================================================
  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:output method="html" indent="yes" encoding="US-ASCII"/>
  <!--
   The Apache Software License, Version 1.1
  
   Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
   reserved.
  
   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions
   are met:
  
   1. Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
  
   2. Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in
      the documentation and/or other materials provided with the
      distribution.
  
   3. The end-user documentation included with the redistribution, if
      any, must include the following acknowlegement:
         "This product includes software developed by the
      Apache Software Foundation (http://www.apache.org/)."
      Alternately, this acknowlegement may appear in the software itself,
      if and wherever such third-party acknowlegements normally appear.
  
   4. The names "The Jakarta Project", "Ant", and "Apache Software
      Foundation" must not be used to endorse or promote products derived
      from this software without prior written permission. For written
      permission, please contact apache@apache.org.
  
   5. Products derived from this software may not be called "Apache"
      nor may "Apache" appear in their names without prior written
      permission of the Apache Group.
  
   THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   SUCH DAMAGE.
   ====================================================================
  
   This software consists of voluntary contributions made by many
   individuals on behalf of the Apache Software Foundation.  For more
   information on the Apache Software Foundation, please see
   <http://www.apache.org/>.
   -->
   
  <!--
  
    The purpose have this XSL is to provide a nice way to look at the output
    from the Ant XmlLogger (ie: ant -listener org.apache.tools.ant.XmlLogger )
    
    @author <a href="mailto:sbailliez@apache.org">Stephane Bailliez</a>
    
  -->
  <xsl:decimal-format decimal-separator="." grouping-separator="," />
  
  <xsl:template match="/">
  <html>
    <head>
      <style type="text/css">
      .bannercell {
        border: 0px;
        padding: 0px;
      }
      body {
        margin: 0;
        font:normal 100% arial,helvetica,sanserif;
        background-color:#FFFFFF;
        color:#000000;
      }
      table.status {
        font:bold 80% arial,helvetica,sanserif;
        background-color:#525D76;
        color:#ffffff;
      }
      table.log tr td, tr th {
        font-size: 80%;
      }
      .error {
        color:red;
      }
      .warn {
        color:brown;
      }
      .info {
        color:gray;
      }
      .debug{
        color:gray;
      }
      .failed {
        font-size:80%;
        background-color: red;
        color:#FFFFFF;
        font-weight: bold
      }
      .complete {
        font-size:80%;
        background-color: #525D76;
        color:#FFFFFF;
        font-weight: bold
      }
      .a td { 
        background: #efefef;
      }
      .b td { 
        background: #fff;
      }
      th, td {
        text-align: left;
        vertical-align: top;
      }
      th {
        background: #ccc;
        color: black;
      }
      table, th, td {
        border: none
      }
      h3 {
        font:bold 80% arial,helvetica,sanserif;
        background: #525D76;
        color: white;
        text-decoration: none;
        padding: 5px;
        margin-right: 2px;
        margin-left: 2px;
        margin-bottom: 0;
      }
      </style>
    </head>
    <body>
      <!-- jakarta logo -->
      <table border="0" cellpadding="0" cellspacing="0" width="100%">
      <tr>
        <td valign="top" class="bannercell">
          <a href="http://jakarta.apache.org/">
          <img src="http://jakarta.apache.org/images/jakarta-logo.gif" alt="http://jakarta.apache.org" align="left" border="0"/>
          </a>
        </td>
        <td style="text-align:right;vertical-align:bottom">
          <a href="htp://jakarta.apache.org/ant">Jakarta Ant</a>
        </td>
      </tr>
      </table>
        
      <table border="0" width="100%">
      <tr><td><hr noshade="yes" size="1"/></td></tr>
      </table>
  
      <xsl:apply-templates select="build"/>
  
      <!-- FOOTER -->
      <table width="100%">
        <tr><td><hr noshade="yes" size="1"/></td></tr>
        <tr><td>
        <div align="center"><font color="#525D76" size="-1"><em>
        Copyright &#169; 2000-2002, Apache Software Foundation
        </em></font></div>
        </td></tr>
      </table>
    </body>
  </html>
  </xsl:template>
  
  <xsl:template match="build">
    <!-- build status -->
    <table width="100%">
      <xsl:attribute name="class">
        <xsl:if test="@error">failed</xsl:if>
        <xsl:if test="not(@error)">complete</xsl:if>
      </xsl:attribute>
      <tr>
        <xsl:if test="@error">
          <td nowrap="yes">Build Failed</td> 
        </xsl:if>
        <xsl:if test="not(@error)">
          <td nowrap="yes">Build Complete</td>
        </xsl:if>
          <td style="text-align:right" nowrap="yes">Total Time: <xsl:value-of select="@time"/></td>
      </tr>
      <tr>
        <td colspan="2">
          <xsl:if test="@error">
            <tt><xsl:value-of select="@error"/></tt><br/>
            <i style="font-size:80%">See the <a href="#stacktrace" alt="Click for details">stacktrace</a>.</i>
          </xsl:if>
        </td>
      </tr>
    </table>
    <table border="1" cellspacing="2" cellpadding="3" width="100%" style="font-size:80%">
      <tr class="a"><td width="1">ant.file</td><td><xsl:value-of select="substring-after(message[contains(text(),'ant.file')], '->')"/></td></tr>
      <tr class="b"><td width="1">ant.version</td><td><xsl:value-of select="substring-after(message[contains(text(),'ant.version')], '->')"/></td></tr>
      <tr class="a"><td width="1">java.version</td><td><xsl:value-of select="substring-after(message[contains(text(),'java.vm.version')], '->')"/></td></tr>
      <tr class="b"><td width="1">os.name</td><td><xsl:value-of select="substring-after(message[contains(text(),'os.name')], '->')"/></td></tr>
    </table>
    <!-- build information -->
    <h3>Build events</h3>
    <table class="log" border="1" cellspacing="2" cellpadding="3" width="100%">
    <tr>
      <th nowrap="yes" align="left" width="1%">target</th>
      <th nowrap="yes" align="left" width="1%">task</th>
      <th nowrap="yes" align="left">message</th>
    </tr>
    <xsl:apply-templates select=".//message[@priority != 'debug']"/>
    </table>
    <p>
    <!-- stacktrace -->
    <xsl:if test="stacktrace">
    <a name="stacktrace"/>
    <h3>Error details</h3>
    <table width="100%">
      <tr><td>
        <pre><xsl:value-of select="stacktrace"/></pre>
      </td></tr>
    </table>
    </xsl:if>
    </p>
  </xsl:template>
  
  <!-- report every message but those with debug priority -->
  <xsl:template match="message[@priority!='debug']">
    <tr valign="top">
      <!-- alternated row style -->
      <xsl:attribute name="class">
        <xsl:if test="position() mod 2 = 1">a</xsl:if>
        <xsl:if test="position() mod 2 = 0">b</xsl:if>
      </xsl:attribute>
      <td nowrap="yes" width="1%"><xsl:value-of select="../../@name"/></td>
      <td nowrap="yes" style="text-align:right" width="1%">[ <xsl:value-of select="../@name"/> ]</td>
      <td class="{@priority}" nowrap="yes">
              <xsl:value-of select="text()"/>
      </td>
    </tr>
  </xsl:template>
  
  </xsl:stylesheet>
  
  
  
  1.1                  xml-forrest/tools/antipede/resources/stylesheets/module.css
  
  Index: module.css
  ===================================================================
  module {
     display:block
     content: attr(name);
  }
  
  description
  {   display:block; 
      text-align: justify; 
      font-weight:plain;
      padding: 0px;
      background-color: #414681; 
      color: #ffffff; 
      margin: 5px 0px 5px 0px; 
      font-size: 12px; 
      font-family: Verdana, Arial, Helvetica, sans-serif
  }
  
  detailed, why, todo, changes, project, package
  {   display:block; 
      text-align: justify; 
      font-weight:plain;
      padding: 0px;
      background-color: #cfcdc6; 
      color: #000000; 
      margin: 5px 0px 5px 0px; 
      font-size: 12px; 
      font-family: Verdana, Arial, Helvetica, sans-serif
  }
  
  what {display:block; 
        list-style-type:disc;
        text-align: left; 
        font-weight:plain;
        padding: 0px;
        background-color: #FFFFFF; 
        color: #000000; 
        margin: 0px 0px 0px 40px; 
        font-size: 12px; 
        font-family: Verdana, Arial, Helvetica, sans-serif
      }
      
  goal {display:list-item;   font-weight:plain;}
  
  
  actions {
      display:block; 
      list-style-type:decimal; 
      counter-reset: item;
      text-align: left; 
      font-weight:plain;
      padding: 0px;
      background-color: #ffe3a6; 
      color: #000000; 
      margin: 0px 0px 0px 40px; 
      font-size: 12px; 
      font-family: Verdana, Arial, Helvetica, sans-serif
    }
  
  
  release {
      display:block; 
      list-style-type:decimal; 
      counter-reset: item;
      text-align: left; 
      font-weight:plain;
      padding: 0px;
      background-color: #b6aaff; 
      color: #000000; 
      margin: 0px 0px 0px 40px; 
      font-size: 12px; 
      font-family: Verdana, Arial, Helvetica, sans-serif
    }
    
  action {display:list-item; }
  
  release {display:block; margin-left:40px;
    list-style-type:decimal; counter-reset: item;}
  
  
  licence {  display:block; 
      text-align: left; 
      font-weight:bold;
      font-style:italic;
      padding: 0px;
      background-color: #ffffff; 
      color: #000000; 
      margin: 5px 0px 5px 0px; 
      font-size: 12px; 
      font-family: Verdana, Arial, Helvetica, sans-serif
      }
  credits {  display:block; 
      text-align: left; 
      font-weight:bold;
      padding: 0px;
      background-color: #FFFFFF; 
      color: #000000; 
      margin: 5px 0px 5px 0px; 
      font-size: 12px; 
      font-family: Verdana, Arial, Helvetica, sans-serif
      }
  
  
  
  1.1                  xml-forrest/tools/antipede/resources/stylesheets/module.xsl
  
  Index: module.xsl
  ===================================================================
  <?xml version="1.0"?>
  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  	<xsl:output method = "html" encoding="Windows-1252" />
  	
  	<xsl:template match="/">	
  		<html>
  			<head>
  			  <title>Gump descriptor of module <xsl:value-of select="module/@name" /></title>
  			</head>
  			<body>
  			
  			 <h1><xsl:value-of select="module/@name" /></h1>
  
  			 <p>website:<a><xsl:attribute  name = "href" >
   			        <xsl:value-of select="module/url/@href" />
  			       </xsl:attribute><xsl:value-of select="module/url/@href" /></a>  
  			 <br/>cvs repository: <xsl:value-of select="module/cvs/@repository" />
  			 <xsl:for-each select = "module/mailing-lists/mailing-list">
  			 <br/><xsl:value-of select="@user" />&#160;mailing list:&#160; 
  			      <a><xsl:attribute  name = "href" >mailto:<xsl:value-of select="@mail" /></xsl:attribute>
  			         <xsl:value-of select="@mail" /></a>
  			      <a><xsl:attribute  name = "href" >mailto:<xsl:value-of select="@subscribe" /></xsl:attribute>
  			         Subscribe</a>  
                    <a><xsl:attribute  name = "href" >mailto:<xsl:value-of select="@unsubscribe" /></xsl:attribute>
                       Unsubscribe</a>  			         
  			       			 
  			 </xsl:for-each>
               </p>
  			 			 
  			 <h2>Description</h2>
  			 <p><xsl:value-of select="module/description" /></p>
  			 <p><xsl:value-of select="module/detailed" /></p>
  
  			 <h2>Reasons</h2>
  			 <p><xsl:value-of select="module/why" /></p>
  			 
  			 <h2>Goals</h2>			 	
  			 <ul>
  			 <xsl:for-each select = "module/what/goal">
  			 <li><xsl:value-of select="." /></li>			 
  			 </xsl:for-each>
  			 </ul>
  
  			 <h2>License</h2>
  			 <p><b><xsl:value-of select="module/licence" /></b></p>
  			 
  			 <h2>Credits</h2>			 	
  			 <ul>
  			 <xsl:for-each select = "module/credits/credit">
  			 <li><xsl:value-of select="." /></li>			 
  			 </xsl:for-each>
  			 </ul>			 
  
  			 </body>
  		</html>
  	</xsl:template>
  </xsl:stylesheet>
  
  
  1.1                  xml-forrest/tools/antipede/resources/stylesheets/properties.xsl
  
  Index: properties.xsl
  ===================================================================
  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     
     <xsl:output indent="yes" method="html"/>
  
     <xsl:template match="/">
        <html>
           <head>
             <title>Project properties</title>
             <style><![CDATA[
     <!--
  
  td.block
  {   display:block; 
      text-align: justify; 
      font-weight:plain;
      padding: 0px;
      background-color: #414681; 
      color: #ffffff; 
      margin: 5px 0px 5px 0px; 
      font-size: 12px; 
      font-family: Verdana, Arial, Helvetica, sans-serif
  }
  
  td.comment
  {   display:block; 
      text-align: justify; 
      font-weight:plain;
      font-style:italic;   
      padding: 0px;
      background-color: #cfcdc6; 
      color: #000000; 
      margin: 5px 0px 5px 0px; 
      font-size: 12px; 
      font-family: Verdana, Arial, Helvetica, sans-serif
  }
  
  td.name {display:block; 
        list-style-type:disc;
        text-align: left; 
        font-weight:plain;
        padding: 0px;
        background-color: #FFFFFF; 
        color: #000000; 
        margin: 0px 0px 0px 40px; 
        font-size: 12px; 
        font-family: Verdana, Arial, Helvetica, sans-serif
      }
      
  
  td.value {
      display:block; 
      text-align: left; 
      font-weight:plain;
      padding: 0px;
      background-color: #ffe3a6; 
      color: #000000; 
      margin: 0px 0px 0px 40px; 
      font-size: 12px; 
      font-family: Verdana, Arial, Helvetica, sans-serif
    }
  
  
       //-->]]>
  
             </style>
           </head>
           <body>
             <table><tr><td>
              <xsl:apply-templates/>
             </td></tr></table> 
           </body>
        </html>
     </xsl:template>
  
     <xsl:template match="@*">
     </xsl:template>
  
     <xsl:template match="text()">
        <xsl:value-of select="."/>
     </xsl:template>
  
     <xsl:template match="comment()">
       <table><tr><td class="comment"><pre>
        <xsl:value-of select="."/>
       </pre></td></tr></table>
     </xsl:template>
  
     <xsl:template match="*">
       <table><tr><td class="block">
       <xsl:value-of select="name(.)"/>
       <table>
       <xsl:for-each select="@*">
        <tr>
          <td class="name"><xsl:value-of select="name(.)"/></td>
          <td class="value">=<xsl:value-of select="."/></td>
        </tr>      
       </xsl:for-each>
       </table> 
       </td></tr></table>        
     </xsl:template>
  
     <xsl:template match="*[node()]">
       <table><tr><td class="block">
       <xsl:value-of select="name(.)"/>
       </td></tr></table> 
      
       <table><tr>
       <td width="20px"></td>
       <td class="name">     
       <xsl:apply-templates/>
       </td></tr></table> 
       
     </xsl:template>
  
     <xsl:template match="*[text() and not (comment() or processing-instruction())]">
        <br/><xsl:value-of select="name(.)"/>
        <xsl:apply-templates select="@*"/>
        <xsl:value-of select="."/>
     </xsl:template>
  
     <xsl:template name="nbsp-ref">
        <xsl:text>&#160;</xsl:text>
     </xsl:template>
  
  </xsl:stylesheet>