/usr/share/pyshared/sqlkit/layout/sqlkitplugin.py is in python-sqlkit 0.9.5-1ubuntu1.
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 | #!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
import os
from image_widget import ImageWidget
from dateedit import DateEdit, DateTimeEdit
from greedy_treeview import GreedyTreeView
from fk_entry import FkEdit
from interval_entry import IntervalEdit
from misc import add_stock_icons
SK_ICONS = (
('cal15.png', 'sk-calendar'),
('keys.png', 'sk-pkeys'),
('table-load.png', 'sk-table-load'),
)
add_stock_icons(*SK_ICONS)
#path = os.path.split(os.path.dirname(__file__))[0]
|