[Home] [By Thread] [By Date] [Recent Entries]
At 2007-11-23 15:43 -0500, Michael Tracey Zellmann wrote:
I have a working solution, but I don't think it makes good use of the language. Correct ... the context item for the for-each is a number, it is not a document node, so *any* XPath location path address of nodes is going to fail because it doesn't know which document tree of nodes you want to look in. I was able to get the following to work, basically hand-coding one row for each of the year values. Indeed: put your document nodes into a variable and then index off of the variable when your context node is a number: <xsl:variable name="docs" select="documents/document"/>
<xsl:for-each select="1842 to 1862">
<tr><td><xsl:value-of select="."/></td>
<td>
<xsl:apply-templates select="$docs[year = . and
contains(title, 'Selectmen')"/>
</td>
<td>
<xsl:apply-templates select="$docs[year = . and
contains(title, 'School')"/>
</td>
</tr>
</xsl:for-each>I hope this helps. . . . . . . . . . . . . Ken -- Comprehensive in-depth XSLT2/XSL-FO1.1 classes: Austin TX,Jan-2008 World-wide corporate, govt. & user group XML, XSL and UBL training RSS feeds: publicly-available developer resources and training G. Ken Holman mailto:gkholman@xxxxxxxxxxxxxxxxxxxx Crane Softwrights Ltd. http://www.CraneSoftwrights.com/s/ Box 266, Kars, Ontario CANADA K0A-2E0 +1(613)489-0999 (F:-0995) Male Cancer Awareness Nov'07 http://www.CraneSoftwrights.com/s/bc Legal business disclaimers: http://www.CraneSoftwrights.com/legal
|

Cart



