diff options
-rw-r--r-- | contrib_xsl/about-server.xsl | 18 | ||||
-rw-r--r-- | contrib_xsl/contributors.xml | 9 |
2 files changed, 25 insertions, 2 deletions
diff --git a/contrib_xsl/about-server.xsl b/contrib_xsl/about-server.xsl index 29e9a48..2d8610f 100644 --- a/contrib_xsl/about-server.xsl +++ b/contrib_xsl/about-server.xsl @@ -30,9 +30,17 @@ Copyright (C) 2016 Evol Online --> <xsl:apply-templates select="contributor"/> </xsl:template> + <xsl:template match="freesound"> + <xsl:text>
##3---------------------------
</xsl:text> + <xsl:text>##3-- <<Freesound Contributors>> --
</xsl:text> + <xsl:text>##3---------------------------

</xsl:text> + + <xsl:apply-templates select="freesoundcontributor"/> + </xsl:template> + <xsl:template match="other"> <xsl:text>
##3---------------------------
</xsl:text> - <xsl:text>##3-- <<Related Community>> --
</xsl:text> + <xsl:text>##3-- <<Related Communities>> --
</xsl:text> <xsl:text>##3---------------------------

</xsl:text> <xsl:apply-templates select="community"/> @@ -55,6 +63,13 @@ Copyright (C) 2016 Evol Online --> <xsl:text>
</xsl:text> </xsl:template> + <xsl:template match="freesoundcontributor"> + <xml:text>##9<xsl:value-of select="@nick"/> </xml:text> + <xsl:text> <</xsl:text> + <xsl:value-of select="@page"/> + <xsl:text>
</xsl:text> + </xsl:template> + <xsl:template match="community"> <xsl:text>[@@</xsl:text> <xsl:value-of select="@site"/> @@ -66,4 +81,3 @@ Copyright (C) 2016 Evol Online --> </xsl:template> </xsl:stylesheet> - diff --git a/contrib_xsl/contributors.xml b/contrib_xsl/contributors.xml index dfec9de..dfcfd53 100644 --- a/contrib_xsl/contributors.xml +++ b/contrib_xsl/contributors.xml @@ -94,6 +94,15 @@ http://wiki.themanaworld.org/index.php/Contributors <contributor nick="Arikel"/> <contributor nick="Varuna"/> </tmw-ufb> + <!-- Freesound Contributors --> + <freesound> + <freesoundcontributor nick="D W" page="http://freesound.org/people/D%20W/"/> + <freesoundcontributor nick="beerbelly38" page="http://freesound.org/people/beerbelly38/"/> + <freesoundcontributor nick="spookymodem" page="http://freesound.org/people/spookymodem/"/> + <freesoundcontributor nick="Q.K." page="http://freesound.org/people/Q.K./"/> + <freesoundcontributor nick="SkeetMasterFunk69" page="http://freesound.org/people/SkeetMasterFunk69/"/> + </freesound> + <!-- Related Communities --> <other> <community name="OpenGameArt" site="http://opengameart.org"/> <community name="TheManaWorld-Br" site="http://tmw-br.scall.org"/> |