changeset 8283:dfdd006da30b

merged.
author Raimund Renkert <rrenkert@intevation.de>
date Wed, 17 Sep 2014 09:04:30 +0200
parents b5bef15c982e (current diff) b52d30e24e1a (diff)
children a89ebe3f1739 2c20907f8dd0
files
diffstat 2 files changed, 26 insertions(+), 2 deletions(-) [+]
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
--- a/artifacts/doc/conf/meta-data.xml	Wed Sep 17 09:03:39 2014 +0200
+++ b/artifacts/doc/conf/meta-data.xml	Wed Sep 17 09:04:30 2014 +0200
@@ -5,8 +5,8 @@
     <dc:comment>
       User specific part
       ------------------
-      This is a hack because we currently have no way to supress empty
-      folders (either in the client or in the datacage).
+      Since rev 4b29bb2c785f we (only?) need this hack to suppress
+      user-content in DEM-selection during floodmap parameterisation.
     </dc:comment>
     <dc:if test="dc:contains($parameters, 'user-id') and
       not(dc:contains($artifact-outs, 'floodmap-hws')) and

http://dive4elements.wald.intevation.org