comparison xslt/link.xslt @ 424:aa00b4d476c8

Regenerated.
author Ruslan Ermilov <ru@nginx.com>
date Fri, 24 Feb 2012 10:16:15 +0000
parents e179a6487bbd
children 2a061496979a
comparison
equal deleted inserted replaced
423:04ad7c1b1b04 424:aa00b4d476c8
62 </xsl:choose> 62 </xsl:choose>
63 63
64 </a> 64 </a>
65 </xsl:template> 65 </xsl:template>
66 66
67 <xsl:template match="links">
68
69 <xsl:for-each select="link">
70 <xsl:sort select="@id"/>
71
72 <a href="{substring-before(@doc, '.xml')}.html#{@id}">
73 <xsl:value-of select="@id"/>
74 </a>
75
76 <br/>
77 </xsl:for-each>
78 </xsl:template>
79
67 </xsl:stylesheet> 80 </xsl:stylesheet>