-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding screen capture table with thumbnail previews, updating documen…
…tation, (#553) This PR: - Adds a script to copy screen capture images from internal servers to the public-facing ivilab server - Updates the `create_datasette_with_plugins_image.sh` script to add a couple of Datasette plugins that are useful for previewing screen capture images in the web GUI. - Updates `docker-compose.prod.yml` to point to the new location of `tomcat.db` - Removes `schemacrawler.config.properties` - Changes `container` to `container-fluid` in `base.html` - Updates documentation in `index.html` and `derived-data-products.html`
- Loading branch information
Showing
7 changed files
with
33 additions
and
231 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
human_experiments/datasette_interface/copy_screenshots_to_server.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Script to copy screenshots to the ivilab webserver. This is meant to be run | ||
# on an IVILab machine on which /data is mounted. | ||
|
||
time rsync \ | ||
-adrPm \ # archive mode, show progress, prune empty directories | ||
--no-inc-recursive \ | ||
--copy-links \ # Copy files and not just symlinks | ||
--info=progress2 \ | ||
--include="*/" \ | ||
--include="*/*/Screenshots/*.png" \ | ||
--include="*/*/screenshots/*.png" \ # Include lowercased variant | ||
--exclude="*" \ | ||
/data/tomcat/raw/LangLab/experiments/study_3_pilot/group ivilab:/var/www/data/tomcat/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
216 changes: 0 additions & 216 deletions
216
human_experiments/datasette_interface/schemacrawler.config.properties
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters