comparison contrib/make_flys_release/issue_overview.sh @ 7193:7fabae60428b double-precision

Merged changes from default into double-precision branch.
author Tom Gottfried <tom@intevation.de>
date Fri, 27 Sep 2013 17:36:50 +0200
parents 93c0a1692aa5
children
comparison
equal deleted inserted replaced
7016:28748bb1b676 7193:7fabae60428b
1 #!/bin/sh
2
3 # Use this on an exported query from roundup
4 # Known issue: Tiles with more then three , in them fail.
5 # Yes (ah) I do not know how to correctly handle the csv quoting...
6
7 echo "-------------"
8 echo "Unter anderem wurden folgende issues bearbeitet und können getestet werden:"
9
10 sed 's/"\(.*\),\(.*\)"/"\1§\2"/g' "$1" | \
11 sed 's/"\(.*\),\(.*\)"/"\1§\2"/g' | \
12 sed 's/"\(.*\),\(.*\)"/\1§\2/g' | \
13 gawk -F, '$5 > 5 {
14 print "- flys/issue"$2 " ("$1")"
15 print "[https://roundup-intern.intevation.de/flys/issue"$2"]"
16 print ""
17 }' | sed 's/§/,/g'
18
19
20 echo "-------------"
21 echo "Desweiteren gab es fortschritte in folgenden Issues:"
22 echo ""
23 sed 's/"\(.*\),\(.*\)"/"\1§\2"/g' "$1" | \
24 sed 's/"\(.*\),\(.*\)"/"\1§\2"/g' | \
25 sed 's/"\(.*\),\(.*\)"/\1§\2/g' | \
26 gawk -F, '$5 <= 5 && $5 > 0 {
27 print "- flys/issue"$2 " ("$1")"
28 print "[https://roundup-intern.intevation.de/flys/issue"$2"]"
29 print ""
30 }' | sed 's/§/,/g'
31

http://dive4elements.wald.intevation.org