Annotation of parser3/www/htdocs/_bug.xsl, revision 1.15.6.1
1.15.6.1! paf 1: <?xml version="1.0"?>
! 2: <!--
! 3: <xsl:stylesheet version="1.0" xmlns="http://www.w3.org/1999/xhtml" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
! 4: -->
1.1 paf 5:
1.15.6.1! paf 6: <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
1.1 paf 7:
1.15.6.1! paf 8:
! 9: <xsl:template match="blog-entry">
! 10: <xsl:apply-templates />
! 11: </xsl:template>
! 12:
! 13:
! 14: <xsl:template match="cover">
! 15: <div class="cover">
! 16: <xsl:apply-templates />
! 17: </div>
! 18: </xsl:template>
! 19:
! 20: <xsl:template match="fullpage | full-page">
! 21: <div class="fp">
! 22: <xsl:apply-templates />
! 23: </div>
! 24: </xsl:template>
! 25:
! 26: <xsl:template match="text">
! 27: <div>
! 28: </div>
! 29: </xsl:template>
! 30:
! 31: <xsl:template match="blog-entry">
! 32: <xsl:apply-templates />
! 33: </xsl:template>
! 34:
! 35:
! 36: <xsl:template match="settings//*">
! 37: </xsl:template>
! 38:
! 39: <xsl:template match="screen">
1.1 paf 40:
1.15.6.1! paf 41: </xsl:template>
! 42:
! 43: <xsl:template match="epigraph">
! 44: <div class="epigraph">
! 45: <xsl:apply-templates />
! 46: <xsl:call-template name="author-of-quotation" />
! 47: </div>
! 48: </xsl:template>
! 49:
! 50: <xsl:template name="author-of-quotation">
! 51: <xsl:if test="@author">
! 52: <p class="author">
! 53: <xsl:value-of select="@author" />
! 54: </p>
! 55: </xsl:if>
! 56: </xsl:template>
! 57:
! 58: <xsl:template match="image | img">
! 59: <xsl:element name="img">
! 60: <xsl:attribute name="src">
! 61: <xsl:value-of select="@source | @src" />
! 62: </xsl:attribute>
! 63:
! 64: <!--
! 65: <xsl:if test="@width | @height">
! 66: <xsl:attribute name="@{name()}">
! 67: <xsl:value-of select="@{name()}" />
! 68: </xsl:attribute>
! 69: </xsl:if>
! 70: -->
! 71: <xsl:attribute name="width">
! 72: <xsl:value-of select="@width" />
! 73: </xsl:attribute>
! 74: <xsl:attribute name="height">
! 75: <xsl:value-of select="@height" />
! 76: </xsl:attribute>
! 77:
! 78: <xsl:attribute name="alt">
! 79: <xsl:value-of select="@alt" />
! 80: </xsl:attribute>
! 81:
! 82: <xsl:if test="class">
! 83: <xsl:attribute name="class">
! 84: <xsl:value-of select="@class" />
! 85: </xsl:attribute>
! 86: </xsl:if>
! 87: <xsl:if test="style">
! 88: <xsl:attribute name="style">
! 89: <xsl:value-of select="@style" />
! 90: </xsl:attribute>
! 91: </xsl:if>
! 92:
! 93:
! 94: <xsl:if test="@align">
! 95: <xsl:attribute name="align">
! 96: <xsl:value-of select="@align" />
! 97: </xsl:attribute>
! 98: </xsl:if>
! 99: </xsl:element>
! 100: </xsl:template>
! 101:
! 102:
! 103: <xsl:template match="p | b | i | strong | em | sup | sub | small | nobr">
! 104: <xsl:element name="{name()}">
! 105: <xsl:apply-templates />
! 106: </xsl:element>
! 107: </xsl:template>
! 108:
1.15 paf 109: </xsl:stylesheet>
E-mail: