mirror of
https://github.com/marado/RNID.git
synced 2024-12-22 11:55:59 +00:00
iefp: still not WCAG compliant...
...but not it is a different issue.
This commit is contained in:
parent
9025c5f052
commit
298b716129
@ -10,7 +10,7 @@ Esta tabela mostra casos de incumprimento do regulamento:
|
||||
|---|---|---|---|---|
|
||||
| www.parlamento.pt | Vídeos disponibilizados em WMV, Canal Parlamento em Flash | [vídeo de audição](http://www.parlamento.pt/ActividadeParlamentar/Paginas/DetalheAudiencia.aspx?BID=99371), [canal parlamento](http://www.canal.parlamento.pt) | 2019/02/28 | 2015/03/25 |
|
||||
| www.dgae.min-economia.pt | Microsoft Office | [página com formulários OOXML](http://www.dgae.gov.pt/documentacao-/formularios.aspx) | 2019/02/28 | 2015/03/25 |
|
||||
| http://www.iefp.pt | Acessibilidade | [site não cumpre WCAG 2.0 AA](http://www.iefp.pt) | 2019/01/26 | 2016/01/05 |
|
||||
| http://www.iefp.pt | Acessibilidade | [site não cumpre WCAG 2.0 AA](http://www.iefp.pt) | 2019/02/28 | 2016/01/05 |
|
||||
| www.rtp.pt | Flash e WMV | Páginas com informação sobre o uso de [Flash](http://media.rtp.pt/empresa/utilizacao/flash-player/) e [WMV](http://media.rtp.pt/empresa/utilizacao/windows-media-player/) | 2019/01/26 | 2015/06/07 |
|
||||
| www.portugal.gov.pt | Acessibilidade | [site não cumpre WCAG 2.0 A](http://www.portugal.gov.pt) | 2019/01/26 | 2016/01/22 |
|
||||
| lxi.cm-lisboa.pt | Flash | [Site Flash](http://lxi.cm-lisboa.pt/lxi/) | 2019/01/26 | 2015/06/07 |
|
||||
|
@ -8,7 +8,13 @@
|
||||
|
||||
# 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://www.iefp.pt/ -o /dev/null -O - | grep "<img" |grep -v alt|wc -l)" -eq "0" ]; then
|
||||
## 28/02/2019: the missing alts case is no longer a problem, but to comply with WCAG the XHTML also needs to be valid...
|
||||
## https://validator.w3.org/nu/?doc=https%3A%2F%2Fwww.iefp.pt%2F
|
||||
## tidy is a great validator, but isn't catching the errors on this
|
||||
## page as errors, even if it shows them as warnings... let's be hacky and pay
|
||||
## attention only on the current use case:
|
||||
#if [ "$(wget https://www.iefp.pt/ -o /dev/null -O - | grep "<img" |grep -v alt|wc -l)" -eq "0" ]; then
|
||||
if [ "$(wget https://www.iefp.pt/ -o /dev/null -O -| tidy -e 2>&1|grep proprietary|wc -l)" -eq "0" ]; then
|
||||
echo "iefp: incumprimento pode já não existir";
|
||||
else
|
||||
echo "iefp: Incumprimento mantém-se, a actualizar o README (faça um git diff, valide, e commit!)";
|
||||
|
Loading…
Reference in New Issue
Block a user