This file is indexed.

/usr/share/xul-ext/uppity/content/uppity.js is in xul-ext-uppity 1.5.8-3.

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
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
var uppity={

goUp:function(e) {
  var URLs=this.getUrls();
  if (0==URLs.length) return;

  if (e && 'undefined'!=typeof e.target.value) {
    openUILink(URLs.list[e.target.value], e);
  } else {
    if (URLs.next) {
      openUILink(URLs.list[URLs.next], e);
    }
  }
},

openTbMenu:function() {
  if (uppity.getUrls().list.length==0) return;

  var btn=document.getElementById('tb-uppity');
  if (btn) {
    btn.open=true;
  } else {
    document.getElementById('urlbar-popup-uppity')
        .openPopup(document.getElementById('urlbar'), 'after_start');
  }
},

showTbDropDown:function(e) {
  var box=e.target;
  //remove any existing entries
  var children = box.childNodes;
  while (children[0]) {
    try {
      box.removeChild(children[0]);
    } catch (e) { }
  }

  uppity.addDropDownEntries(box);
},

addDropDownEntries:function(box) {
  //create new entries
  var origUrl=getBrowser().contentWindow.location.href;
  var URLs=this.getUrls(), m;
  if (0==URLs.length) return;// false;
  for (var i=0; i<URLs.list.length; i++) {
    m=document.createElement("menuitem");
    m.setAttribute('label', URLs.list[i]);
    m.setAttribute('index', i);
    m.setAttribute('value', i);
    m.setAttribute('type', 'radio');
    if (i==URLs.curr) {
      m.setAttribute('checked', 'true');
    }
    box.appendChild(m);
  }
},

parseUrlRegex:new RegExp('(file:/+|[a-z]+://)([^/]*)(/.*)'),
parseUrl:function(url) {
  var m=uppity.parseUrlRegex.exec(url);
  if (!m) throw new Error('could not parse URL: '+url);

  return {
    'scheme':m[1],
    'host':m[2],
    'path':m[3]
  };
},

getUrls:function() {
  // http://kevin.vanzonneveld.net
  function in_array(needle, haystack, argStrict) {
    var found = false, key, strict = !!argStrict;

    for (key in haystack) {
      if ((strict && haystack[key] === needle)
          || (!strict && haystack[key] == needle)
      ) {
        found = true;
        break;
      }
    }

    return found;
  }

  var b=getBrowser();
  var thisUrl=b.contentWindow.location.href;
  var lastUrl=b.uppityLastUrl;

  try {
    //check for validity
    if ('about:'==thisUrl.substr(0, 6)) throw new Error('bad scheme: '+thisUrl);

    if (lastUrl && in_array(thisUrl, uppity.getUrlsFor(lastUrl).list)) {
      // If this location comes from uppity-ing the last location, start
      // making choices from that previous location.
      thisUrl=lastUrl;
    } else {
      // Otherwise save this location, for possible recall later.
      // We make up an object that is a shallow copy -- otherwise, we get
      // a reference which is updated as we browse.
      b.uppityLastUrl=thisUrl;
    }

    return uppity.getUrlsFor(thisUrl);
  } catch (e) {
    // For any problem, including our made up ones, return empty list.
    return {'list':[], 'curr':null, 'next':null};
  }
},

getUrlsFor:function(url) {
  if (!url) throw new Error('url required!');

  var URLs=[url];
  var loc=uppity.parseUrl(url);

  try {
    //get the URL
    var scheme=loc.scheme;
    var host=loc.host;
    var path=loc.path
      .replace(/\/$/, '')
      .replace(/^\/+/, '');
    var emptyPath=(''==path);

    //strip hash if there
    if (path.indexOf('#')>0) {
      path=path.replace(/#.*/, '');
      URLs.push(scheme+host+'/'+path);
    }
    //strip querystring if there
    if (path.indexOf('?')>0) {
      path=path.replace(/\?.*/, '');
      URLs.push(scheme+host+'/'+path);
    }
    //strip files/directories if there
    path=path.replace(/\/+$/, '');
    while (path.indexOf('/')>0) {
      path=path.replace(/\/[^\/]*$/, '');
      URLs.push(scheme+host+'/'+path+'/');
    }
    //host only
    if (!emptyPath && ''!=host) URLs.push(scheme+host+'/');

    //strip subdomains if there
    var subs=0;
    if (!host.match(/^([0-9]+\.)+$/)) { // if it's not a numeric IP
      var hostSuffix='';
      // strip port
      var x=host.lastIndexOf(':');
      if (x>0) {
        hostSuffix=host.substr(x);
        host=host.substr(0, x);
      }
      // strip TLD
      hostSuffix=host.substr(host.length-6)+hostSuffix;
      host=host.substr(0, host.length-6);

      while (-1!=host.indexOf('.')) {
        subs++;
        host=host.replace(/[^.]*\./, '');
        URLs.push(scheme+host+hostSuffix+'/');
      }
    }

    // If the original URL does NOT start with 'www.' (and this isn't a
    // "file://" link, with no host), then put in an entry that does.
    var lastUrl=URLs[URLs.length-1];
    if ('www.'!=loc.host.substr(0, 4) && 'file://'!=loc.scheme) {
      var wwwUrl=lastUrl.replace(/^([a-z]+:\/\/)/, '$1www.');
      if (subs) {
        // If there were subdomains stripped, put the "www" choice
        // between them and the bare domain.
        URLs.splice(URLs.length-1, 0, wwwUrl);
      } else {
        // Otherwise, put the "www." choice at the end of the list.
        URLs.push(wwwUrl);
      }
    }
  } catch (e) { }

  // Find the "current" and "next" index.
  var here=getBrowser().contentWindow.location.href;
  var curr=null, next=null;
  for (var i=0, url=null; url=URLs[i]; i++) {
    if (here==url) {
      curr=i;
      if (URLs[i+1]) next=i+1;
      break;
    }
  }

  return {'list':URLs, 'curr':curr, 'next':next};
},

setDisabled:function(url) {
  // if they don't have the toolbar button, don't toggle it
  if (!document.getElementById('tb-uppity')) return;

  if (uppity.getUrls().list.length>0) {
    document.getElementById('tb-uppity').removeAttribute('disabled');
  } else {
    document.getElementById('tb-uppity').setAttribute('disabled', true);
  }
},

webProgressListener:{
  onProgressChange:function (wp, req, cur, max, curtotal, maxtotal) {},
  onStateChange:function (wp, req, state, status) {},
  onLocationChange:function (wp, req, loc) {
    uppity.setDisabled(loc?loc.asciiSpec:null);
  },
  onStatusChange:function (wp, req, status, message) {},
  onSecurityChange:function (wp, req, state) {},
  startDocumentLoad:function(req) {},
  endDocumentLoad:function(req, status) {}
}

}; //close var uppity

window.addEventListener('load', function() {
  // set initial status
  uppity.setDisabled();

  // set load progress listener
  var doc=document.getElementById('content');
  if (doc) doc.addProgressListener(uppity.webProgressListener);
  // also listen for when there are new tabs created
  var cont=gBrowser.tabContainer;
  if (cont) cont.addEventListener('TabSelect', uppity.setDisabled, false);
}, false);