7
0
mirror of https://github.com/marado/RNID.git synced 2024-12-22 03:54:21 +00:00
Marcos Marado 2019-08-18 18:59:58 +01:00
parent d2cb5490eb
commit 5f9636ebf1
2 changed files with 0 additions and 22 deletions

View File

@ -38,7 +38,6 @@ Esta tabela mostra casos de incumprimento do regulamento:
| https://www.portugal2020.pt/ | XLSX | [exemplo](https://www.portugal2020.pt/content/lista-de-operacoes-aprovadas) | 2019/08/18 | 2019/08/11 |
| http://azores.gov.pt | Flash, autenticação em HTTP | [conteúdo Flash e autenticação sem HTTPS](http://azores.gov.pt) | 2019/08/18 ||
| 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/08/18 ||
| 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/08/17 ||
| 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/08/18 ||
Este [template](template.txt) é utilizado pela ANSOL e pela Comunidade LibreOffice Portugal para enviar um pedido de resolução do problema.

View File

@ -1,21 +0,0 @@
#!/bin/bash
# curl first to make sure the pages exist, then grep their contents to see if there's something there other than MapServer or FeatureServer now
curl -s --head https://sigservices.icnf.pt/server/rest/services/DFCI_PSF | head -n 1 | egrep "HTTP/1.[01] [23]..|HTTP/2 [23].." > /dev/null ; naopassa=$?
naopassa=$((naopassa + $(curl -s --head https://sigservices.icnf.pt/server/rest/services/DFCI | head -n 1 | egrep "HTTP/1.[01] [23]..|HTTP/2 [23].." > /dev/null ; echo $?)))
naopassa=$((naopassa + $(curl -s --head https://sigservices.icnf.pt/server/rest/services/GSTI | head -n 1 | egrep "HTTP/1.[01] [23]..|HTTP/2 [23].." > /dev/null ; echo $?)))
naopassa=$((naopassa + $(wget https://sigservices.icnf.pt/server/rest/services/DFCI_PSF -o /dev/null -O - | grep \<li\> |grep -v MapServer|grep -v FeatureServer|wc -l)))
naopassa=$((naopassa + $(wget https://sigservices.icnf.pt/server/rest/services/DFCI -o /dev/null -O - | grep \<li\> |grep -v MapServer|grep -v FeatureServer|wc -l)))
naopassa=$((naopassa + $(wget https://sigservices.icnf.pt/server/rest/services/GSTI -o /dev/null -O - | grep \<li\> |grep -v MapServer|grep -v FeatureServer|wc -l)))
if [ "$naopassa" -eq "0" ]; then
echo "icnf: 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 "icnf")" -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 "icnf: incumprimento resolvido";
fi