<?xml version="1.0"?>
<!-- edited with XML Spy v3.5 (http://www.xmlspy.com) by  () -->
<!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 -->
<pbsonline>
<fileinfo>
<title>Prüfungsbeispielsammlung online </title>
<filename>pbsonline.xml</filename>
<description>Informationen über die Prüfungsbeispielsammlung Digital, ein Service der BasisGruppe Telematik</description>
<xsl:for-each select="//fileinfo/author">
<author>
<xsl:value-of select="name"/>
</author>
</xsl:for-each>
</fileinfo>
<xsl:apply-templates/>
</pbsonline>
<!-- ende page-->
</xsl:template>
<xsl:template match="bagru">
<!--		<xsl:copy-of select="navigation"/> -->
<xsl:copy-of select="document('navigation.xml')"/>
<xsl:apply-templates select="//pbsonline"/>
<xsl:apply-templates select="people"/>
<xsl:copy-of select="document('tmp/examlist-online.xml')"/>
</xsl:template>
<xsl:template match="//pbsonline">
<xsl:copy-of select="*"/>
</xsl:template>
<xsl:template match="people">
<xsl:apply-templates mode="PBSONLINE"/>
</xsl:template>
<!-- Filter PBS People -->
<xsl:template mode="PBSONLINE" match="person">
<xsl:if test="actions[@type='pbsonline']">
<person>
<xsl:copy-of select="*"/>
</person>
</xsl:if>
</xsl:template>
<xsl:template mode="PBSONLINE" match="*"/>
<!-- ignore unknown content -->
<xsl:template match="*"/>
</xsl:stylesheet>
