Compliant with the XPipe XML Component Architecture (http://xpipe.sourceforge.net)
Documentation |
---|
SynopsisDo nothing i.e. replicate input file on output file having passed input through XSLT engine. ParametersNone DescriptionDo nothing i.e. replicate input file on output file. |
Details Summary | |
---|---|
Version | 0.1 |
Author | Sean McGrath |
KeyWords | XSLT |
Null Transformation | |
Parameters |
Pre | |
---|---|
HREF | None |
Type | None |
Encoding | PLAIN |
ExtractFilename | None |
CLASSPATH | None |
Body | None |
Code | |
---|---|
Type | XSLT |
Encoding | PLAIN |
ExtractFilename | None |
CLASSPATH | None |
<!-- Null Transformation --> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <!-- Whenever you match any node or any attribute --> <xsl:template match="node()|@*"> <!-- Copy the current node --> <xsl:copy> <!-- Including any attributes it has and any child nodes --> <xsl:apply-templates select="@*|node()"/> </xsl:copy> </xsl:template> </xsl:stylesheet> |
Post | |
---|---|
HREF | None |
Type | None |
Encoding | PLAIN |
ExtractFilename | None |
CLASSPATH | None |
Body | None |
Test : First Test | |||||||
---|---|---|---|---|---|---|---|
Parameters | |||||||
Input |
| ||||||
Output |
|
Resource : UnitTestFile1 | |
---|---|
Encoding | PLAIN |
ExtractFilename | None |
Body | <?xml version="1.0" encoding="UTF-8"?> <test> This is a two line test document </test> |
Resource : UnitTestFile2 | |
---|---|
Encoding | PLAIN |
ExtractFilename | None |
Body | <?xml version="1.0" encoding="UTF-8"?> <test> This is a two line test document </test> |