[PATCH 4 of 4] merged
Wald Commits
scm-commit at wald.intevation.org
Wed Sep 17 09:04:40 CEST 2014
# HG changeset patch
# User Raimund Renkert <rrenkert at intevation.de>
# Date 1410937470 -7200
# Node ID dfdd006da30bb37e4744ba4ced9b332401f92312
# Parent b5bef15c982edbae978d6dae4ae6e854c438798b
# Parent b52d30e24e1ad01752b199619a8342cbb67fdc63
merged.
diff -r b5bef15c982e -r dfdd006da30b artifacts/contrib/list-non-existant-outs.sh
--- /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
diff -r b5bef15c982e -r dfdd006da30b artifacts/doc/conf/meta-data.xml
--- 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
More information about the Dive4Elements-commits
mailing list