From 242da40f2ba446b3f92966461aa55c1bced8debc Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Fri, 16 Oct 2009 02:39:30 -0700 Subject: Fix WindowsOffscreenWGLDrawable --- make/scripts/deploy-jnlp-webstarttest-filter.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 make/scripts/deploy-jnlp-webstarttest-filter.sh (limited to 'make/scripts/deploy-jnlp-webstarttest-filter.sh') diff --git a/make/scripts/deploy-jnlp-webstarttest-filter.sh b/make/scripts/deploy-jnlp-webstarttest-filter.sh new file mode 100755 index 000000000..e95be29cb --- /dev/null +++ b/make/scripts/deploy-jnlp-webstarttest-filter.sh @@ -0,0 +1,25 @@ +#! /bin/sh + +wsdir=$1 +shift + +if [ -z "$wsdir" ] ; then + echo usage $0 webstartdir + exit 1 +fi + +if [ ! -e $wsdir ] ; then + echo $wsdir does not exist + exit 1 +fi + +cd $wsdir + +rm -rf orig +mkdir orig + +for i in *.jnlp ; do + mv $i orig + sed -e 's///g' -e 's/<\/security>//g' -e 's///g' orig/$i > $i +done + -- cgit v1.2.3