/usr/lib/python2.7/dist-packages/MLBviewer/mlbStatsKeyBindings.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 | #!/usr/bin/env python
import curses
STATS_KEYBINDINGS = {
'RSS' : [ ord('w') ],
'UP' : [ curses.KEY_UP, ],
'DOWN' : [ curses.KEY_DOWN, ],
'LEFT' : [ curses.KEY_LEFT, ],
'RIGHT' : [ curses.KEY_RIGHT, ],
'VIDEO' : [ 10, ],
'URL_DEBUG' : [ ord('u') ],
'PLAYER' : [ 10, ],
'HITTING' : [ ord('b') ],
'PITCHING' : [ ord('p') ],
'SORT' : [ ord('s') ],
'SORT_ORDER' : [ ord('o') ],
'LEAGUE' : [ ord('l') ],
'STATS_DEBUG' : [ ord('z') ],
'TEAM' : [ ord('t') ],
'SEASON_TYPE' : [ ord('n') ],
'ACTIVE' : [ ord('a') ],
'HELP' : [ ord('h') ],
'STATS' : [ ord('S') ],
'STATS_ORDER' : [ ord('O') ],
'RELOAD_CONFIG' : [ ord('R') ],
'QUIT' : [ ord('q') ],
'DEBUG' : [ ord('d') ],
'YEAR' : [ ord('y') ],
}
|