Moved to contrib/ in preperation for merge
[mailer.git] / validator.sh
diff --git a/validator.sh b/validator.sh
deleted file mode 100755 (executable)
index 21eacf7..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-if ! test -e "modules.php"; then
-  echo "$0: Please execute this script from root directory."
-  exit 1
-fi
-
-echo "$0: Validating all templates..."
-DUMMY=`find templates/de/html/ -type f -name *.tpl -exec php DOCS/tpl-validator.php {} \; 2>&1`
-echo "${DUMMY}" | \
-       grep "PHP Warning" | \
-       cut -d "/" -f 1-5 | \
-       grep -v "error parsing attribute name in" > DOCS/template-warnings.log
-echo "$0: done."