This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: On the XPath to my editor....


>
> Example:
> <xsl:param name="xsd-path">/xs:schema[1]/xs:element[5]</xsl:param>
> <xsl:param name="schema" select="document('loc_of_schema')"/>
>
> <xsl:apply-templates select="$schema/*[saxon:evaluate($xsd-path)]"/>
> ...
>
>
> But what I end up getting is all the child elements of the xs:schema 
> element.


I think I've got it with a for-each loop:

<xsl:param name="schema" 
select="document(//@xsi:noNamespaceSchemaLocation)/*"/>            

 <xsl:for-each select="$schema">
        <xsl:apply-templates select="saxon:evaluate($xsd-path)"/>  
</xsl:for-each>

But, I feel a little wierd about using for-each like this. Seems like 
there should be a way to do this without running the risk of having the 
"for loop" and the possibiliy of my apply templates getting called more 
than once.

-Thanks,
Mark



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]