208:de65f8dc6831
Anton Shestakov <av6@dwimlabs.net>, Wed, 01 Jun 2016 22:11:04 +0800
css: remove contact list margins (compensate with contact padding)

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