...<xsl:apply-templates select="document(propfile)//property[not(@type='generic')]" /> )
I am not an XSLT guru--offhand, does anyone know of a simple way to get the interfaces to appear alphabetically?
It ought to be <xsl:apply-templates select"..."> <xsl:sort select="name"/> </xsl:apply-templates>
Substitute in the xsl:sort's select whatever is the sort key.
J.Pietschmann