mirror of
https://github.com/marado/RNID.git
synced 2024-12-22 03:54:21 +00:00
nova validacao: scripts/17-saude-cert.sh
This commit is contained in:
parent
1fe5dde16a
commit
a7c45bff86
@ -24,7 +24,7 @@ Esta tabela mostra casos de incumprimento do regulamento:
|
||||
| http://www.sg.mai.gov.pt | XLS | [cadernos eleitorais](http://www.sg.mai.gov.pt/AdministracaoEleitoral/RecenseamentoEleitoral/ResultadosRecenseamento/Paginas/default.aspx) | 2018/05/27 | 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/27 | |
|
||||
| https://servicos.min-saude.pt/utente/ | Acessibilidade | [site não cumpre WCAG 2.0 AA](https://servicos.min-saude.pt/utente/) | 2018/05/27 | 2016/09/27 |
|
||||
| https://www.min-saude.pt/ | Certificado https inválido | https://www.min-saude.pt/ | 2018/03/24 | 2016/10/01 |
|
||||
| https://www.min-saude.pt/ | Certificado https inválido | https://www.min-saude.pt/ | 2018/05/27 | 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 ||
|
||||
| https://www.portalviva.pt/ | Java | [necessita plugin JAVA](https://www.portalviva.pt/lx/pt/myvivaclient/client-account-area/loads/new-load.aspx) | 2018/03/29 ||
|
||||
|
13
scripts/17-saude-cert.sh
Executable file
13
scripts/17-saude-cert.sh
Executable file
@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ ! "$(wget https://www.min-saude.pt/ -o -|grep cert|wc -l)" -eq "1" ]; then
|
||||
echo "certificado min-saude: incumprimento pode já não existir";
|
||||
else
|
||||
echo "certificado 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 www.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
|
Loading…
Reference in New Issue
Block a user