Changeset 4497
- Timestamp:
- 12/23/07 11:00:04 (1 year ago)
- 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 5 5 <xsl:param name="current-context" /> 6 6 7 <xsl:template match="proxy:return- news-by-location">7 <xsl:template match="proxy:return-images-by-tag-name"> 8 8 <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"/> 11 17 </xsl:template> 12 18
