From 4d0bd914e7c1ee65f4036e60149a7b891906a5d3 Mon Sep 17 00:00:00 2001 From: George Abbott Date: Tue, 31 Oct 2023 17:54:07 +0000 Subject: Commit all to date. --- bib/bibadd | 2 ++ bib/bibcmp | 8 ++++++++ bib/biblio | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ bib/bibrm | 3 +++ 4 files changed, 68 insertions(+) create mode 100755 bib/bibadd create mode 100755 bib/bibcmp create mode 100755 bib/biblio create mode 100755 bib/bibrm (limited to 'bib') diff --git a/bib/bibadd b/bib/bibadd new file mode 100755 index 0000000..ae58e14 --- /dev/null +++ b/bib/bibadd @@ -0,0 +1,2 @@ +#!/bin/sh +# bibadd: add a new book entry to the bibliography. diff --git a/bib/bibcmp b/bib/bibcmp new file mode 100755 index 0000000..dbff044 --- /dev/null +++ b/bib/bibcmp @@ -0,0 +1,8 @@ +#!/bin/sh +# bibcmp: mark an entry as completed. +# This filters for all with status == ongoing, and can mark one as completed. +# Depends: fzf. + +grep "ongoing" $(orgdresolv "ORGD_BIBCSV_PATH") | \ + awk -F';' '{ printf "%s: %s\n", $2, $3 }' | \ + fzf diff --git a/bib/biblio b/bib/biblio new file mode 100755 index 0000000..a714c77 --- /dev/null +++ b/bib/biblio @@ -0,0 +1,55 @@ +#!/bin/sh +# Update the biblio.csv file, and reflect changes in the corresponding webpages, +# committing and pushing the changes if any made. +# Webpages changed: rd/index, rd/by-month. +# Dependencies: sc-im, git. + +BIBLIO="$HOME/docs/wr/orgd/kt/biblio.csv" +TABLE_FILE='/tmp/biblio-tbl-formatted' + +if [ "$1" = "-u" ] ; then + # Do nothing. This won't ask to update the file, but will just carry on, + # so that it can update the website. + echo "" > /dev/null +else + hash_before="$(sha256sum "$BIBLIO")" + sc-im --txtdelim=";" "$BIBLIO" + hash_after="$(sha256sum "$BIBLIO")" + if [ "$hash_before" = "$hash_after" ] ; then + echo "No changes made - exitting early!" + exit 0 + fi +fi + +####################### First half: update rd/index ########################### +WEBPAGE_PATH="$WEBSITE_PATH/rd/index.html" +DELIMITER_BEGIN="" +DELIMITER_END="" + +table_formatted="$(biblio-fmt-tbl "$BIBLIO")" + +echo "$table_formatted" > "$TABLE_FILE" +sed -i -ne "/$DELIMITER_BEGIN/ {p; r $TABLE_FILE" -e ":a; n; /$DELIMITER_END/ {p; b}; ba}; p" "$WEBPAGE_PATH" + +# Commit and push the changes +cd "$(dirname "$WEBPAGE_PATH")" +git add "$(basename "$WEBPAGE_PATH")" + +####################### Second half: update rd/by-month ####################### +WEBPAGE_PATH="$WEBSITE_PATH/rd/by-month.html" +DELIMITER_BEGIN="" +DELIMITER_END="" + +table_formatted="$(biblio-by-month "$BIBLIO")" + +echo "$table_formatted" > "$TABLE_FILE" +sed -i -ne "/$DELIMITER_BEGIN/ {p; r $TABLE_FILE" -e ":a; n; /$DELIMITER_END/ {p; b}; ba}; p" "$WEBPAGE_PATH" + +# Commit and push the changes +cd "$(dirname "$WEBPAGE_PATH")" +git add "$(basename "$WEBPAGE_PATH")" + + +######################### Commit and push all changes ######################### +ws-push + diff --git a/bib/bibrm b/bib/bibrm new file mode 100755 index 0000000..35ae34f --- /dev/null +++ b/bib/bibrm @@ -0,0 +1,3 @@ +#!/bin/sh +# Remove an entry from the bibliography file. +# Requires fzf. -- cgit v1.2.1