iciice: XSL nach PDF, falscher Namensraum?

Beitrag lesen

Oh, das ist mir jetzt etwas peinlich, danke für die antwort.
Hatte dann noch ein Fehler in der Version, der ist aber behoben.
Jetzt habe ich noch einen andern FEhler undzwar wird mir gesagt das dass Template an dieser Stelle nicht zulässig ist.
Hier noch mal der QT:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0">

<xsl:output method="xml"/>
<xsl:template match="/">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">

<fo:layout-master-set>  
	<fo:simple-page-master master-name="PDF\_Ausgabe"  
	page-height="297mm" page-width="210mm" margin-left="15mm" margin-right="15mm" margin-top="15mm" margin-bottom="15mm">  
		<fo:region-body/>  
	</fo:simple-page-master>  
</fo:layout-master-set>  

<fo:page-sequence master-reference="PDF_Ausgabe">
<fo:flow flow-name="xsl-region-body">
<fo:block space-before="10mm" text-align="right">
   <fo:external-graphic src="MMS_09_Logo_farbe.jpg" content-height="80px" content-width="160px"/>
</fo:block>
<xsl:apply-templates select="Abteilung"/>
</fo:flow>
</fo:page-sequence>

<xsl:template match="Abteilung">
fo:table
fo:table-body
fo:table-row
<fo:table-cell border="solid 0.5pt black">
              fo:blockAbteilungsbezeichnung</fo:block>
</fo:table-cell>
fo:table-cell
              fo:block<xsl:value-of select="Abt_Name"/></fo:block>
</fo:table-cell>
</fo:table-row>
fo:table-row
<fo:table-cell border="solid 0.5pt black">
              fo:blockAbteilungsleiter</fo:block>
</fo:table-cell>
fo:table-cell
              fo:block<xsl:value-of select="Abt_Leiter"/></fo:block>
</fo:table-cell>
</fo:table-row>
fo:table-row
<fo:table-cell border="solid 0.5pt black">
              fo:blockKostenstelle</fo:block>
</fo:table-cell>
fo:table-cell
              fo:block<xsl:value-of select="@Kostenstelle"/></fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
  <xsl:for-each select="Mitarbeiter">
  <fo:table border="solid 1.5pt black" width="70%" font-family="Arial,Verdana,Helvetica" font-size="12pt" background-color="#dddddd" table-layout="fixed">

			<fo:table-body>  
			<fo:table-row border="solid 0.5pt black">  
			<fo:table-cell border="solid 0.5pt black">  
			              <fo:block>Personalnummer</fo:block>  
			</fo:table-cell>  
			<fo:table-cell>  
			              <fo:block><xsl:value-of select="@PNr"/></fo:block>  
			</fo:table-cell>  
			</fo:table-row>  
			<fo:table-row border="solid 0.5pt black">  
			<fo:table-cell border="solid 0.5pt black">  
			              <fo:block>Name</fo:block>  
			</fo:table-cell>  
			<fo:table-cell>  
			              <fo:block>Noch mehr Text</fo:block>  
			</fo:table-cell>  
			</fo:table-row>  
</fo:table-body>  
			</fo:table>  

</xsl:for-each>
</xsl:template>
</fo:root>
</xsl:template>

</xsl:stylesheet>