blob: af3fe7c6ea8d62d0f47f84800d713c2a12527545 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2007, 2018 IBM Corporation and others.
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/
SPDX-License-Identifier: EPL-2.0
Contributors:
IBM Corporation - initial API and implementation
-->
<templates>
<template id="org.eclipse.wst.xslt.templates.xsl_basic"
name="Basic stylesheet - XSLT 1.0"
context="xsl_new"
autoinsert="true"
deleted="false"
enabled="true"
description="Matches the root of the input"><![CDATA[<?xml version="1.0" encoding="${encoding}"?>
<xsl:stylesheet version="${xsl_version}" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<!-- TODO: Auto-generated template -->${cursor}
</xsl:template>
</xsl:stylesheet>]]></template>
<template id="org.eclipse.wst.xslt.templates.xsl_basic.xslt2"
name="Basic stylesheet - XSLT 2.0"
context="xsl_new"
autoinsert="true"
deleted="false"
enabled="true"
description="XSLT 2.0 - Matches the root of the input"><![CDATA[<?xml version="1.0" encoding="${encoding}"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<!-- TODO: Auto-generated template -->${cursor}
</xsl:template>
</xsl:stylesheet>]]></template>
<template id="org.eclipse.wst.xslt.templates.xsl_copy"
name="Copy stylesheet - XSLT 1.0"
context="xsl_new"
autoinsert="true"
deleted="false"
enabled="true"
description="Makes a copy of the input"><![CDATA[<?xml version="1.0" encoding="${encoding}"?>
<xsl:stylesheet version="${xsl_version}" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="${cursor}">
<!-- TODO: Auto-generated template -->
</xsl:template>
<!-- standard copy template -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>]]></template>
<template id="org.eclipse.wst.xslt.templates.xsl_copy.xslt2"
name="Copy stylesheet - XSLT 2.0"
context="xsl_new"
autoinsert="true"
deleted="false"
enabled="true"
description="Makes a copy of the input"><![CDATA[<?xml version="1.0" encoding="${encoding}"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="${cursor}">
<!-- TODO: Auto-generated template -->
</xsl:template>
<!-- standard copy template -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>]]></template>
</templates>