Here is the xsl that I am trying to finish:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0">
<xsl:output method="xml"/>
<xsl:template match="/">
<teams>
<xsl:apply-templates select="/teams/team-members/team"/>
</teams>
</xsl:template>
<xsl:template match="team">
<team>
<teamname><xsl:value-of select="team-name"/></teamname>
<xsl:apply-templates select="player"/>
</team>
</xsl:template>
<xsl:template match="player">
<player>
<xsl:variable name="player-name" select="." />
<name><xsl:value-of select="$player-name"/></name>
<number>DON'T KNOW WHAT TO PUT HERE</number>
<weight>DON'T KNOW WHAT TO PUT HERE</weight>
<height>DON'T KNOW WHAT TO PUT HERE</height>
</player>
</xsl:template>
</xsl:stylesheet>
Thanks
Kevin Nilson
http://www.javaclimber.com