diff options
| author | Nick White <git@njw.name> | 2020-09-12 12:38:50 +0100 | 
|---|---|---|
| committer | Nick White <git@njw.name> | 2020-09-12 12:38:50 +0100 | 
| commit | 1f8e45c576c95419ae2303a8615f356749579253 (patch) | |
| tree | fe5a9a6d660a84fe24df6765ba67f326b93835e2 | |
| parent | 03451211b60c0b6a6601fa3a27dc48c2cf79e878 (diff) | |
Add todos
| -rw-r--r-- | cmd/iiifdownloader/main.go | 3 | ||||
| -rw-r--r-- | go.mod | 2 | 
2 files changed, 5 insertions, 0 deletions
diff --git a/cmd/iiifdownloader/main.go b/cmd/iiifdownloader/main.go index 15ac66a..50858ef 100644 --- a/cmd/iiifdownloader/main.go +++ b/cmd/iiifdownloader/main.go @@ -16,6 +16,7 @@ import (  	"strings"  ) +// TODO: add tests  const usage = `Usage: iiifdownloader [-mets] url  Downloads all pages from a IIIF server. @@ -24,6 +25,8 @@ Currently supports the following IIIF using services:  - BNF's Gallica   example url: https://gallica.bnf.fr/ark:/12148/bpt6k6468158v  - BSB / MDZ       example url: https://reader.digitale-sammlungen.de//de/fs1/object/display/bsb10132387_00005.html  - DFG Viewer      example url: http://dfg-viewer.de/show?set%%5Bmets%%5D=http%%3A%%2F%%2Fdaten.digitale-sammlungen.de%%2F~db%%2Fmets%%2Fbsb11274872_mets.xml&cHash=fd18451ee968c125ab2bdbfd3717eae6 +- IIIF Manifest (TODO) +- METS Manifest (TODO)  ` @@ -1 +1,3 @@  module rescribe.xyz/utils + +go 1.14  | 
