View stylesheet

XML schema http://air-climate.eionet.europa.eu/schemas/AirQualityQuestionnaire/AirQualityQuestionnaire-form18.xsd
Output type HTML
Description HTML
XSL file form18.xslt (Last modified: 15 Apr 2009 16:33 )
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:output method="xml" indent="yes"
		doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
		doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
		omit-xml-declaration="yes" />

	<xsl:param name="xml_folder_uri" />
	<xsl:variable name="lang">en</xsl:variable>

	<!-- Uncommment the lines below for production use -->
	<xsl:variable name="labels_xml" select="document(concat($xml_folder_uri,'aqq-labels.xml'))" />

	<!-- Uncomment the lines below for development use
	<xsl:variable name="labels_xml" select="document('../xml/aqq-labels.xml')" />
   -->


	<xsl:variable name="labels" select="$labels_xml/tmx/body" />
<xsl:template match="form18">
	<html>
		<head>
			<style type="text/css">
				table {
					border: 1px solid black;
					border-collapse: collapse;
					width: 100%;
				}
				table th {
					border: 1px solid black;
				}
				table td {
					border: 1px solid black;
				}
			</style>
		</head>
		<body>
			<h1>
				<xsl:value-of select="$labels/tu[@tuid='lbl-form18']/tuv[@xml:lang=$lang]" />
				- <xsl:value-of select="$labels/tu[@tuid='lbl-form18-title']/tuv[@xml:lang=$lang]" />
			</h1>
			<table>
				<thead>
					<tr>
						<th><xsl:value-of select="$labels/tu[@tuid='lbl-station-code']/tuv[@xml:lang=$lang]" /></th>
						<th><xsl:value-of select="$labels/tu[@tuid='lbl-arithmetic-mean']/tuv[@xml:lang=$lang]" /></th>
						<th><xsl:value-of select="$labels/tu[@tuid='lbl-median']/tuv[@xml:lang=$lang]" /></th>
						<th><xsl:value-of select="$labels/tu[@tuid='lbl-percentile-98']/tuv[@xml:lang=$lang]" /></th>
						<th><xsl:value-of select="$labels/tu[@tuid='lbl-maximum-concentration-units']/tuv[@xml:lang=$lang]" /></th>
					</tr>
				</thead>
				<tbody>
					<xsl:for-each select="form18-row">
						<tr>
							<td><xsl:value-of select="eoi-station-code"/></td>
							<td><xsl:value-of select="arithmetic-mean"/></td>
							<td><xsl:value-of select="median"/></td>
							<td><xsl:value-of select="percentile-98"/></td>
							<td><xsl:value-of select="maximum-concentration"/></td>
						</tr>
					</xsl:for-each>
				</tbody>
			</table>
			<h2><xsl:value-of select="$labels/tu[@tuid='lbl-form-comments']/tuv[@xml:lang=$lang]" /></h2>
			<p><xsl:value-of select="form-comments"/></p>
		</body>
	</html>
</xsl:template>
</xsl:stylesheet>