This file is indexed.

/usr/share/vdr/plugins/live/js/live/liveajax.js is in vdr-plugin-live 0.2.0+git20130305-6.1+b1.

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
10
11
/*
 * Javascript function for quick ajax requests.
 * This file needs mootools.js to be included on the pages.
 */

function LiveSimpleAjaxRequest(url, param, value)
{
	var req = new Ajax(url, {
		  method : 'post'
		}).request(param + '=' + value + '&async=1');
};