XSLでこの種のソートを行う方法を知っている人はいますか?
これが私がこれまでに持っているものですが、それは日ごとにソートされ、残りの日付は無視されます。
<xsl:apply-templates select="item">
<xsl:sort select="pubDate" data-type="text" order="descending"/>
</xsl:apply-templates>
迅速な対応をありがとう。正しい方向に進んでもらいました。なんとか解決できました!便利なリンクを見つけましたhttp://blog.mastykarz.nl/how-to-do-it-rss-aggregation-merging-multiple-xml-files-using-xslt/
XSLTバージョン2.0を使用していました。MMMの月で置換する変数を使用し、日付をサブストリング化する場合。
解決
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:variable name="Months" select="'Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec'"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="channel">
<xsl:copy>
<xsl:apply-templates select="@*|node()[not(preceding-sibling::item) and not(self::item)]"/>
<xsl:apply-templates select="item">
<!-- year -->
<xsl:sort select="substring(pubDate, 13, 4)" order="descending" data-type="number"/>
<!-- month -->
<xsl:sort select="string-length(substring-before($Months, substring(pubDate, 9, 3)))" order="descending" data-type="number"/>
<!-- day -->
<xsl:sort select="substring(pubDate, 6, 2)" order="descending" data-type="number"/>
<!-- hour -->
<xsl:sort select="substring(pubDate, 18, 2)" order="descending" data-type="number"/>
</xsl:apply-templates>
<xsl:apply-templates select="@*|node()[not(following-sibling::item) and not(self::item)]"/>
</xsl:copy>
</xsl:template>