7
0
mirror of https://github.com/marado/RNID.git synced 2024-12-22 03:54:21 +00:00

servicos min-saude: novo script

This commit is contained in:
Marcos Marado 2018-05-26 16:32:21 +01:00
parent ee1f9a2607
commit 74eff74045
2 changed files with 22 additions and 1 deletions

View File

@ -23,7 +23,7 @@ Esta tabela mostra casos de incumprimento do regulamento:
| https://citius.tribunaisnet.mj.pt | Precisa de Plugin Java para funcionar | [documentação](https://citius.tribunaisnet.mj.pt/habilus/Docs/CITIUS_WEB_FIREFOX_MARCO_2017.pdf) | 2018/05/26 | 2017/06/12 |
| http://www.sg.mai.gov.pt | XLS | [cadernos eleitorais](http://www.sg.mai.gov.pt/AdministracaoEleitoral/RecenseamentoEleitoral/ResultadosRecenseamento/Paginas/default.aspx) | 2018/05/26 | 2016/01/28 |
| http://www.rcaap.pt/ | obriga depósito de dados em formatos não-livres ([lista de formatos autorizados](https://dre.pt/application/conteudo/72779297)) | MP3 | 2018/05/26 | |
| https://servicos.min-saude.pt/utente/ | Acessibilidade | [site não cumpre WCAG 2.0 AA](https://servicos.min-saude.pt/utente/) | 2017/07/31 | 2016/09/27 |
| https://servicos.min-saude.pt/utente/ | Acessibilidade | [site não cumpre WCAG 2.0 AA](https://servicos.min-saude.pt/utente/) | 2018/05/26 | 2016/09/27 |
| https://www.min-saude.pt/ | Certificado https inválido | https://www.min-saude.pt/ | 2018/03/24 | 2016/10/01 |
| http://www.act.gov.pt/ | Acessibilidade | [site não cumpre WCAG 2.0 A](http://www.act.gov.pt/) | 2017/07/31 ||
| https://www.igcp.pt/ | XLS | [conteúdo em XLS](https://www.igcp.pt/pt/gca/?id=80) | 2018/03/29 ||

21
scripts/16-saude.sh Executable file
View File

@ -0,0 +1,21 @@
#!/bin/bash
# https://www.iefp.pt/ - não cumpre WCAG 2.0 AA
#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
## 20/05/2018: - several images without an alt attribute:
if [ "$(wget https://servicos.min-saude.pt/utente/ -o /dev/null -O - | grep "<img" |grep -v alt|wc -l)" -eq "0" ]; then
echo "servicos min-saude: incumprimento pode já não existir";
else
echo "servicos min-saude: 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 servicos.min-saude|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