You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
502 B
20 lines
502 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
File : empty.xsl
|
|
Author: Keith Isdale <k_isdale@tpg.com.au>
|
|
Description: empty stylesheet for getting started
|
|
Copyright Reserved Under GPL
|
|
-->
|
|
<!-- This file does not require translation -->
|
|
<!-- NO TRANSLATION -->
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version="1.0">
|
|
|
|
<xsl:output method="text"/>
|
|
|
|
<xsl:template match="/">
|
|
<xsl:apply-templates />
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|
|
|