XSL遍历项目列表

时间:2017-04-27 13:55:35

标签: loops xslt rss sharepoint-2013

我有一个RSS来源,它是从一个被遗弃的“当天的笑话”中抽出来的。博客。由于博客不再更新,我想遍历列表并每天显示不同的项目,理想情况是按时间顺序排列。

  

如何识别“第一个”'列表中的项目(最早的帖子),然后每天显示下一个项目?

rss来源在这里:http://feeds.feedburner.com/DailyJokes-ACleanJokeEveryday?format=xml 完整列表位于:http://dailyjokes.somelifeblog.com/

我的XSL代码在这里,目前显示位置2的项目,这是最近的帖子:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
  <xsl:template match="/">
    <xsl:apply-templates select="//item[position() &lt; 2]"/>
  </xsl:template>

  <xsl:template match="item">
    <content-item>
      <h1><xsl:value-of select="substring-before(title, ' #Joke')"/></h1>     
      <p><xsl:value-of select="substring-before(description, '&lt;a href')" disable-output-escaping="yes"/></p>
    </content-item>
  </xsl:template>
</xsl:stylesheet>

我正在使用SharePoint 2013 RSS webpart

显示此Feed

我的目标是每天展示不同的项目,但我可能会接受简单的随机化。此外,如果任何人可以建议一天的免费或费用的笑话&#39;适合我的工作内联网的网站,我们将不胜感激!

1 个答案:

答案 0 :(得分:1)

  

我的目标是每天展示不同的商品

要实现目标,您的处理器需要知道当前日期。

以下是一个最小化的示例,显示如何使用日期以便每天检索不同的项目:

<强> XML

<rss>
    <channel>
        <item>
            <title>Alpha</title>
        </item>
        <item>
            <title>Bravo</title>
        </item>
        <item>
            <title>Charlie</title>
        </item>
        <item>
            <title>Delta</title>
        </item>
        <item>
            <title>Echo</title>
        </item>
    </channel>
</rss>

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:param name="current-datetime">2017-04-27T00:00:00</xsl:param>

<xsl:template match="/rss">
    <xsl:variable name="JDN">
        <xsl:call-template name="JDN">
            <xsl:with-param name="date" select="$current-datetime"/>
        </xsl:call-template>
    </xsl:variable>
    <xsl:variable name="n" select="count(channel/item)" />
    <output>
        <xsl:apply-templates select="channel/item[$JDN mod $n + 1]"/>
    </output>
</xsl:template>

<xsl:template match="item">
    <item>
        <xsl:value-of select="title"/>
    </item>     
</xsl:template>

<xsl:template name="JDN">
    <xsl:param name="date"/>
    <xsl:param name="year" select="substring($date, 1, 4)"/>
    <xsl:param name="month" select="substring($date, 6, 2)"/>
    <xsl:param name="day" select="substring($date, 9, 2)"/>
    <xsl:param name="a" select="floor((14 - $month) div 12)"/>
    <xsl:param name="y" select="$year + 4800 - $a"/>
    <xsl:param name="m" select="$month + 12*$a - 3"/>
    <xsl:value-of select="$day + floor((153*$m + 2) div 5) + 365*$y + floor($y div 4) - floor($y div 100) + floor($y div 400) - 32045" />
</xsl:template> 

</xsl:stylesheet>

在此示例中,结果为:

<?xml version="1.0" encoding="UTF-8"?>
<output>
  <item>Bravo</item>
</output>

现场演示:http://xsltransform.net/pNmBxZK

如果您的处理器支持EXSLT date:date-time()扩展功能,则可以将样式表标题修改为:

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:date="http://exslt.org/dates-and-times"
extension-element-prefixes="date">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:param name="current-datetime" select="date:date-time()"/>

对于SharePoint,我猜您需要使用 ddwrt 命名空间中的TodayIso函数。