Derek Basch wrote:
I gave the root element and all its children the same namespace in the xml
document and it still wont transform the (select-value-of="...) elements. I put
the revised XML and XSL below.
Hi Derek,
I don't see any revision in the XSL? I think you need:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:m="http://172.20.0.70:81/mamu/"
exclude-result-prefixes="m">
<xsl:template match="/">
<html>
<body>
<h2>Prediction Results</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th align="left">Start</th>
<th align="left">End</th>
<th align="left">Sequence</th>
</tr>
<xsl:for-each select="m:mamu_results/m:prediction">
<tr>
<td><xsl:value-of select="m:start"/></td>
<td><xsl:value-of select="m:end"/></td>
<td><xsl:value-of select="m:sequence"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
HTH,
Anton
Any ideas??? Thanks again.
XML:
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE mamu_results SYSTEM
"http://172.20.0.70:81/mamu/mhc_mamu_results.dtd">
<?xml-stylesheet type="text/xsl"
href="http://172.20.0.70:81/mamu/mhc_mamu_results.xsl"?>
<mamu_results xmlns='http://172.20.0.70:81/mamu/'>
<prediction_description>Predicting 8-mers binding to Mamu-A01 in sequence
"unnamed"</prediction_description>
<prediction>
<start>1</start>
<end>8</end>
<sequence>AAAAAAAA</sequence>
<mhc_affinity>4.7</mhc_affinity>
<combined_prediction>3.19</combined_prediction>
</prediction>
</mamu_results>
XSL:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>Prediction Results</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th align="left">Start</th>
<th align="left">End</th>
<th align="left">Sequence</th>
</tr>
<xsl:for-each select="mamu_results/prediction">
<tr>
<td><xsl:value-of select="start"/></td>
<td><xsl:value-of select="end"/></td>
<td><xsl:value-of select="sequence"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--