I have an xml file which can be dynamic (meaning the number of rows can be 0, 1, 2 or many in the following xml example). How does the xsl (or xsl-fo) handle this case? Any examples or pointers would be greatly appreciated.
<form>
<table>
<row>
<date>2012-02-10</date>
<departure>Boston</departure>
<arrival>NYC</arrival>
<typeOfTransport>Flight</typeOfTransport>
<estimatedCost>$300.00</estimatedCost>
</row>
<row>
<date>2012-02-12</date>
<departure>NYC</departure>
<arrival>Boston</arrival>
<typeOfTransport>Flight</typeOfTransport>
<estimatedCost>$200.00</estimatedCost>
</row>
</table>
</form>