aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-07-13 15:52:29 -0400
committerB. Stack <bgstack15@gmail.com>2024-07-13 15:52:29 -0400
commita8447bc07e80520326313a2dae287e2aa943393a (patch)
treecf5984baa9c14acf6f5d02f3652d849a9b700e38
parentfully implement separate images (diff)
downloadlibrary-info-a8447bc07e80520326313a2dae287e2aa943393a.tar.gz
library-info-a8447bc07e80520326313a2dae287e2aa943393a.tar.bz2
library-info-a8447bc07e80520326313a2dae287e2aa943393a.zip
update cron-run script to use separate images for html
-rw-r--r--README.md2
-rwxr-xr-xauxiliary/library.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0e896af..d336782 100644
--- a/README.md
+++ b/README.md
@@ -76,4 +76,4 @@ plugin-based, so I can write a plugins/aspen.py with some standard format output
I still need to implement these features.
* add library card expiration date
-* try designing the --output html to save the images to files in ./images/{img50}.{img_format}
+* aspen and polaris: show the held until date
diff --git a/auxiliary/library.sh b/auxiliary/library.sh
index 167edab..68bad15 100755
--- a/auxiliary/library.sh
+++ b/auxiliary/library.sh
@@ -2,4 +2,4 @@
# Startdate: 2024-07-09-3 15:45
# Author: bgstack15
# Purpose: oneliner for cron job
-python3.6 /mnt/public/Support/Programs/library_info/library_info_cli.py --output html --full > /mnt/public/www/library/index.html
+python3.6 /mnt/public/Support/Programs/library_info/library_info_cli.py --imagepath /mnt/public/www/library/images --imagerelativepath "images" --output html > /mnt/public/www/library/index.html
bgstack15