This file is indexed.

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

define(['jquery', 'base/js/namespace', 'base/js/page'], function($, IPython, page) {
    function login_main() {
      var page_instance = new page.Page('div#header', 'div#site');
      $('button#login_submit').addClass("btn btn-default");
      page_instance.show();
      $('input#password_input').focus();
    
      IPython.page = page_instance;
    }
    return login_main;
});