Mercurial > dive4elements > river
view artifacts/contrib/list-non-existant-outs.sh @ 8507:7d0c4e508835
(issue1782) Select index based on km for step generation
If we calculate from a larger KM to a smaller KM the
larger index refers to the smaller KM so to correctly draw
the steps with the assumption that the previous q is drawn
together with the current q we have to select the next / prev
index accordingly.
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Tue, 16 Dec 2014 15:29:44 +0100 |
parents | f12a5c55864d |
children |
line wrap: on
line source
#!/bin/bash DIR=$(readlink -f `dirname $0`) # write all outs expected in datacage to temporary file tmpfile=`uuid` cat $DIR/../doc/conf/meta-data.xml | \ sed -n '/test="$out/p' | \ sed "s/ *<dc:when test=\"\$out = '\(.*\)'\">/\1/" | \ sort -u > /tmp/$tmpfile echo "WARNING:" echo "Only tests having exactly the pattern \"\$out = 'outname'\" will be recognised!" echo echo "outs not used in any artifact-configuration:" for out in `cat /tmp/$tmpfile` do count=`grep -l $out $DIR/../doc/conf/artifacts/*.xml | wc -l` if [ $count -lt 1 ] then echo " $out" fi done echo echo "Caution: These might be set in gwt-client for inline datacage panels!" echo