Author: ruwan
Date: Sun Aug 29 11:07:42 2010
New Revision: 990542
URL: http://svn.apache.org/viewvc?rev=990542&view=rev
Log:
Fixing the migration XSLT to migrate the spring configurations
Modified:
synapse/trunk/java/modules/migrator/src/main/resources/synapse-configuration-migrator.xslt
Modified:
synapse/trunk/java/modules/migrator/src/main/resources/synapse-configuration-migrator.xslt
URL:
http://svn.apache.org/viewvc/synapse/trunk/java/modules/migrator/src/main/resources/synapse-configuration-migrator.xslt?rev=990542&r1=990541&r2=990542&view=diff
==============================================================================
---
synapse/trunk/java/modules/migrator/src/main/resources/synapse-configuration-migrator.xslt
(original)
+++
synapse/trunk/java/modules/migrator/src/main/resources/synapse-configuration-migrator.xslt
Sun Aug 29 11:07:42 2010
@@ -19,16 +19,18 @@
-->
<!--
-This is the synapse migration xslt which will migrate the configuration from
the 1.x version to the 2.x compatible version
+This is the synapse migration xslt which will migrate the configuration from
the 1.x
+version to the 2.x compatible version
-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:syn="http://ws.apache.org/ns/synapse"
+ xmlns:spring="http://ws.apache.org/ns/synapse/spring"
xmlns:synNew="http://synapse.apache.org/ns/2010/04/configuration"
exclude-result-prefixes="syn">
<xsl:output method="xml" indent="yes" encoding="UTF-8"/>
- <xsl:template match="syn:*" priority="0">
+ <xsl:template match="syn:* | spring:*" priority="0">
<xsl:call-template name="convertNS"/>
</xsl:template>