From 2fc88595289f1ca04887dc9ddfe9f6093876bf62 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Sat, 8 Apr 2017 14:24:24 -0700 Subject: Integrate RSS feed --- www/index.sh | 52 +++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 47 insertions(+), 5 deletions(-) (limited to 'www') diff --git a/www/index.sh b/www/index.sh index 9d0a9b28..e188edfe 100755 --- a/www/index.sh +++ b/www/index.sh @@ -15,10 +15,18 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +BLOGTITLE="Libreboot News" +BLOGBASE="https://libreboot.org/news/" +BLOGDESCRIPTION="News on Libreboot development" + +title() { + sed -n 1p $f | sed -e s-^..-- +} + meta() { - URL=$(echo ${f%.md}.html | sed -e s-news/--) + URL=$(echo ${f%.md}.html | sed -e s-blog/--) - echo "[$(sed -n 1p $f | sed -e s-^..--)]($URL){.title}" + echo "[$(title)]($URL){.title}" echo "[$(sed -n 3p $f | sed -e s-^..--)]{.date}" echo "" tail -n +5 $f | perl -p0e 's/(\.|\?|\!)( |\n)(.|\n)*/.../g' @@ -27,10 +35,44 @@ meta() { echo "" } -cat news-list.md > news/index.md +# generate the index file + +FILES=$(ls -1 -t blog/*.md | sed -e s-.*index.md-- -e s-.*presentation.md--) -for f in $(ls -1 -t news/*.md | sed -e s-.*index.md-- -e s-.*presentation.md--) +cat blog-list.md > blog/index.md + +for f in $FILES do touch -d "$(sed -n 3p $f | sed -e 's/^..//g')" $f - meta >> news/index.md + meta >> blog/index.md done + +# generate an RSS index + +rss() { + echo '' + echo '' + + echo "$BLOGTITLE" + echo ""$BLOGBASE"blog/" + echo "$BLOGDESCRIPTION" + + for f in $FILES + do + # render content and escape + desc=$(sed ${f%.md}.bare.html -e 's//\>/g') + url="${f%.md}.html" + + echo '' + echo "$(title)" + echo "$BLOGBASE$url" + echo "$desc" + echo '' + done + + echo '' + echo '' +} + +rss > blog/feed.xml +cp blog/feed.xml feed.xml -- cgit v1.2.3-70-g09d2