summaryrefslogtreecommitdiff
path: root/tools/atom-sort.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/atom-sort.xsl')
-rw-r--r--tools/atom-sort.xsl29
1 files changed, 0 insertions, 29 deletions
diff --git a/tools/atom-sort.xsl b/tools/atom-sort.xsl
deleted file mode 100644
index a00b599..0000000
--- a/tools/atom-sort.xsl
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:atom="http://www.w3.org/2005/Atom"
- xmlns:xhtml="http://www.w3.org/1999/xhtml"
- xmlns="http://www.w3.org/2005/Atom"
- version="1.0">
- <xsl:output method="xml" indent="yes"/>
-
- <xsl:template match="/">
- <xsl:apply-templates />
- </xsl:template>
-
- <xsl:template match="atom:feed">
- <feed>
- <xsl:apply-templates select="node()[not(self::atom:entry)]" />
- <!-- Sort by modification date, descending. -->
- <xsl:apply-templates select="atom:entry">
- <xsl:sort select="atom:updated" order="descending"/>
- </xsl:apply-templates>
- </feed>
- </xsl:template>
-
- <!-- Copy everything else -->
- <xsl:template match="node()" priority="0">
- <xsl:copy-of select="." />
- </xsl:template>
-
-</xsl:stylesheet>