You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by je...@apache.org on 2002/10/30 09:47:49 UTC

cvs commit: xml-forrest/tools/stylesheets build.xsl log.xsl module.xsl properties.xsl status.xsl xml.xsl

jefft       2002/10/30 00:47:48

  Added:       tools/stylesheets build.xsl log.xsl module.xsl
                        properties.xsl status.xsl xml.xsl
  Log:
  Useful stylesheets from Centipede
  
  Revision  Changes    Path
  1.1                  xml-forrest/tools/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/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/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/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>
  
  
  1.1                  xml-forrest/tools/stylesheets/status.xsl
  
  Index: status.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="status">	
  			 <h1>Project Status</h1>	
  
  		 	
  			 <h2>Developers</h2>			 	
  			 <table>
  			 <xsl:for-each select = "developers/person">
  			 <tr><td><xsl:value-of select="@name" /></td>
  			     <td><xsl:value-of select="@email" /></td>
  			     <td>[<xsl:value-of select="@id" />]</td></tr>			 
  			 </xsl:for-each>
  			 </table>
  
  
  			 <h2>To do</h2>			 	
  			 <xsl:for-each select = "todo/actions">
  			 <h3><xsl:value-of select = "@priority"/>&#160;priority</h3>
  			 <table>
  			 <tr><th>context</th><th>what</th><th>assigned to</th></tr>
  			 <xsl:for-each select = "action">
  			 <tr><td><xsl:value-of select="@context" /></td>
  			     <td><xsl:value-of select="." /></td>
  			     <td>[<xsl:value-of select="@assigned-to" />]</td></tr>			 
  			 </xsl:for-each>
  			 </table>
  			 </xsl:for-each>
  
  			 <h2>Changes</h2>			 	
  			 <xsl:for-each select = "changes/release">
  			 <h3>release&#160;<xsl:value-of select = "@version"/>&#160;
  			     of date&#160;<xsl:value-of select = "@date"/></h3>
  			 <table>
  			 <tr><th>type</th><th>what</th><th>developer</th></tr>
  			 <xsl:for-each select = "action">
  			 <tr><td><xsl:value-of select="@type" /></td>
  			     <td><xsl:value-of select="." /></td>
  			     <td>[<xsl:value-of select="@dev" />]</td></tr>			 
  			 </xsl:for-each>
  			 </table>
  			 </xsl:for-each>	
  	
  		</xsl:template>
  </xsl:stylesheet>
  
  
  1.1                  xml-forrest/tools/stylesheets/xml.xsl
  
  Index: xml.xsl
  ===================================================================
  <!--
   |
   | XSLT REC Compliant Version of IE5 Default Stylesheet
   |
   | Original version by Jonathan Marsh (jmarsh@microsoft.com)
   | http://msdn.microsoft.com/xml/samples/defaultss/defaultss.xsl
   |
   | Conversion to XSLT 1.0 REC Syntax by Steve Muench (smuench@oracle.com)
   |
   +-->
  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     <xsl:output indent="no" method="html"/>
  
     <xsl:template match="/">
        <HTML>
           <HEAD>
              <SCRIPT>
                 <xsl:comment><![CDATA[
                    function f(e){
                       if (e.className=="ci") {
                         if (e.children(0).innerText.indexOf("\n")>0) fix(e,"cb");
                       }
                       if (e.className=="di") {
                         if (e.children(0).innerText.indexOf("\n")>0) fix(e,"db");
                       } e.id="";
                    }
                    function fix(e,cl){
                      e.className=cl;
                      e.style.display="block";
                      j=e.parentElement.children(0);
                      j.className="c";
                      k=j.children(0);
                      k.style.visibility="visible";
                      k.href="#";
                    }
                    function ch(e) {
                      mark=e.children(0).children(0);
                      if (mark.innerText=="+") {
                        mark.innerText="-";
                        for (var i=1;i<e.children.length;i++) {
                          e.children(i).style.display="block";
                        }
                      }
                      else if (mark.innerText=="-") {
                        mark.innerText="+";
                        for (var i=1;i<e.children.length;i++) {
                          e.children(i).style.display="none";
                        }
                      }
                    }
                    function ch2(e) {
                      mark=e.children(0).children(0);
                      contents=e.children(1);
                      if (mark.innerText=="+") {
                        mark.innerText="-";
                        if (contents.className=="db"||contents.className=="cb") {
                          contents.style.display="block";
                        }
                        else {
                          contents.style.display="inline";
                        }
                      }
                      else if (mark.innerText=="-") {
                        mark.innerText="+";
                        contents.style.display="none";
                      }
                    }
                    function cl() {
                      e=window.event.srcElement;
                      if (e.className!="c") {
                        e=e.parentElement;
                        if (e.className!="c") {
                          return;
                        }
                      }
                      e=e.parentElement;
                      if (e.className=="e") {
                        ch(e);
                      }
                      if (e.className=="k") {
                        ch2(e);
                      }
                    }
                    function ex(){}
                    function h(){window.status=" ";}
                    document.onclick=cl;
                ]]>
                </xsl:comment>
              </SCRIPT>
              <STYLE>
                BODY {font:x-small 'Verdana'; margin-right:1.5em}
                  .c  {cursor:hand}
                  .b  {color:red; font-family:'Courier New'; font-weight:bold;
                       text-decoration:none}
                  .e  {margin-left:1em; text-indent:-1em; margin-right:1em}
                  .k  {margin-left:1em; text-indent:-1em; margin-right:1em}
                  .t  {color:#990000}
                  .xt {color:#990099}
                  .ns {color:red}
                  .dt {color:green}
                  .m  {color:blue}
                  .tx {font-weight:bold}
                  .db {text-indent:0px; margin-left:1em; margin-top:0px;
                       margin-bottom:0px;padding-left:.3em;
                       border-left:1px solid #CCCCCC; font:small Courier}
                  .di {font:small Courier}
                  .d  {color:blue}
                  .pi {color:blue}
                  .cb {text-indent:0px; margin-left:1em; margin-top:0px;
                       margin-bottom:0px;padding-left:.3em; font:small Courier;
                       color:#888888}
                  .ci {font:small Courier; color:#888888}
                  PRE {margin:0px; display:inline}
             </STYLE>
           </HEAD>
           <BODY class="st">
              <xsl:apply-templates/>
           </BODY>
        </HTML>
     </xsl:template>
  
     <xsl:template match="processing-instruction()">
        <DIV class="e">
           <SPAN class="b">
           		<xsl:call-template name="nbsp-ref"/>
           </SPAN>
           <SPAN class="m">
              <xsl:text>&lt;?</xsl:text>
           </SPAN>
           <SPAN class="pi">
              <xsl:value-of select="name(.)"/>
              <xsl:value-of select="."/>
           </SPAN>
           <SPAN class="m">
              <xsl:text>?></xsl:text>
           </SPAN>
        </DIV>
     </xsl:template>
  
     <xsl:template match="processing-instruction('xml')">
        <DIV class="e">
           <SPAN class="b">
              <xsl:call-template name="nbsp-ref"/>
           </SPAN>
           <SPAN class="m">
              <xsl:text>&lt;?</xsl:text>
           </SPAN>
           <SPAN class="pi">
              <xsl:text>xml </xsl:text>
              <xsl:for-each select="@*">
                 <xsl:value-of select="name(.)"/>
                 <xsl:text>="</xsl:text>
                 <xsl:value-of select="."/>
                 <xsl:text>" </xsl:text>
              </xsl:for-each>
           </SPAN>
           <SPAN class="m">
              <xsl:text>?></xsl:text>
           </SPAN>
        </DIV>
     </xsl:template>
  
     <xsl:template match="@*">
        <SPAN>
           <xsl:attribute name="class">
              <xsl:if test="xsl:*/@*">
                <xsl:text>x</xsl:text>
              </xsl:if>
              <xsl:text>t</xsl:text>
           </xsl:attribute>
           <xsl:value-of select="name(.)"/>
        </SPAN>
        <SPAN class="m">="</SPAN>
        <B>
           <xsl:value-of select="."/>
        </B>
        <SPAN class="m">"</SPAN>
     </xsl:template>
  
     <xsl:template match="text()">
        <DIV class="e">
           <SPAN class="b"> </SPAN>
           <SPAN class="tx">
              <xsl:value-of select="."/>
           </SPAN>
        </DIV>
     </xsl:template>
  
     <xsl:template match="comment()">
        <DIV class="k">
           <SPAN>
              <A STYLE="visibility:hidden" class="b" onclick="return false" onfocus="h()">-</A>
              <SPAN class="m">
                 <xsl:text>&lt;!--</xsl:text>
              </SPAN>
           </SPAN>
           <SPAN class="ci" id="clean">
              <PRE>
                 <xsl:value-of select="."/>
              </PRE>
           </SPAN>
           <SPAN class="b">
              <xsl:call-template name="nbsp-ref"/>
           </SPAN>
           <SPAN class="m">
              <xsl:text>--></xsl:text>
           </SPAN>
           <SCRIPT>f(clean);</SCRIPT>
        </DIV>
     </xsl:template>
  
     <xsl:template match="*">
        <DIV class="e">
           <DIV STYLE="margin-left:1em;text-indent:-2em">
              <SPAN class="b">
              		<xsl:call-template name="nbsp-ref"/>
              </SPAN>
              <SPAN class="m">&lt;</SPAN>
              <SPAN>
                 <xsl:attribute name="class">
                    <xsl:if test="xsl:*">
                       <xsl:text>x</xsl:text>
                    </xsl:if>
                    <xsl:text>t</xsl:text>
                 </xsl:attribute>
                 <xsl:value-of select="name(.)"/>
                 <xsl:if test="@*">
                    <xsl:text> </xsl:text>
                 </xsl:if>
              </SPAN>
              <xsl:apply-templates select="@*"/>
              <SPAN class="m">
                 <xsl:text>/></xsl:text>
              </SPAN>
           </DIV>
        </DIV>
     </xsl:template>
  
     <xsl:template match="*[node()]">
        <DIV class="e">
           <DIV class="c">
              <A class="b" href="#" onclick="return false" onfocus="h()">-</A>
              <SPAN class="m">&lt;</SPAN>
              <SPAN>
                 <xsl:attribute name="class">
                    <xsl:if test="xsl:*">
                       <xsl:text>x</xsl:text>
                    </xsl:if>
                    <xsl:text>t</xsl:text>
                 </xsl:attribute>
                 <xsl:value-of select="name(.)"/>
                 <xsl:if test="@*">
                    <xsl:text> </xsl:text>
                 </xsl:if>
              </SPAN>
              <xsl:apply-templates select="@*"/>
              <SPAN class="m">
                 <xsl:text>></xsl:text>
              </SPAN>
           </DIV>
           <DIV>
              <xsl:apply-templates/>
              <DIV>
                 <SPAN class="b">
              			<xsl:call-template name="nbsp-ref"/>
                 </SPAN>
                 <SPAN class="m">
                    <xsl:text>&lt;/</xsl:text>
                 </SPAN>
                 <SPAN>
                    <xsl:attribute name="class">
                       <xsl:if test="xsl:*">
                          <xsl:text>x</xsl:text>
                       </xsl:if>
                       <xsl:text>t</xsl:text>
                    </xsl:attribute>
                    <xsl:value-of select="name(.)"/>
                 </SPAN>
                 <SPAN class="m">
                    <xsl:text>></xsl:text>
                 </SPAN>
              </DIV>
           </DIV>
        </DIV>
     </xsl:template>
  
     <xsl:template match="*[text() and not (comment() or processing-instruction())]">
        <DIV class="e">
           <DIV STYLE="margin-left:1em;text-indent:-2em">
              <SPAN class="b">
              		<xsl:call-template name="nbsp-ref"/>
              </SPAN>
              <SPAN class="m">
                 <xsl:text>&lt;</xsl:text>
              </SPAN>
              <SPAN>
                 <xsl:attribute name="class">
                    <xsl:if test="xsl:*">
                       <xsl:text>x</xsl:text>
                    </xsl:if>
                    <xsl:text>t</xsl:text>
                 </xsl:attribute>
                 <xsl:value-of select="name(.)"/>
                 <xsl:if test="@*">
                    <xsl:text> </xsl:text>
                 </xsl:if>
              </SPAN>
              <xsl:apply-templates select="@*"/>
              <SPAN class="m">
                 <xsl:text>></xsl:text>
              </SPAN>
              <SPAN class="tx">
                 <xsl:value-of select="."/>
              </SPAN>
              <SPAN class="m">&lt;/</SPAN>
              <SPAN>
                 <xsl:attribute name="class">
                    <xsl:if test="xsl:*">
                       <xsl:text>x</xsl:text>
                    </xsl:if>
                    <xsl:text>t</xsl:text>
                 </xsl:attribute>
                 <xsl:value-of select="name(.)"/>
              </SPAN>
              <SPAN class="m">
                 <xsl:text>></xsl:text>
              </SPAN>
           </DIV>
        </DIV>
     </xsl:template>
  
     <xsl:template match="*[*]" priority="20">
        <DIV class="e">
           <DIV STYLE="margin-left:1em;text-indent:-2em" class="c">
              <A class="b" href="#" onclick="return false" onfocus="h()">-</A>
              <SPAN class="m">&lt;</SPAN>
              <SPAN>
                 <xsl:attribute name="class">
                    <xsl:if test="xsl:*">
                       <xsl:text>x</xsl:text>
                    </xsl:if>
                    <xsl:text>t</xsl:text>
                 </xsl:attribute>
                 <xsl:value-of select="name(.)"/>
                 <xsl:if test="@*">
                    <xsl:text> </xsl:text>
                 </xsl:if>
              </SPAN>
              <xsl:apply-templates select="@*"/>
              <SPAN class="m">
                 <xsl:text>></xsl:text>
              </SPAN>
           </DIV>
           <DIV>
              <xsl:apply-templates/>
              <DIV>
                 <SPAN class="b">
              			<xsl:call-template name="nbsp-ref"/>
                 </SPAN>
                 <SPAN class="m">
                    <xsl:text>&lt;/</xsl:text>
                 </SPAN>
                 <SPAN>
                    <xsl:attribute name="class">
                       <xsl:if test="xsl:*">
                          <xsl:text>x</xsl:text>
                       </xsl:if>
                       <xsl:text>t</xsl:text>
                    </xsl:attribute>
                    <xsl:value-of select="name(.)"/>
                 </SPAN>
                 <SPAN class="m">
                    <xsl:text>></xsl:text>
                 </SPAN>
              </DIV>
           </DIV>
        </DIV>
     </xsl:template>
  
     <xsl:template name="nbsp-ref">
        <xsl:text>&#160;</xsl:text>
     </xsl:template>
  
  </xsl:stylesheet>