7
0
mirror of https://github.com/marado/RNID.git synced 2024-09-19 16:35:24 +00:00
rnid/scripts/05-governo.sh
Hugo Peixoto 935c82a9eb Troca verificacoes img[alt=""]
Imagens com alt text vazio não são por si incumprimentos. Podem indicar
imagens decorativas. No entanto, links cujo texto é apenas uma imagem
com alt text vazio.

Para implementar isto foi preciso dar algumas voltas, mas deixei
comentários no código a explicar o que se passa.

Closes: #65
2020-08-18 20:16:38 +01:00

25 lines
1.1 KiB
Bash
Executable File

#!/bin/bash
#TODO: find a good tool to make the validation on request
# https://achecker.ca/documentation/web_service_api.php - API usage depends on user account creation
# webaim.org - API's not gratis
# While we don't have a validator on request, let's find out if a known violation still exists
## several images without an alt attribute:
## Empty links are also WCAG violations
fails="$(wget https://www.portugal.gov.pt -o /dev/null -O - | grep "<img" |grep -v alt|wc -l)"
fails=$((fails + $(wget https://www.portugal.gov.pt -o /dev/null -O - | hxnormalize -x -l 10000|hxselect a -c -s'\n'|grep -c ^$)))
if [ "$fails" -eq "0" ]; then
echo "gov.pt: incumprimento pode já não existir";
else
echo "gov.pt: Incumprimento mantém-se, a actualizar o README (faça um git diff, valide, e commit!)";
while IFS='' read -r line || [[ -n "$line" ]]; do
test $(echo "$line"|grep -v portugal.gov.pt|wc -l) -eq "1" \
&& echo "$line" \
|| (h=$(echo "$line"|cut -d\| -f1-4); t=$(echo "$line"|cut -d\| -f6-); echo "$h| $(date +%Y/%m/%d) |$t");
done < README.md > new
mv new README.md
fi