S
sqad
Hi Guys,
I am following along this example here:
http://www.ibm.com/developerworks/xml/library/x-tipmultxsl.html
It works, but instead of outputting only the value of the attribute:
<xsl:value-of select="@run"/>
within each of the generated documents, I want each of the files to
have the actual xml content like so:
test1.html
<testrun run="test1">
<test name="foo" pass="true" />
<test name="bar" pass="true" />
<test name="baz" pass="true" />
</testrun>
test2.html
<testrun run="test2">
<test name="foo" pass="true" />
<test name="bar" pass="false" />
<test name="baz" pass="false" />
</testrun>
Is this possible? This is because I am splitting a very large xml
document into individual xml documents.
Hope someone can help.
Thank you.
/sqad
I am following along this example here:
http://www.ibm.com/developerworks/xml/library/x-tipmultxsl.html
It works, but instead of outputting only the value of the attribute:
<xsl:value-of select="@run"/>
within each of the generated documents, I want each of the files to
have the actual xml content like so:
test1.html
<testrun run="test1">
<test name="foo" pass="true" />
<test name="bar" pass="true" />
<test name="baz" pass="true" />
</testrun>
test2.html
<testrun run="test2">
<test name="foo" pass="true" />
<test name="bar" pass="false" />
<test name="baz" pass="false" />
</testrun>
Is this possible? This is because I am splitting a very large xml
document into individual xml documents.
Hope someone can help.
Thank you.
/sqad