diff options
Diffstat (limited to 'contrib_xsl')
-rw-r--r-- | contrib_xsl/wiki.xsl | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/contrib_xsl/wiki.xsl b/contrib_xsl/wiki.xsl new file mode 100644 index 0000000..3fd1566 --- /dev/null +++ b/contrib_xsl/wiki.xsl @@ -0,0 +1,86 @@ +<?xml version="1.0"?> +<!-- Author: Reid +Copyright (C) 2016 Evol Online --> +<xsl:stylesheet version="1.0" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + > + + <xsl:output method="text" indent="no"/> + <xsl:strip-space elements="*"/> + + <xsl:template match="contributors"> + <xsl:apply-templates/> + </xsl:template> + + <xsl:template match="evol"> + <xsl:text>^ Evol Online Contributors ^^
</xsl:text> + <xsl:text>^ Nickname ^ Real Name / Email ^
</xsl:text> + + <xsl:apply-templates select="contributor"/> + </xsl:template> + + <xsl:template match="tmw-ufb"> + <xsl:text>^ Unknown Flying Bullet Contributors ^^
</xsl:text> + <xsl:text>^ Nickname ^ Real Name / Email ^
</xsl:text> + + <xsl:apply-templates select="contributor"/> + </xsl:template> + + <xsl:template match="other"> + <xsl:text>^ Related Community Contributors ^^
</xsl:text> + <xsl:text>^ Name ^ Link ^
</xsl:text> + + <xsl:apply-templates select="community"/> + </xsl:template> + + <xsl:template match="contributor"> + + <xsl:text>|</xsl:text> + <xsl:value-of select="@nick"/> + + <xsl:choose> + <xsl:when test="@mailid"> + <xsl:text> |[[mailto:</xsl:text> + <xsl:value-of select="@mailid"/> + <xsl:text>@</xsl:text> + <xsl:value-of select="@mailserver"/> + <xsl:text>| </xsl:text> + <xsl:choose> + <xsl:when test="@name"> + <xsl:value-of select="@name"/> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="@nick"/> + </xsl:otherwise> + </xsl:choose> + <xsl:text>]] |</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:text> |</xsl:text> + <xsl:choose> + <xsl:when test="@name"> + <xsl:value-of select="@name"/> + </xsl:when> + <xsl:otherwise> + <xsl:text>No Data</xsl:text> + </xsl:otherwise> + </xsl:choose> + <xsl:text> |</xsl:text> + </xsl:otherwise> + </xsl:choose> + + <xsl:text>
</xsl:text> + </xsl:template> + + <xsl:template match="community"> + <xsl:text>|</xsl:text> + <xsl:value-of select="@name"/> + <xsl:text> |[[</xsl:text> + <xsl:value-of select="@site"/> + <xsl:text>|</xsl:text> + <xsl:value-of select="@name"/> + <xsl:text>]] |
</xsl:text> + </xsl:template> + +</xsl:stylesheet> + |