This file is indexed.

/usr/share/gerris/kaltura.sh is in gerris-mpi 20110329-dfsg.2-1build2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
8
9
# insert the Kaltura.org javascript for HTML5 video
# http://www.kaltura.org/project/HTML5_Video_Media_JavaScript_Library

f=`echo $1 | sed 's/\.html$//'`
if grep -q "</video>" $f.html; then
    tmp=`mktemp /tmp/kaltura.XXXXXXXXXX`
    sed 's/<\/HEAD>/<script type="text\/javascript" src="http:\/\/html5.kaltura.org\/js"><\/script>\n<\/HEAD>/' < $f.html > $tmp
    mv -f $tmp $f.html
fi