<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="/pool/xslt_ht.xslt" type="application/xml"?>
<xsl:stylesheet
  xmlns:xsl = "http://www.w3.org/1999/XSL/Transform"
  xmlns:l = "http://herbaer.de/xmlns/20141210/localization"
  xmlns:d = "http://herbaer.de/xmlns/20051201/doc"
  version = "1.0"
>
<d:info xmlns="http://herbaer.de/xmlns/20051201/doc">
  <title>localization_idlist.xslt</title>
  <subtitle>Liste der IDs der Lokalisierungsdatei</subtitle>
  <date>2014-12-20</date>
  <author>
    <personname>
      <firstname>Herbert</firstname>
      <surname>Schiemann</surname>
    </personname>
    <email>h.schiemann@herbaer.de</email>
  </author>
</d:info>

<d:para>
Vorlagen für die Ausgabe von Text.
</d:para>
<xsl:include href="/pool/txt.xslt"/>

<xsl:output method="text" encoding="utf-8"/>

<d:para>
Alle id-Werte werden ausgegeben.
</d:para>
<xsl:template match="/l:localization">
  <xsl:apply-templates select="l:t/@id"/>
</xsl:template>

<d:para>
Ein id-Wert in einer Zeile
</d:para>
<xsl:template match="@id">
  <xsl:value-of select="concat (., $txt.break)"/>
</xsl:template>

</xsl:stylesheet>
