mirror of
https://github.com/marado/RNID.git
synced 2024-12-22 03:54:21 +00:00
RTP: script actualizado
This commit is contained in:
parent
9bb9205f02
commit
60072536ac
@ -3,28 +3,25 @@
|
|||||||
# https://www.iefp.pt/ - não cumpre WCAG 2.0 AA
|
# https://www.iefp.pt/ - não cumpre WCAG 2.0 AA
|
||||||
# RTP - flash e WMV
|
# RTP - flash e WMV
|
||||||
|
|
||||||
echo "Este script deve ser modificado com os novos links sobre estes incumprimentos (estão no README.md)."
|
flash=$(wget http://media.rtp.pt/empresa/utilizacao/flash-player/ --user-agent="Mozilla/5.0 Gecko/20100101 Firefox/21.0" -o /dev/null -O -|wc -l)
|
||||||
|
wmv=$(wget http://media.rtp.pt/empresa/utilizacao/windows-media-player/ --user-agent="Mozilla/5.0 Gecko/20100101 Firefox/21.0" -o /dev/null -O -|wc -l)
|
||||||
|
|
||||||
# flash=$(wget http://media.rtp.pt/empresa/utilizacao/termos-e-condicoes/ --user-agent="Mozilla/5.0 Gecko/20100101 Firefox/21.0" -o /dev/null -O -|grep -i flash|wc -l)
|
mudancas=0;
|
||||||
# wmv=$(wget http://media.rtp.pt/empresa/utilizacao/termos-e-condicoes/ --user-agent="Mozilla/5.0 Gecko/20100101 Firefox/21.0" -o /dev/null -O -|grep -i windows|wc -l)
|
if [ "$flash" -eq "0" ]; then
|
||||||
#
|
echo "RTP: Flash: incumprimento pode já não existir";
|
||||||
# mudancas=0;
|
mudancas=1;
|
||||||
# if [ "$flash" -eq "0" ]; then
|
fi
|
||||||
# echo "RTP: Flash: incumprimento pode já não existir";
|
if [ "$wmv" -eq "0" ]; then
|
||||||
# mudancas=1;
|
echo "RTP: WMV: incumprimento pode já não existir";
|
||||||
# fi
|
mudancas=1;
|
||||||
# if [ "$wmv" -eq "0" ]; then
|
fi
|
||||||
# echo "RTP: WMV: incumprimento pode já não existir";
|
|
||||||
# mudancas=1;
|
if [ "$mudancas" -eq "0" ]; then
|
||||||
# fi
|
echo "RTP: Incumprimento mantém-se, a actualizar o README (faça um git diff, valide, e commit!)";
|
||||||
#
|
while IFS='' read -r line || [[ -n "$line" ]]; do
|
||||||
# ## 20/05/2018: - several images without an alt attribute:
|
test $(echo "$line"|grep -v rtp|wc -l) -eq "1" \
|
||||||
# if [ "$mudancas" -eq "0" ]; then
|
&& echo "$line" \
|
||||||
# echo "RTP: Incumprimento mantém-se, a actualizar o README (faça um git diff, valide, e commit!)";
|
|| (h=$(echo "$line"|cut -d\| -f1-4); t=$(echo "$line"|cut -d\| -f6-); echo "$h| $(date +%Y/%m/%d) |$t");
|
||||||
# while IFS='' read -r line || [[ -n "$line" ]]; do
|
done < README.md > new
|
||||||
# test $(echo "$line"|grep -v rtp|wc -l) -eq "1" \
|
mv new README.md
|
||||||
# && echo "$line" \
|
fi
|
||||||
# || (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