This file is indexed.

/usr/share/chef-server-webui/public/javascripts/jquery.suggest.js is in chef-server-webui 10.12.0+dfsg-1.

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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
/*
 *  jquery.suggest 1.1 - 2007-08-06
 *
 *  Uses code and techniques from following libraries:
 *  1. http://www.dyve.net/jquery/?autocomplete
 *  2. http://dev.jquery.com/browser/trunk/plugins/interface/iautocompleter.js
 *
 *  All the new stuff written by Peter Vulgaris (www.vulgarisoip.com)
 *  Feel free to do whatever you want with this file
 *
 */

(function($) {

  $.suggest = function(input, options) {
    var $input = $(input).attr("autocomplete", "off");
    var $results = $(document.createElement("ul"));

    var timeout = false;    // hold timeout ID for suggestion results to appear
    var prevLength = 0;      // last recorded length of $input.val()
    var cache = [];        // cache MRU list
    var cacheSize = 0;      // size of cache in chars (bytes?)

    $results.addClass(options.resultsClass).appendTo('body');

    resetPosition();
    $(window)
      .load(resetPosition)    // just in case user is changing size of page while loading
      .resize(resetPosition);

    //Show suggestion drop down list when on focus.
    $input.focus(function() {
      suggest();
    });

    $input.blur(function() {
      setTimeout(function() { $results.hide() }, 200);
    });

    // help IE users if possible
    try {
      $results.bgiframe();
    } catch(e) { }

    // I really hate browser detection, but I don't see any other way
    if ($.browser.mozilla)
      $input.keypress(processKey);  // onkeypress repeats arrow keys in Mozilla/Opera
    else
      $input.keydown(processKey);    // onkeydown repeats arrow keys in IE/Safari

    function resetPosition() {
      // requires jquery.dimension plugin
      var offset = $input.offset();
      $results.css({
        top: (offset.top + input.offsetHeight) + 'px',
        left: offset.left + 'px'
      });
    }

    function processKey(e) {
      // handling up/down/escape requires results to be visible
      // handling enter/tab requires that AND a result to be selected
      if ((/27$|38$|40$/.test(e.keyCode) && $results.is(':visible')) ||
        (/^13$|^9$/.test(e.keyCode) && getCurrentResult())) {

        if (e.preventDefault)
          e.preventDefault();
        if (e.stopPropagation)
          e.stopPropagation();

        e.cancelBubble = true;
        e.returnValue = false;

        switch(e.keyCode) {
          case 38: // up
            prevResult();
            break;
          case 40: // down
            nextResult();
            break;
          case 9:  // tab
          case 13: // return
            selectCurrentResult();
            break;
          case 27: //  escape
            $results.hide();
            break;
        }
      } else {
        if (timeout)
          clearTimeout(timeout);
        timeout = setTimeout(suggest, options.delay);
        prevLength = $input.val().length;
      }
    }

    function suggest() {
      var q = $.trim($input.val()).replace(/\s/g, '');
      if (q.length >= options.minchars) {
        var filter = new RegExp(q);
        var filtered_list = [];
        if (q != '0.0.0'){
          for (item in options.list) {
            var item_string = options.list[item];
            if (filter.test(item_string.replace(/\s/g,''))){
              filtered_list.push(item_string);
            }
          }
        } else {
          filtered_list = options.list;
        }
        displayItems(filtered_list);
      } else {
        $results.hide();
      }
    }

    function checkCache(q) {
      for (var i = 0; i < cache.length; i++)
        if (cache[i]['q'] == q) {
          cache.unshift(cache.splice(i, 1)[0]);
          return cache[0];
        }
      return false;
    }

    function addToCache(q, items, size) {
      while (cache.length && (cacheSize + size > options.maxCacheSize)) {
        var cached = cache.pop();
        cacheSize -= cached['size'];
      }
      cache.push({
        q: q,
        size: size,
        items: items
        });
      cacheSize += size;
    }

    function displayItems(items) {
      if (!items)
        return;

      if (!items.length) {
        $results.hide();
        return;
      }

      var html = '';
      for (var i = 0; i < items.length; i++)
        html += '<li>' + items[i] + '</li>';
      $results.html(html).show();

      $results
        .children('li')
        .mouseover(function() {
          $results.children('li').removeClass(options.selectClass);
          $(this).addClass(options.selectClass);
        })
        .click(function(e) {
          e.preventDefault();
          e.stopPropagation();
          selectCurrentResult();
        });
    }

    function parseTxt(txt, q) {
      var items = [];
      var tokens = txt.split(options.delimiter);

      // parse returned data for non-empty items
      for (var i = 0; i < tokens.length; i++) {
        var token = $.trim(tokens[i]);
        if (token) {
          token = token.replace(
            new RegExp(q, 'ig'),
            function(q) { return '<span class="' + options.matchClass + '">' + q + '</span>' }
            );
          items[items.length] = token;
        }
      }
      return items;
    }

    function getCurrentResult() {
      if (!$results.is(':visible'))
        return false;
      var $currentResult = $results.children('li.' + options.selectClass);
      if (!$currentResult.length)
        $currentResult = false;
      return $currentResult;
    }

    function selectCurrentResult() {
      $currentResult = getCurrentResult();
      if ($currentResult) {
        $input.val($currentResult.text());
        $results.hide();
        if (options.onSelect)
          options.onSelect.apply($input[0]);
      }
    }

    function nextResult() {
      $currentResult = getCurrentResult();
      if ($currentResult)
        $currentResult
          .removeClass(options.selectClass)
          .next()
          .addClass(options.selectClass);
      else
        $results.children('li:first-child').addClass(options.selectClass);
    }

    function prevResult() {
      $currentResult = getCurrentResult();
      if ($currentResult)
        $currentResult
          .removeClass(options.selectClass)
          .prev()
          .addClass(options.selectClass);
      else
        $results.children('li:last-child').addClass(options.selectClass);
    }
  }

  $.fn.suggest = function(list, options) {
    //if (!source)
    //  return;
    options = options || {};
    //options.source = source;
    options.delay = options.delay || 100;
    options.resultsClass = options.resultsClass || 'ac_results';
    options.selectClass = options.selectClass || 'ac_over';
    options.matchClass = options.matchClass || 'ac_match';
    options.minchars = options.minchars || 0;
    options.delimiter = options.delimiter || '\n';
    options.onSelect = options.onSelect || false;
    options.maxCacheSize = options.maxCacheSize || 65536;
    options.list = list;

    this.each(function() {
      new $.suggest(this, options);
    });

    return this;
  };

})(jQuery);