mirror of
https://github.com/marado/RNID.git
synced 2025-01-03 01:17:34 +00:00
parent
508fbe41b5
commit
a047431a81
@ -39,6 +39,7 @@ Esta tabela mostra casos de incumprimento do regulamento:
|
||||
| http://azores.gov.pt | Flash, autenticação em HTTP | [conteúdo Flash e autenticação sem HTTPS](http://azores.gov.pt) | 2019/07/03 ||
|
||||
| http://www.dgterritorio.pt | cartografia em ecw, CAOP em shapefile | [conteúdo ecw em vez de geotiff](http://www.dgterritorio.pt/cartografia_e_geodesia/cartografia/cartografia_de_base___topografica_e_topografica_de_imagem/serie_cartografica_1500_000/), [CAOP em shapefile](http://www.dgterritorio.pt/cartografia_e_geodesia/cartografia/carta_administrativa_oficial_de_portugal_caop/caop__download_/) | 2019/07/03 ||
|
||||
| https://sig.icnf.pt | Dados SIG disponibilizados por serviços MapServer/FeatureServer proprietários em vez de WMS/WFS | [dados DFCI](https://sigservices.icnf.pt/server/rest/services/DFCI), [dados DFCI_PSF](https://sigservices.icnf.pt/server/rest/services/DFCI_PSF), [dados GSTI](https://sigservices.icnf.pt/server/rest/services/GSTI) | 2019/07/03 ||
|
||||
| https://www.inventarios.pt | Obriga à utilização de JAVA ou software que só existe para MAC e Windows | [manual de instalação](https://www.inventarios.pt/documentos/manual_instalacao_gosign_v4.pdf) | 2019/07/03 ||
|
||||
|
||||
Este [template](template.txt) é utilizado pela ANSOL e pela Comunidade LibreOffice Portugal para enviar um pedido de resolução do problema.
|
||||
|
||||
|
15
scripts/34-inventarios.sh
Executable file
15
scripts/34-inventarios.sh
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
curl -s --head https://www.inventarios.pt/documentos/manual_instalacao_gosign_v4.pdf | head -n 1 | egrep "HTTP/1.[01] [23]..|HTTP/2 [23].." > /dev/null ; naopassa=$?
|
||||
|
||||
if [ "$naopassa" -eq "0" ]; then
|
||||
echo "inventarios: 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 -c "inventarios")" -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
|
||||
else
|
||||
echo "inventarios: incumprimento resolvido";
|
||||
fi
|
Loading…
Reference in New Issue
Block a user