102 lines
3.2 KiB
HTML
102 lines
3.2 KiB
HTML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:str="http://exslt.org/strings"
|
|
exclude-result-prefixes = "str"
|
|
version='1.0'>
|
|
|
|
<xsl:output method = "xml"
|
|
encoding = "UTF-8"
|
|
omit-xml-declaration = "no"
|
|
doctype-system = "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
|
|
doctype-public = "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
indent = "yes"/>
|
|
|
|
<xsl:param name="lsr-version">VERSION UNDEFINED</xsl:param>
|
|
|
|
<xsl:template match="page">
|
|
<xsl:variable name="title">
|
|
<xsl:value-of select="@title"/>
|
|
</xsl:variable>
|
|
<xsl:variable name="pagetitle">
|
|
<xsl:choose>
|
|
<xsl:when test="@pagetitle">
|
|
<xsl:value-of select="@pagetitle"/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:value-of select="@title"/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
<html xml:lang="en">
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="ltru.css" />
|
|
<title>Language Tags: <xsl:value-of select="$title"/></title>
|
|
</head>
|
|
<body>
|
|
<div><img id="ltag-icon" src="ltag-icon-en.png" alt=""/></div>
|
|
<h1 class="main-title"><xsl:value-of select="$pagetitle"/></h1>
|
|
<xsl:apply-templates select="*"/>
|
|
<hr class="before-footer"/>
|
|
<p class="footer"><a href="index.html">Home</a>. Web site maintained by
|
|
<code><a href="mailto:webmaster@langtag.net">webmaster@langtag.net</a></code>.
|
|
Hosted by <a href="http://www.afnic.fr/">AFNIC</a>.
|
|
</p>
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="lsr-version">
|
|
<xsl:value-of select="$lsr-version"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="wikipedia">
|
|
<xsl:param name="link"/>
|
|
<xsl:param name="text"/>
|
|
<xsl:variable name="actuallink">
|
|
<xsl:choose>
|
|
<xsl:when test="$link = ''">
|
|
<xsl:value-of select="$text"/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:value-of select="$link"/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
<a><xsl:attribute name="href">http://en.wikipedia.org/wiki/<xsl:value-of select="$actuallink"/></xsl:attribute><xsl:value-of select="$text"/></a>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="wikipedia">
|
|
<xsl:variable name="word">
|
|
<xsl:choose>
|
|
<xsl:when test="@name">
|
|
<xsl:value-of select="@name"/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:value-of select="text()"/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
<xsl:variable name="path">
|
|
<xsl:choose>
|
|
<xsl:when test="function-available('str:encode-uri')">
|
|
<xsl:value-of select="str:encode-uri($word, true())"/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:value-of select="$word"/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
<xsl:call-template name="wikipedia">
|
|
<xsl:with-param name="link" select="$path"/>
|
|
<xsl:with-param name="text" select="text()"/>
|
|
</xsl:call-template>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="@*|node()">
|
|
<xsl:copy>
|
|
<xsl:apply-templates select="@*|node()"/>
|
|
</xsl:copy>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|