summaryrefslogtreecommitdiff
path: root/contrib_xsl
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2016-02-15 23:15:35 +0100
committerReid <reidyaro@gmail.com>2016-02-15 23:16:16 +0100
commit95a6790328734b151399491e97d65494609a53cb (patch)
treea19c02b89073e0ebe040b562461b71bc8d1247c8 /contrib_xsl
parentaf3f61a4eb113088d2007f8979c03110afa1c188 (diff)
downloadevol-tools-95a6790328734b151399491e97d65494609a53cb.tar.gz
evol-tools-95a6790328734b151399491e97d65494609a53cb.tar.bz2
evol-tools-95a6790328734b151399491e97d65494609a53cb.tar.xz
evol-tools-95a6790328734b151399491e97d65494609a53cb.zip
Add xsl file to convert the contributors.xml into about-server.txt.
Diffstat (limited to 'contrib_xsl')
-rw-r--r--contrib_xsl/about-server.xsl69
1 files changed, 69 insertions, 0 deletions
diff --git a/contrib_xsl/about-server.xsl b/contrib_xsl/about-server.xsl
new file mode 100644
index 0000000..29e9a48
--- /dev/null
+++ b/contrib_xsl/about-server.xsl
@@ -0,0 +1,69 @@
+<?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:text>.&lt;- @@index|&lt;&lt;Back to Index&gt;&gt;@@&#xa;&#xa;</xsl:text>
+ <xsl:text>@@http://evolonline.org/|&lt;&lt;Official site:&gt;&gt; http://evolonline.org@@&#xa;</xsl:text>
+ <xsl:apply-templates/>
+ </xsl:template>
+
+ <xsl:template match="evol">
+ <xsl:text>&#xa;##3---------------------------&#xa;</xsl:text>
+ <xsl:text>##3-- &lt;&lt;Evol Online Contributors&gt;&gt; --&#xa;</xsl:text>
+ <xsl:text>##3---------------------------&#xa;&#xa;</xsl:text>
+
+ <xsl:apply-templates select="contributor"/>
+ </xsl:template>
+
+ <xsl:template match="tmw-ufb">
+ <xsl:text>&#xa;##3---------------------------&#xa;</xsl:text>
+ <xsl:text>##3-- &lt;&lt;Unknown Flying Bullet Contributors&gt;&gt; --&#xa;</xsl:text>
+ <xsl:text>##3---------------------------&#xa;&#xa;</xsl:text>
+
+ <xsl:apply-templates select="contributor"/>
+ </xsl:template>
+
+ <xsl:template match="other">
+ <xsl:text>&#xa;##3---------------------------&#xa;</xsl:text>
+ <xsl:text>##3-- &lt;&lt;Related Community&gt;&gt; --&#xa;</xsl:text>
+ <xsl:text>##3---------------------------&#xa;&#xa;</xsl:text>
+
+ <xsl:apply-templates select="community"/>
+ </xsl:template>
+
+ <xsl:template match="contributor">
+ <xml:text>##9<xsl:value-of select="@nick"/> </xml:text>
+ <xsl:if test="@name">
+ <xsl:text> (</xsl:text>
+ <xsl:value-of select="@name"/>
+ <xsl:text>)</xsl:text>
+ </xsl:if>
+ <xsl:if test="@mailid">
+ <xsl:text> &lt;</xsl:text>
+ <xsl:value-of select="@mailid"/>
+ <xsl:text>&#160;</xsl:text>
+ <xsl:value-of select="@mailserver"/>
+ <xsl:text>&gt;</xsl:text>
+ </xsl:if>
+ <xsl:text>&#xa;</xsl:text>
+ </xsl:template>
+
+ <xsl:template match="community">
+ <xsl:text>[@@</xsl:text>
+ <xsl:value-of select="@site"/>
+ <xsl:text>|&lt;&lt;</xsl:text>
+ <xsl:value-of select="@name"/>
+ <xsl:text>&gt;&gt; </xsl:text>
+ <xsl:value-of select="@site"/>
+ <xsl:text>@@]&#xa;</xsl:text>
+ </xsl:template>
+
+</xsl:stylesheet>
+