This file is indexed.

/usr/lib/python2.7/dist-packages/MLBviewer/mlbDefaultKeyBindings.py is in mlbviewer 2015.sf.1-2.

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
#!/usr/bin/env python

import curses

DEFAULT_KEYBINDINGS = {
    'RSS'                : [ ord('w') ],
    'UP'                 : [ curses.KEY_UP, ],
    'DOWN'               : [ curses.KEY_DOWN, ],
    'LEFT'               : [ curses.KEY_LEFT, ],
    'RIGHT'              : [ curses.KEY_RIGHT, ],
    'VIDEO'              : [ 10, curses.KEY_MOUSE ],
    'AUDIO'              : [ ord('a') ],
    'ALT_AUDIO'          : [ ord('A') ],
    'HELP'               : [ ord('h') ],
    'JUMP'               : [ ord('j') ],
    'MEDIA_DEBUG'        : [ ord('z') ],
    'MEDIA_DETAIL'       : [ ord('e') ],
    'OPTIONS'            : [ ord('o') ],
    'LINE_SCORE'         : [ ord('b') ],
    'BOX_SCORE'          : [ ord('x') ],
    'MASTER_SCOREBOARD'  : [ ord('m') ],
    'HIGHLIGHTS'         : [ ord('t') ],
    'HIGHLIGHTS_PLAYLIST': [ ord('y') ],
    'STANDINGS'          : [ ord('g') ],
    'INNINGS'            : [ ord('i') ],
    'LISTINGS'           : [ ord('l'), ord('L') ],
    'REFRESH'            : [ ord('r') ],
    'NEXDEF'             : [ ord('n') ],
    'COVERAGE'           : [ ord('s') ],
    'SPEED'              : [ ord('p') ],
    'STATS'              : [ ord('S') ],
    'STATS_ORDER'        : [ ord('O') ],
    'CONDENSED_GAME'     : [ ord('c') ],
    'RELOAD_CONFIG'      : [ ord('R') ],
    'QUIT'               : [ ord('q') ],
    'DEBUG'              : [ ord('d') ],
    'MILBTV'             : [ ord('M') ],
    'POSTSEASON'         : [ ord('P') ],
    'CALENDAR'           : [ ord('C') ],
    'DIVISION'           : [ ord('D') ],
}