This file is indexed.

/usr/share/transmission/web/javascript/notifications.js is in transmission-common 2.82-1.1ubuntu3.2.

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
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
var Notifications = {};

$(document).ready(function () {
  if (!window.webkitNotifications) {
    return;
  }

  var notificationsEnabled = (window.webkitNotifications.checkPermission() === 0),
      toggle = $('#toggle_notifications');

  toggle.show();
  updateMenuTitle();
  $(transmission).bind('downloadComplete seedingComplete', function (event, torrent) {
  	if (notificationsEnabled) {
		var title = (event.type == 'downloadComplete' ? 'Download' : 'Seeding') + ' complete',
			content = torrent.getName(),
			notification;
	
		notification = window.webkitNotifications.createNotification('style/transmission/images/logo.png', title, content);
		notification.show(); 
		setTimeout(function () {
		  notification.cancel();
		}, 5000);
	};
  });

  function updateMenuTitle() {
    toggle.html((notificationsEnabled ? 'Disable' : 'Enable') + ' Notifications');
  }

  Notifications.toggle = function () {
    if (window.webkitNotifications.checkPermission() !== 0) {
      window.webkitNotifications.requestPermission(function () {
        notificationsEnabled = (window.webkitNotifications.checkPermission() === 0);
        updateMenuTitle();
      });
    } else {
      notificationsEnabled = !notificationsEnabled;
      updateMenuTitle();
    }
  };
});