20 lines
852 B
XML
20 lines
852 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- ====================================================================== -->
|
|
<!-- Extract the content of <version> element from an XML file -->
|
|
<!-- ====================================================================== -->
|
|
<!-- This XSL script processes the <version> elements of an XML file and -->
|
|
<!-- outputs its content. It is used to check for outdated translations. -->
|
|
<!-- ====================================================================== -->
|
|
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:output method="text" encoding="UTF-8"/>
|
|
|
|
<xsl:template match="version">
|
|
<xsl:value-of select="."/>
|
|
</xsl:template>
|
|
|
|
<!-- Suppress output of text nodes, which would be the default -->
|
|
<xsl:template match="text()"/>
|
|
</xsl:stylesheet>
|