blob: 6870033e77911b73eaeccd769cfaec7c3812671c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#!/bin/sh
# Takes:
# ws-replace begin end origin dest commitident txt|csv script
# Begin: <!-- ident:begin -->
# End: <!-- ident:end -->
# Origin: $HOME/docs/wr/orgd/kt/biblio.csv
# Dest: $WEBSITE_PATH/rd/index.html
# Commitident: Biblio (: updated ...)
# Txt|Csv: csv
# script: biblio-by-month
# File If Origin gives a directory (as for example, the script called
# will update a whole directory), then File gives the exact file
# to modify.
# If `txt`:
# Removes all comments; treats each line as an entry,
# and tab as the delimiter. Edits are made with: $EDITOR
# or $VISUAL or nvim or vim or vi.
# If `csv`:
# Calls out to an external script, $SCRIPT to generate
# the HTML.
# Both then substitute the HTML in.
DELIMITER_BEGIN="$1"
DELIMITER_END="$2"
ORIGIN="$3"
DEST="$4"
COMMITIDENT="$5"
TXTCSV="$6"
SCRIPT="$7"
TABLE_FILE="/tmp/$5-formatted"
FILE="$8"
# Work out $EDITWITH
if [ "$TXTCSV" = "txt" ] ; then
EDITWITH="$EDITOR"
# TODO: add VISUAL, nvim, vim, vi...
else
EDITWITH="sc-im"
fi
if [ -z "$FILE" ] ; then
hash_before="$(sha256sum $ORIGIN)"
$EDITWITH "$ORIGIN"
hash_after="$(sha256sum $ORIGIN)"
else
# As $ORIGIN is a directory, so here we specify the exact file.
hash_before="$(sha256sum "$ORIGIN/$FILE")"
$EDITWITH "$ORIGIN/$FILE"
hash_after="$(sha256sum "$ORIGIN/$FILE")"
fi
if [ "$hash_before" = "$hash_after" ] ; then
echo "No changes made - quitting early!"
exit 0
fi
echo "Changes will be made."
formatted="$($SCRIPT "$ORIGIN")"
echo "$formatted" > "$TABLE_FILE"
sed -i -ne "/$DELIMITER_BEGIN/ {p; r $TABLE_FILE" -e ":a; n; /$DELIMITER_END/ {p; b}; ba}; p" "$DEST"
# Commit and push the changes
ws-push
|