home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="UTF-8"?>
-
- <xsl:stylesheet
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:html="http://www.w3.org/TR/html4/loose.dtd"
- exclude-result-prefixes="html"
- version="1.0">
-
- <xsl:import href="ContentTags.xsl"/>
- <xsl:import href="Variables.xsl"/>
-
- <xsl:template match="inits">
-
- <!-- put 1.5 fix here -->
-
- <!-- h3>(<xsl:apply-templates/>)</h3 -->
- </xsl:template>
-
- <xsl:template match="name">
- <h2><xsl:apply-templates/></h2>
- </xsl:template>
-
- <xsl:template match="firstnm">
- <xsl:value-of select="."/>
- </xsl:template>
-
- <xsl:template match="lastnm">
- <xsl:text> </xsl:text><xsl:value-of select="."/>
- </xsl:template>
-
- <xsl:template match="contriblist">
-
- <!-- put 1.5 fix here too -->
-
- <h3>Articles contributed</h3>
- <xsl:for-each select="xreftitle">
- <a>
- <xsl:attribute name="href">test?articleId=<xsl:value-of select="@artcl_id"/>&tocId=<xsl:value-of select="@tocid"/></xsl:attribute>
- <xsl:apply-templates/>
- </a>
- <br/>
- </xsl:for-each>
- </xsl:template>
-
- </xsl:stylesheet>
-