extract_text.xsl 650 B

12345678910111213141516
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  4. xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd"
  5. exclude-result-prefixes="xs"
  6. version="2.0">
  7. <xsl:template mode="system_cache__appinfo:extract_text" match="text()">
  8. <xsl:copy-of select="."/>
  9. </xsl:template>
  10. <xsl:template mode="system_cache__appinfo:extract_text" match="*">
  11. <xsl:apply-templates mode="system_cache__appinfo:extract_text"/>
  12. </xsl:template>
  13. </xsl:stylesheet>