<?xml version="1.0"?>
<!-- edited with XML Spy v3.0.7 NT (http://www.xmlspy.com) by stefan thalauer (basisgruppe telematik) -->
<!DOCTYPE entitys [
<!-- Sonderzeichen -->
<!ENTITY nbsp "&#160;">
<!ENTITY uuml "&#252;">
<!ENTITY Uuml "&#220;">
<!ENTITY auml "&#228;">
<!ENTITY Auml "&#196;">
<!ENTITY ouml "&#246;">
<!ENTITY Ouml "&#214;">
]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" omit-xml-declaration="no" version="1.0" standalone="yes" encoding="UTF-8"/>
<!-- Main rule: build xml skeleton -->
<xsl:template match="/">
<xsl:processing-instruction name="xml-stylesheet">type="text/xsl" href="layout.xsl"</xsl:processing-instruction>
<!--content -->
<meeting>
<fileinfo>
<title>Treffen der BasisGruppe</title>
<filename>meeting.xml</filename>
<description>Treffen der BasisGruppe Telematik an der TU Graz, Liste der aktuellen Protokolle</description>
<xsl:for-each select="//fileinfo/author">
<author>
<xsl:value-of select="name"/>
</author>
</xsl:for-each>
</fileinfo>
<xsl:apply-templates/>
</meeting>
<!-- ende page-->
</xsl:template>
<xsl:template match="bagru">
<!--		<xsl:copy-of select="navigation"/> -->
<xsl:copy-of select="document('navigation.xml')"/>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="meeting">
<xsl:copy-of select="abstract"/>
<xsl:copy-of select="day"/>
<xsl:copy-of select="time"/>
<xsl:copy-of select="location"/>
<!--		<xsl:copy-of select="abstract"/> -->
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="protocols">
<protocols>
<xsl:for-each select="protocol">
<xsl:sort select="date" order="descending"/>
<protocol>
<xsl:copy-of select="*"/>
</protocol>
</xsl:for-each>
</protocols>
</xsl:template>
<!-- ignore unknown content -->
<xsl:template match="*"/>
</xsl:stylesheet>
