This file is indexed.

/usr/share/pyshared/zope/app/rotterdam/onlinehelp.js is in python-zope.app.rotterdam 3.5.3-0ubuntu1.

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
//----------------------------------------------------------------------------
// depricated file use zope3.js instead
//----------------------------------------------------------------------------
function popup(page, name, settings) {
  var message = 'file onlinehelp.js is depricated use Method popup() in zope3.js';
  window.alert(message);
  win = window.open(page, name, settings);
  win.focus();
}