2012-04-21 21:42:16 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2012-04-22 14:27:16 +00:00
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
|
2012-04-21 21:42:16 +00:00
|
|
|
|
2012-04-22 14:27:16 +00:00
|
|
|
<xsl:variable name="action" select="/action"/>
|
2012-04-21 21:42:16 +00:00
|
|
|
|
2012-04-22 14:27:16 +00:00
|
|
|
<xsl:template match="/">
|
|
|
|
<xsl:apply-templates select="doc('crawler-beans-template.cxml')/*"/>
|
|
|
|
</xsl:template>
|
2012-04-21 21:42:16 +00:00
|
|
|
|
2012-04-22 14:27:16 +00:00
|
|
|
<xsl:template match="@* | node()">
|
|
|
|
<xsl:copy>
|
|
|
|
<xsl:apply-templates select="@* | node()"/>
|
|
|
|
</xsl:copy>
|
|
|
|
</xsl:template>
|
2012-04-21 21:42:16 +00:00
|
|
|
|
2012-04-22 14:27:16 +00:00
|
|
|
<xsl:template match="url">
|
|
|
|
<xsl:value-of select="$action/@url"/>
|
|
|
|
</xsl:template>
|
2012-04-21 21:42:16 +00:00
|
|
|
|
2012-04-22 14:27:16 +00:00
|
|
|
</xsl:stylesheet>
|