[BACK]Return to ChangeLog.xsl CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/Attic/ChangeLog.xsl between version 1.1 and 1.2

version 1.1, 2009/07/16 13:41:12 version 1.2, 2009/07/16 14:07:23
Line 1 
Line 1 
 <?xml version='1.0' encoding="iso-8859-1"?>  <?xml version='1.0' encoding="utf-8"?>
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" >  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" >
   <xsl:output encoding="iso-8859-15" method="html" indent="yes" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN" />  <xsl:output encoding="utf-8" method="html" indent="yes" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN" />
   <xsl:template match="/changelog">  <xsl:template match="/changelog">
     <html>  <html>
     <head>          <head>
       <title>mdocml - CVS-ChangeLog</title>                  <title>mdocml - CVS-ChangeLog</title>
       <style type="text/css">                  <link rel="stylesheet" href="style.css" type="text/css" media="all" />
         h3 { background-color: #E6E6FA; color: #000000; padding: 2px; }          </head>
         .rev { color: #808080 }          <body>
       </style>                                  <xsl:for-each select="entry">
     </head>                                          <div class="clhead">
       <body>                                                  <xsl:text>Files modified by </xsl:text>
           <xsl:for-each select="entry">                                                  <xsl:value-of select="concat(author, ': ', date, ' (', time, ')')" />
               <h3>                                          </div>
                 <xsl:text>Files modified by </xsl:text>                                          <div class="clbody">
                 <xsl:value-of select="concat(author, ': ', date, ' (', time, ')')" />                                                  <strong>
               </h3>                                                          <xsl:text>Note: </xsl:text>
               <strong>                                                  </strong>
                 <xsl:text>Note: </xsl:text>                                                  <xsl:value-of select="msg"/>
               </strong>                                                  <ul class="clbody">
                 <xsl:value-of select="msg"/>                                                          <xsl:for-each select="file">
               <ul>                                                                  <li>
                 <xsl:for-each select="file">                                                                          <xsl:value-of select="name"/>
                  <li>                                                                          <span class="rev">
                   <xsl:value-of select="name"/>                                                                                  <xsl:text> &#8212; Rev: </xsl:text>
                   <span class="rev">                                                                                  <xsl:value-of select="revision"/>
                   <xsl:text> - Rev: </xsl:text>                                                                                  <xsl:text>, Status: </xsl:text>
                   <xsl:value-of select="revision"/>                                                                                  <xsl:value-of select="cvsstate"/>
                   <xsl:text>, Status: </xsl:text>                                                                          </span>
                   <xsl:value-of select="cvsstate"/>                                                                  </li>
                   </span>                                                          </xsl:for-each>
                  </li>                                                  </ul>
                 </xsl:for-each>                                          </div>
               </ul>                                  </xsl:for-each>
           </xsl:for-each>          </body>
       </body>  </html>
     </html>  </xsl:template>
   </xsl:template>  
 </xsl:stylesheet>  </xsl:stylesheet>

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

CVSweb