view xslt/books.xslt @ 1626:b6fad74f2aa1

Removed release packages from linux downloads page. Rationale: - They are only available for stable branch - They are only available for CentOS/RHEL - The repo they configure does not include those packages so they are impossible to update
author Konstantin Pavlov <thresh@nginx.com>
date Thu, 17 Dec 2015 19:44:14 +0300
parents c454373427ef
children ae713f8acaca
line wrap: on
line source

<?xml version="1.0" encoding="utf-8"?>
<!--
  Copyright (C) Igor Sysoev
  Copyright (C) Nginx, Inc.
  -->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:template match="book">

    <table><tr>

    <td bgcolor="#EEEEEE">
    <a href="{@link}">
    <img src="{@cover}" alt="" style="padding: 2pt;" border="0"/>
    </a>
    </td>

    <td>
    <xsl:text>title: </xsl:text> <a href="{@link}"><xsl:value-of select="@title"/></a> <br/>
    <xsl:text>author: </xsl:text>
    <xsl:choose><xsl:when test="@site"> <a href="{@site}"><xsl:value-of select="@author"/></a> </xsl:when><xsl:otherwise> <xsl:value-of select="@author"/> </xsl:otherwise></xsl:choose> <br/>
    <xsl:if test="@translator"> <xsl:text>translator: </xsl:text> <xsl:value-of select="@translator"/> <br/> </xsl:if>
    <xsl:if test="@publisher"> <xsl:text>publisher: </xsl:text> <xsl:value-of select="@publisher"/> <br/> </xsl:if>
    <xsl:text>language: </xsl:text> <xsl:value-of select="@lang"/>
    </td>

    </tr></table>
</xsl:template>

</xsl:stylesheet>