Changeset 4497

Show
Ignore:
Timestamp:
12/23/07 11:00:04 (1 year ago)
Author:
xmlhacker
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/nuxleus/Web/Development/service/transform/controller/proxy/return-images-by-tag-name/base.xslt

    r4496 r4497  
    55  <xsl:param name="current-context" /> 
    66 
    7   <xsl:template match="proxy:return-news-by-location"> 
     7  <xsl:template match="proxy:return-images-by-tag-name"> 
    88    <xsl:variable name="location" select="func:resolve-variable(@location)" /> 
    9     <xsl:variable name="topic" select="func:resolve-variable(@topic)" /> 
    10     <xsl:sequence name="feed" select="document(concat(@uri, $location, ',', $topic))"/> 
     9    <xsl:variable name="topic" select="tokenize(func:resolve-variable(@topic), '\|')" /> 
     10    <xsl:variable name="uri" select="@uri"/> 
     11    <xsl:variable name="result"> 
     12      <xsl:for-each select="$topic"> 
     13        <xsl:sequence select="document(concat($uri, $location, ',', .))"/> 
     14      </xsl:for-each> 
     15    </xsl:variable> 
     16    <xsl:sequence select="$result"/> 
    1117  </xsl:template> 
    1218