Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3cd29197d8cde1770ca4c77c66cb80732dd94afd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8"?>
<templates>
<template id="org.eclipse.wst.xslt.templates.xsl_basic"
       name="Basic stylesheet"
       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"
     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="XSLT 2.0 Copy stylesheet"
     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>

Back to the top