Add contributor edition
- added viaf resolver
- improve contributors list display
- add update of document objects
- propagate update to back office
- update back office
- add bo-client to back office
- setup language initializer
- add options mechanism
- add language information in language list
- add lexvo resolver service + api
- add language and lexvo resolver to js app
- correct env template
- refresh bootstrap
- download google font
- add version information
- update dev virtual machine to centos7
- add a readme + clean folders
- add local .env file to start commands
#!/bin/bash
# wait.sh - Made for Puppi
# Sources common header for Puppi scripts
. $(dirname $0)/header || exit 10
# Show help
showhelp () {
echo "This script is used to introduce pauses during the deploy workflow"
echo
echo "It has the following options:"
echo "-s <seconds> - The number of seconds to wait"
echo "-p <filename> - Wait until filename is present"
echo "-a <filename> - Wait until filename is absent"
echo "-f <pattern> <filename> - Wait until is found the pattern in the filename"
}
while [ $# -gt 0 ]; do
case "$1" in
-s)
sleep $2
exit 0
;;
-p)
while true
do
[ -e $2 ] && break
sleep 1
done
exit 0
;;
-a)
while true
do
[ ! -e $2 ] && break
sleep 1
done
exit 0
;;
-f)
while true
do
grep $2 $3 && break
sleep 1
done
exit 0
;;
*)
showhelp
exit
;;
esac
done