I need to choose random item from my XML by XSLT. I have such XML:
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<item>
<title>Nr. 19/2015</title>
<link>http://ugeskriftet.dk/blad/9-2016</link>
<description>Link og billed til det sidste nye Ugeskrift for Læger</description>
<image>
<url>http://orlovka.org.ru/biblioznajka/images/stories/pic6/01.png</url>
</image>
</item>
<item>
<title>Nr. 9/2016</title>
<link>http://ugeskriftet.dk/blad/9-2016</link>
<description>Bald - who are they are?</description>
<image>
<url>http://www.moscowbooks.ru/image/book2/313/big/i313969.jpg</url>
</image>
</item>
<item>
<title>Nr. 3/2014</title>
<link>http://ugeskriftet.dk/blad/9-2016</link>
<description>How to tell your shildren</description>
<image>
<url>http://www.zipsites.ru/me/literatura/Yuliya_Doppenganger_Kak_obyasnit_rebyonku_chto_Vy_sobiraetes/cover.jpg</url>
</image>
</item>
</channel>
</rss>
I need choose random item from this file by XSLT. My XSLT looks like this:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:sc="http://www.sitecore.net/sc"
xmlns:dot="http://www.sitecore.net/dot"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsh="http://www.matchwork.com/xsh"
exclude-result-prefixes="sc dot xsi xsh">
<!-- parameters -->
<xsl:param name="lang" select="'en'"/>
<xsl:param name="id" select="''"/>
<xsl:param name="sc_item"/>
<xsl:param name="sc_currentitem"/>
<xsl:param name="jobId" select="sc:qs('id')"/>
<xsl:output method="xml" indent="yes" encoding="utf-8" omit-xml-declaration="yes" />
<xsl:template match="/">
<div class="ReadingContainer">
<div class="LiTitle">
<xsl:call-template name="OutputSitecoreField">
<xsl:with-param name="root" select="$sc_currentitem"/>
<xsl:with-param name="fieldName" select="'RSS Title'"/>
</xsl:call-template>
</div>
<div class="ReadingList">
<xsl:for-each select="rss/channel/item">
<xsl:if test="position() <= 2">
<div class="ReadingItemContainer">
<div class="ReadingImgContainer">
<a class="ReadingUrl" target="_blank">
<xsl:attribute name="href">
<xsl:value-of select="link"/>
</xsl:attribute>
<img alt="book">
<xsl:attribute name="src">
<xsl:value-of select="url"/>
</xsl:attribute>
</img>
</a>
</div>
<div class="ReadingDescriptionContainer">
<p class="ReadingDate">
<xsl:value-of select="title"/>
</p>
<p class="ReadingDescription">
<xsl:value-of select="description"/>
</p>
</div>
</div>
</xsl:if>
</xsl:for-each>
</div>
</div>
</xsl:template>
<!-- Render text field from Sitecore -->
<xsl:template name="OutputSitecoreField">
<xsl:param name="root" select="''"/>
<xsl:param name="fieldName" select="''"/>
<xsl:if test="$fieldName != ''">
<xsl:value-of select="sc:fld($fieldName,$root)"/>
</xsl:if>
</xsl:template>
<xsl:template name="removeHtmlTags">
<xsl:param name="html"/>
<xsl:choose>
<xsl:when test="contains($html, '<')">
<xsl:value-of select="substring-before($html, '<')"/>
<!-- Recurse through HTML -->
<xsl:call-template name="removeHtmlTags">
<xsl:with-param name="html" select="substring-after($html, '>')"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$html"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
How i can show random item every time user is going on the page? Sorry for so much code, i am not sure in usefulness some part of the code, so i decided to keep all code. Thanks you