diff artifacts/contrib/list-non-existant-outs.sh @ 8283:dfdd006da30b

merged.
author Raimund Renkert <rrenkert@intevation.de>
date Wed, 17 Sep 2014 09:04:30 +0200
parents b52d30e24e1a
children f12a5c55864d
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/artifacts/contrib/list-non-existant-outs.sh	Wed Sep 17 09:04:30 2014 +0200
@@ -0,0 +1,24 @@
+#!/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 "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

http://dive4elements.wald.intevation.org