This file is indexed.

/usr/share/doc/deal/html/version.js is in deal 3.1.9-9.

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
currentDealVersion = "3.1.9";

function noteOldVersion(version) {
  if (version != currentDealVersion) {
     element = document.getElementById("versionWarning");
     if (element != null) {
       element.innerHTML = "This is not the current version of Deal.  " +
                           "The current version of Deal is " + currentDealVersion + 
                           " which can be found at " + 
                           "<a href='http://bridge.thomasoandrews.com/deal/'>the main Deal site.</a>";
       element.style.display = "block";
     }
  }
}

function noteOldVersion(version) {
  if (version != currentDealVersion) {
     element = document.getElementByID("versionWarning");
     if (element != null) {
       element.innerHTML = "This is not the current version of Deal.  The current version of Deal is Deal " + currentDealVersion + " which can be found at <a href='http://bridge.thomasoandrews.com//deal/'>the make Deal site.</a>";
     }
  }
}