scripts for my gemini capsule
plans: drop OEB
BSB and webp are more faithful
| m--------- | Open-English-Bible | 0 | ||||
| -rwxr-xr-x | biblestudy.py | 1 | ||||
| -rw-r--r-- | horner.sh | 6 | ||||
| -rw-r--r-- | makeplan.sh | 4 | ||||
| m--------- | usfm2gmi | 0 |
5 files changed, 6 insertions, 5 deletions
diff --git a/Open-English-Bible b/Open-English-Bible -Subproject 2370ba8b161fff645b22a9501c33ba7a603c62c +Subproject e2b871ccf196c73f2c3bedaff07084a546da218 diff --git a/biblestudy.py b/biblestudy.py index 65f55e2..2870ad4 100755 --- a/biblestudy.py +++ b/biblestudy.py @@ -12,6 +12,7 @@ from tcgnt import printtcgnt from hboWLC import printhboWLC def main(qs): + qs = qs.replace('%20',' ') if not qs: print("10 Enter a scripture reference\r\n") return @@ -6,7 +6,7 @@ alias python=python3 # Gospels echo "# 1. The Gospel" gs="$(python chapterN.py $(($day % 89 +1)) Matthew Mark Luke John)" -./oeb.py "$gs" |grep -v 'xt/ge' +./bsb.py "$gs" |grep -v 'xt/ge' gmni "gemini://songs.zachdecook.com/searchVerse.gmi?$gs" # Moses @@ -37,7 +37,7 @@ gmni "gemini://songs.zachdecook.com/searchVerse.gmi?$pt" # 6. Psalms echo "# 6. Psalm" ps="Psalm $(($day % 150 +1))" -./oeb.py "$ps" |grep -v 'xt/ge' +./webp.py "$ps" |grep -v 'xt/ge' gmni "gemini://songs.zachdecook.com/searchVerse.gmi?$ps" # 7. Proverbs @@ -62,5 +62,5 @@ gmni "gemini://songs.zachdecook.com/searchVerse.gmi?$py" echo "# 10. Acts" ac="Acts $(($day % 28 +1))" -./oeb.py "$ac" |grep -v 'xt/ge' +./bsb.py "$ac" |grep -v 'xt/ge' gmni "gemini://songs.zachdecook.com/searchVerse.gmi?$ac" diff --git a/makeplan.sh b/makeplan.sh index 28f1932..3032cff 100644 --- a/makeplan.sh +++ b/makeplan.sh @@ -19,11 +19,11 @@ echo "# Old Testament Reading" gmni "gemini://songs.zachdecook.com/searchVerse.gmi?$ot" echo "# New Testament Reading" -./oeb.py "$nt" |grep -v 'xt/ge' +./bsb.py "$nt" |grep -v 'xt/ge' gmni "gemini://songs.zachdecook.com/searchVerse.gmi?$nt" echo "# Psalm" -./oeb.py "$ps" |grep -v 'xt/ge' +./webp.py "$ps" |grep -v 'xt/ge' gmni "gemini://songs.zachdecook.com/searchVerse.gmi?$ps" echo "# Proverb" diff --git a/usfm2gmi b/usfm2gmi -Subproject a9e497dbee245754bceed9bc773485309986845 +Subproject 3fb855edbe9d48a3c53eeaefb9e380c4a6eca13 |