blob: cace5387a58fd35e1acb7010771cddaa35dbf8b7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
<?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="tmw-revolt">
<xsl:text>^ rEvolt Contributors ^^
</xsl:text>
<xsl:text>^ Nickname ^ Real Name / Email ^ Link ^
</xsl:text>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="evol">
<xsl:text>^ Evol Online Contributors ^^
</xsl:text>
<xsl:text>^ Nickname ^ Real Name / Email ^ Link ^
</xsl:text>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="tmw-legacy">
<xsl:text>^ The Mana World Legacy Contributors ^^
</xsl:text>
<xsl:text>^ Nickname ^ Real Name / Email ^ Link ^
</xsl:text>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="tmw-ufb">
<xsl:text>^ Unknown Flying Bullet Contributors ^^
</xsl:text>
<xsl:text>^ Nickname ^ Real Name / Email ^ Link ^
</xsl:text>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="freesound">
<xsl:text>^ Freesound Contributors ^^
</xsl:text>
<xsl:text>^ Nickname ^ Real Name / Email ^ Link ^
</xsl:text>
<xsl:apply-templates/>
</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:choose>
<xsl:when test="@page">
<xsl:text> </xsl:text>
<xsl:value-of select="@page"/>
<xsl:text> |</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text> No Data |</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>
|