1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:a="http://www.w3.org/2005/Atom"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="a xhtml"
xmlns:str="http://exslt.org/strings"
>
<xsl:output method="xml" encoding="utf-8"
doctype-public="-//W3C//DTD XHTML 1.1//EN"
doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"/>
<xsl:param name="htdocsDir" />
<xsl:template match="a:*" />
<xsl:template match="@*|node()|text()" priority="-1">
<xsl:call-template name="nodeCopy" />
</xsl:template>
<xsl:template name="nodeCopy">
<xsl:copy>
<xsl:apply-templates select="@*|node()|text()" />
</xsl:copy>
</xsl:template>
<xsl:template match="a:feed">
<h4><xsl:apply-templates select="a:title" mode="text-construct"/></h4>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="a:summary">
<div class="summary">
<xsl:apply-templates select="." mode="text-construct"/>
</div>
</xsl:template>
<xsl:template match="a:content">
<div class="content">
<xsl:value-of select="string(.)" disable-output-escaping="yes"/>
</div>
</xsl:template>
<xsl:template match="a:entry">
<div class="entry">
<h5><xsl:apply-templates select="a:title" mode="text-construct"/></h5>
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="a:link" mode="links">
<a href="{@href}">
<xsl:value-of select="@rel"/>
<xsl:if test="not(@rel)">[generic link]</xsl:if>
<xsl:if test="@type">
<xsl:text> (</xsl:text><xsl:value-of select="@type"/><xsl:text>): </xsl:text>
</xsl:if>
<xsl:value-of select="@title"/>
</a>
<xsl:if test="position() != last()">
<xsl:text> | </xsl:text>
</xsl:if>
</xsl:template>
<xsl:template match="a:category" mode="categories">
<xsl:value-of select="@term"/>
<xsl:if test="position() != last()">
<xsl:text> | </xsl:text>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
|