diff options
author | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2020-04-15 19:47:23 +0200 |
---|---|---|
committer | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2020-04-15 19:47:23 +0200 |
commit | 1e3c22c1597493c288de6b7e13a2d412160c9cd3 (patch) | |
tree | 7fd918c5aa8962e9cd8cb3b02cce69e16be710ba | |
parent | 2678fe55057401854743a29b6c0a795d81a0f3a0 (diff) | |
download | lifomapserver-1e3c22c1597493c288de6b7e13a2d412160c9cd3.tar.gz lifomapserver-1e3c22c1597493c288de6b7e13a2d412160c9cd3.tar.bz2 lifomapserver-1e3c22c1597493c288de6b7e13a2d412160c9cd3.zip |
Fix wiki links, make red links red
-rw-r--r-- | htdocs/index.html | 3 | ||||
-rwxr-xr-x | scripts/geojson/fetch_single.sh | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/htdocs/index.html b/htdocs/index.html index f4fda26..f2e332f 100644 --- a/htdocs/index.html +++ b/htdocs/index.html @@ -27,6 +27,9 @@ color: white; text-shadow: 0px 0px 5px black; } + a.new { + color: red; + } </style> <script src="mapscript.js"> </script> </body> diff --git a/scripts/geojson/fetch_single.sh b/scripts/geojson/fetch_single.sh index 0b3442e..ce37b59 100755 --- a/scripts/geojson/fetch_single.sh +++ b/scripts/geojson/fetch_single.sh @@ -11,7 +11,7 @@ coords=`echo "$json" | sed -n "s/.*coordinates = {{Co|\([^}]*\).*/\1/p"` coord_x=`echo "$coords" | sed -n "s/\([^|]\+\).*/\1/p"` coord_y=`echo "$coords" | sed -n "s/.*|\([^|]\+\).*/\1/p"` -description=`curl "https://wiki.linux-forks.de/mediawiki/api.php?action=parse&page=$1§ion=0&prop=text&format=json" 2>/dev/null | sed -z -n "s/<\/p><p>//g;s/.*<p>\(.*\)<\/p>.*/\1/p"` +description=`curl "https://wiki.linux-forks.de/mediawiki/api.php?action=parse&page=$1§ion=0&prop=text&format=json" 2>/dev/null | sed -z -n "s/<\/p><p>//g;s/.*<p>\(.*\)<\/p>.*/\1/p" | sed s,\"/mediawiki/index.php,\"https://wiki.linux-forks.de/mediawiki/index.php,g` if [[ "$coord_x" != "" && "$coord_y" != "" ]]; then |