This file is indexed.

/usr/lib/python2.7/dist-packages/notebook/static/bidi/bidi.js is in python-notebook 5.2.2-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
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.

define(['bidi/numericshaping'], function(numericshaping) {
  'use strict';

  var shaperType = '';
  var textDir = '';

  var _uiLang = function() {
    return navigator.language.toLowerCase();
  };

  var _loadLocale = function() {
    if (_isMirroringEnabled()) {
      $('body').attr('dir', 'rtl');
    }
    var uiLang = _uiLang();

    if (uiLang !== 'en' && uiLang !== 'en-us') {
      // moment does not ship with a separate file for locale/en or locale/en-us
      // so we must skip dynamically requiring it
      requirejs(['components/moment/locale/' + _uiLang()], function(err) {
        console.warn('Error loading the required locale');
        console.warn(err);
      });
    }

    shaperType = _uiLang() == 'ar' ? 'national' : 'defaultNumeral';
  };

  var _isMirroringEnabled = function() {
    return new RegExp('^(ar|he)').test(_uiLang());
  };

  /**
     * NS :  for digit Shaping.
     * BTD : for future work in case of Base Text Direction Addition.
     */

  /**
     * @param value : the string to apply the bidi-support on it.
     * @param flag :indicates the type of bidi-support (Numeric-shaping ,Base-text-dir ).
     */
  var _applyBidi = function(value /*, flag*/) {
    value = numericshaping.shapeNumerals(value, shaperType);
    return value;
  };

  var bidi = {
    applyBidi: _applyBidi,
    isMirroringEnabled: _isMirroringEnabled,
    loadLocale: _loadLocale,
  };

  return bidi;
});