summaryrefslogtreecommitdiff
path: root/bib
diff options
context:
space:
mode:
authorGeorge Abbott <george@gabbott.dev>2023-10-31 17:54:07 +0000
committerGeorge Abbott <george@gabbott.dev>2023-10-31 17:54:07 +0000
commit4d0bd914e7c1ee65f4036e60149a7b891906a5d3 (patch)
treec2a6751823e064e003cd4f6166df07bfc106d7eb /bib
Commit all to date.
Diffstat (limited to 'bib')
-rwxr-xr-xbib/bibadd2
-rwxr-xr-xbib/bibcmp8
-rwxr-xr-xbib/biblio55
-rwxr-xr-xbib/bibrm3
4 files changed, 68 insertions, 0 deletions
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="<!-- rd:begin -->"
+DELIMITER_END="<!-- rd: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="<!-- rd-by-month:begin -->"
+DELIMITER_END="<!-- rd-by-month: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.