From 56c57f94738efab8b0bf83dc68480931a2ceee00 Mon Sep 17 00:00:00 2001 From: defanor Date: Tue, 1 May 2018 06:10:19 +0300 Subject: Focus on source XML manipulation, introduce indexes Instead of XHTML or Atom, so resulting files get generated out of custom XML structures now. This was needed to get indexes that won't depend on Atom (and to avoid the duplication). Now indexes can be included with something like the following: --- tools/html-to-atom.sh | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100755 tools/html-to-atom.sh (limited to 'tools/html-to-atom.sh') diff --git a/tools/html-to-atom.sh b/tools/html-to-atom.sh deleted file mode 100755 index 3bebf45..0000000 --- a/tools/html-to-atom.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -# Composes an atom feed out of XHTML files. - -BASEDIR=~/homepage -TOOLS="${BASEDIR}/tools" -SOURCES="${BASEDIR}/src" -ATOM="${BASEDIR}/atom.xml" -NOTES="${BASEDIR}/notes" - -(echo '' && - echo '' && - find "${NOTES}" -name '*.xhtml' | - # grep -Ev "^(${TOOLS}|${SOURCES}).*" | - sed -e "sS^${BASEDIR}/\(.*\)SS" && - echo '') | - xsltproc "${TOOLS}/html-to-atom-dump.xsl" - | - xsltproc "${TOOLS}/atom-sort.xsl" - | - xsltproc "${TOOLS}/atom-limit.xsl" - | - xmllint --format --nsclean - > "${ATOM}" -- cgit v1.2.3