aboutsummaryrefslogtreecommitdiff
path: root/utility
diff options
context:
space:
mode:
Diffstat (limited to 'utility')
-rwxr-xr-xutility/fetch_feed.sh3
-rw-r--r--utility/reference_commit.xsl25
2 files changed, 0 insertions, 28 deletions
diff --git a/utility/fetch_feed.sh b/utility/fetch_feed.sh
deleted file mode 100755
index 37393f6..0000000
--- a/utility/fetch_feed.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/env sh
-
-curl $1 | sed -e 's~^\([\*]\)\{3\}~\t\t\*~g' -e 's~^\([\*]\)\{2\}~\t\*~g'
diff --git a/utility/reference_commit.xsl b/utility/reference_commit.xsl
deleted file mode 100644
index 3423cd9..0000000
--- a/utility/reference_commit.xsl
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:stylesheet
- version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
->
-
-<xsl:template match="@* | node()" mode="commit">
- <xsl:copy>
- <xsl:apply-templates select="@* | node()" mode="commit"/>
- </xsl:copy>
-</xsl:template>
-
-<xsl:template match="commit" mode="commit">
- <xsl:copy>
- <xsl:attribute name="repository">
- <xsl:value-of select="../@handle"/>
- </xsl:attribute>
-
- <xsl:apply-templates select="@* | node()" mode="commit"/>
- </xsl:copy>
-</xsl:template>
-
-<xsl:template match="title | message | date | author | link | text()" mode="commit"/>
-
-</xsl:stylesheet>