xsl-list
[Top] [All Lists]

Aw: [xsl] URI collection select?

2019-12-07 17:00:07
Is that for Saxon 9?
--
Diese Nachricht wurde von meinem Android Mobiltelefon mit GMX Mail gesendet.
Am 07.12.19, 23:51 schrieb "dvint(_at_)dvint(_dot_)com" <xsl-list-service(_at_)lists(_dot_)mulberrytech(_dot_)com>:
I once upon a time found a documentation with examples on various way to build collections and for the life of me I cannot find it again.

I have a situation where I have files with a .dita and .xml file extensions. I thought there was a way to do this in one select statement but all the ways I can think of do not work. I've tried separating the extensions with a comma, a space and a colon and none of them work - no results are returned. 

So I have this configuration:

    <xsl:variable name="topiccollectionString"
        select="concat($srcPath, '?select=*.dita;recurse=no')"/>
   
<xsl:variable name="topicfileSet" select="uri-collection($topiccollectionString)"/>


   
<xsl:variable name="xmltopiccollectionString"
        select="concat($srcPath, '?select=*.xml;recurse=no')"/>
   
<xsl:variable name="xmltopicfileSet" select="uri-collection($xmltopiccollectionString)"/>


I then have 2 for-each statements to process both lists.


<Prev in Thread] Current Thread [Next in Thread>
  • Aw: [xsl] URI collection select?, Martin Honnen martin(_dot_)honnen(_at_)gmx(_dot_)de <=