199:bf329ed737e4
Anton Shestakov <av6@dwimlabs.net>, Sun, 29 May 2016 21:04:29 +0800
index: remove all contact instances (e.g. resources) on clicking Remove

next change 212:05fdc9e2fb0f
previous change 198:9f3006a2154f

contrib/updatesri.sh

Permissions: -rwxr-xr-x

Other formats: Feeds:
#!/bin/bash
set -euo pipefail
egrep -oh 'https://[^"]+\.js' "$@" | sort -u | while read url; do
hash=`curl -fsS "$url" | openssl dgst -sha384 -binary | openssl base64 -A`
sed -i "\|$url| c\\ <script src=\"$url\" integrity=\"sha384-$hash\" crossorigin=\"anonymous\"></script>" "$@"
done
egrep -oh 'https://[^"]+\.css' "$@" | sort -u | while read url; do
hash=`curl -fsS "$url" | openssl dgst -sha384 -binary | openssl base64 -A`
sed -i "\|$url| c\\ <link rel=\"stylesheet\" href=\"$url\" integrity=\"sha384-$hash\" crossorigin=\"anonymous\">" "$@"
done