﻿<?xml version="1.0"?>
<!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-css.xsl"</xsl:processing-instruction>
<!--content -->
<newsgrouplists>
<fileinfo>
<title>Telematik Newsgroup Listing</title>
<filename>nglist.xml</filename>
<description>Auflistung aller für das Studium Telematik relevanten Newsgroups</description>
</fileinfo>
<xsl:copy-of select="document('navigation.xml')"/>
<xsl:apply-templates/>
<text>
Unvollständigkeiten oder Fehler bitte an </text><eemail>martin.stadler@telematik.edu</eemail><text> melden.</text>
</newsgrouplists>

<!-- ende page-->
</xsl:template>

<xsl:template match="newsgroups">
<!--content -->
<xsl:apply-templates/>
<!-- ende page-->
</xsl:template>

<xsl:template match="nglist">
<nglist>
<xsl:copy-of select="*"/>
</nglist>
<!--xsl:apply-templates/-->
</xsl:template>

<!-- ignore unknown content -->
<xsl:template match="*"/>

</xsl:stylesheet>
