| Commit in servicemix/base/src/test/resources/org/servicemix/components/xslt on MAIN | |||
| router.xsl | +7 | -7 | 1.4 -> 1.5 |
rolled back a bad change that broke the test
servicemix/base/src/test/resources/org/servicemix/components/xslt
diff -u -r1.4 -r1.5 --- router.xsl 17 Aug 2005 02:54:21 -0000 1.4 +++ router.xsl 17 Aug 2005 10:20:43 -0000 1.5 @@ -12,26 +12,26 @@
<!-- lets forward the inbound message to a service -->
<xsl:when test="@id = '4'">
- <jbi.forward service="foo:trace"/>
+ <jbi:forward service="foo:trace"/>
</xsl:when>
<!-- lets generate the output XML to use as input, copy the input properties and define some new propertes -->
<xsl:when test="@id = '12'">
- <jbi.invoke service="foo:script"> - <jbi.copyProperties/> - <jbi.setOutProperty name="foo" select="@sent"/>
+ <jbi:invoke service="foo:script"> + <jbi:copyProperties/> + <jbi:setOutProperty name="foo" select="@sent"/>
<cheese code="[EMAIL PROTECTED]">
<description>This is some content generated from the routing XSL</description>
</cheese>
- </jbi.invoke>
+ </jbi:invoke>
</xsl:when>
<xsl:when test="@id != '2'">
- <jbi.forward service="foo:receiver"/>
+ <jbi:forward service="foo:receiver"/>
</xsl:when>
<xsl:otherwise>
- <jbi.forward service="foo:trace"/>
+ <jbi:forward service="foo:trace"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
