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

Annotation of mandoc/ChangeLog.xsl, Revision 1.1

1.1     ! kristaps    1: <?xml version='1.0' encoding="iso-8859-1"?>
        !             2: <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" >
        !             3:   <xsl:output encoding="iso-8859-15" method="html" indent="yes" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN" />
        !             4:   <xsl:template match="/changelog">
        !             5:     <html>
        !             6:     <head>
        !             7:       <title>mdocml - CVS-ChangeLog</title>
        !             8:       <style type="text/css">
        !             9:        h3 { background-color: #E6E6FA; color: #000000; padding: 2px; }
        !            10:        .rev { color: #808080 }
        !            11:       </style>
        !            12:     </head>
        !            13:       <body>
        !            14:           <xsl:for-each select="entry">
        !            15:               <h3>
        !            16:                <xsl:text>Files modified by </xsl:text>
        !            17:                 <xsl:value-of select="concat(author, ': ', date, ' (', time, ')')" />
        !            18:               </h3>
        !            19:              <strong>
        !            20:                <xsl:text>Note: </xsl:text>
        !            21:              </strong>
        !            22:                <xsl:value-of select="msg"/>
        !            23:               <ul>
        !            24:                 <xsl:for-each select="file">
        !            25:                 <li>
        !            26:                   <xsl:value-of select="name"/>
        !            27:                  <span class="rev">
        !            28:                  <xsl:text> - Rev: </xsl:text>
        !            29:                  <xsl:value-of select="revision"/>
        !            30:                  <xsl:text>, Status: </xsl:text>
        !            31:                  <xsl:value-of select="cvsstate"/>
        !            32:                  </span>
        !            33:                 </li>
        !            34:                 </xsl:for-each>
        !            35:               </ul>
        !            36:           </xsl:for-each>
        !            37:       </body>
        !            38:     </html>
        !            39:   </xsl:template>
        !            40: </xsl:stylesheet>

CVSweb