2008-02-05 17:16:45 -05:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Name: email.xsl
|
|
|
|
Purpose: Create email address lookup.
|
|
|
|
Author: Mike Wetherell
|
|
|
|
Copyright: (c) 2007 Mike Wetherell
|
2010-07-13 09:29:13 -04:00
|
|
|
Licence: wxWindows licence
|
2008-02-05 17:16:45 -05:00
|
|
|
|
|
|
|
Usage: xsltproc -html tools/email.xsl http://svn.wxwidgets.org/users.cgi \
|
|
|
|
> config/include/wx-devs.xml
|
|
|
|
-->
|
|
|
|
|
|
|
|
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
|
|
|
|
|
|
<xsl:param name="at"> -at- </xsl:param>
|
|
|
|
|
|
|
|
<xsl:output indent="yes"/>
|
|
|
|
|
|
|
|
<xsl:template match="/">
|
|
|
|
<emaillookup>
|
2008-03-18 14:24:19 -04:00
|
|
|
<xsl:apply-templates select="//table/tr">
|
|
|
|
<xsl:sort select="normalize-space(td[1])"/>
|
|
|
|
</xsl:apply-templates>
|
2008-02-05 17:16:45 -05:00
|
|
|
</emaillookup>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
<xsl:template match="tr">
|
|
|
|
<xsl:variable name="id" select="normalize-space(td[1])"/>
|
|
|
|
<xsl:variable name="email" select="normalize-space(td[3])"/>
|
|
|
|
|
|
|
|
<xsl:if test="$id and not(contains($id, ' ')) and contains($email, $at)">
|
|
|
|
<email id="{$id}">
|
|
|
|
<xsl:value-of select="$email"/>
|
|
|
|
</email>
|
|
|
|
</xsl:if>
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
</xsl:transform>
|