Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkchong2008-05-14 21:55:35 +0000
committerkchong2008-05-14 21:55:35 +0000
commitb14bc6a3e476966a2627529d521a9db8faf8cf0b (patch)
tree27a504993f705ab7ba87a301fd36823dd09337e1 /bundles/org.eclipse.jst.ws.axis.creation.ui/deploy.xsl
parent7fdaf4f9bd3590318e44fad2be26168812d19f4e (diff)
downloadwebtools.webservices-b14bc6a3e476966a2627529d521a9db8faf8cf0b.tar.gz
webtools.webservices-b14bc6a3e476966a2627529d521a9db8faf8cf0b.tar.xz
webtools.webservices-b14bc6a3e476966a2627529d521a9db8faf8cf0b.zip
This commit was manufactured by cvs2svn to create tag 'v200805142257'.v200805142257
Diffstat (limited to 'bundles/org.eclipse.jst.ws.axis.creation.ui/deploy.xsl')
-rw-r--r--bundles/org.eclipse.jst.ws.axis.creation.ui/deploy.xsl26
1 files changed, 0 insertions, 26 deletions
diff --git a/bundles/org.eclipse.jst.ws.axis.creation.ui/deploy.xsl b/bundles/org.eclipse.jst.ws.axis.creation.ui/deploy.xsl
deleted file mode 100644
index 3fdf164ac..000000000
--- a/bundles/org.eclipse.jst.ws.axis.creation.ui/deploy.xsl
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- version="1.0"
- xmlns:xalan="http://xml.apache.org/xslt"
- xmlns:ns1="http://xml.apache.org/axis/wsdd/"
- xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
- <xsl:output method="xml" encoding="UTF-8"/>
-
- <xsl:param name="newClassName" select="ss"/>
-
- <xsl:template match="/ns1:deployment/ns1:service/ns1:parameter[@name='className']">
- <xsl:copy>
- <xsl:attribute name="name">className</xsl:attribute>
- <xsl:attribute name="value">
- <xsl:value-of select="$newClassName"/>
- </xsl:attribute>
- <xsl:apply-templates/>
- </xsl:copy>
- </xsl:template>
-
- <xsl:template match="@*|node()">
- <xsl:copy>
- <xsl:apply-templates select="@*|node()"/>
- </xsl:copy>
- </xsl:template>
-</xsl:stylesheet>

Back to the top