/usr/share/pyshared/gquilt_pkg/config.py is in gquilt 0.25-2build1.
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 | ### Copyright (C) 2010 Peter Williams <peter_ono@users.sourceforge.net>
### This program is free software; you can redistribute it and/or modify
### it under the terms of the GNU General Public License as published by
### the Free Software Foundation; version 2 of the License only.
### This program is distributed in the hope that it will be useful,
### but WITHOUT ANY WARRANTY; without even the implied warranty of
### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
### GNU General Public License for more details.
### You should have received a copy of the GNU General Public License
### along with this program; if not, write to the Free Software
### Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
import gtk, gobject, os, collections, fnmatch
from gquilt_pkg import table, utils, dialogue, gutils, tlview
PARow = collections.namedtuple('PARow', ['Alias', 'Path'])
PATH_ALIAS_MODEL_DESCR = PARow(Alias=gobject.TYPE_STRING, Path=gobject.TYPE_STRING)
PATH_ALIAS_TABLE_DESCR = tlview.ViewTemplate(
properties={
'enable-grid-lines' : False,
'reorderable' : False,
'rules_hint' : False,
'headers-visible' : True,
},
selection_mode=gtk.SELECTION_SINGLE,
columns=[
tlview.Column(
title='Alias',
properties={'expand': False, 'resizable' : True},
cells=[
tlview.Cell(
creator=tlview.CellCreator(
function=gtk.CellRendererText,
expand=False,
start=True
),
properties={'editable' : True},
renderer=None,
attributes = {'text' : tlview.model_col(PATH_ALIAS_MODEL_DESCR, 'Alias')}
),
],
),
tlview.Column(
title='Path',
properties={'expand': False, 'resizable' : True},
cells=[
tlview.Cell(
creator=tlview.CellCreator(
function=gtk.CellRendererText,
expand=False,
start=True
),
properties={'editable' : False},
renderer=None,
attributes = {'text' : tlview.model_col(PATH_ALIAS_MODEL_DESCR, 'Path')}
),
],
),
]
)
GQUILT_D_NAME = os.sep.join([utils.HOME, ".gquilt.d"])
SAVED_WS_FILE_NAME = os.sep.join([GQUILT_D_NAME, "workspaces"])
if not os.path.exists(GQUILT_D_NAME):
os.mkdir(GQUILT_D_NAME, 0o775)
def append_saved_ws(path, alias=None):
fobj = open(SAVED_WS_FILE_NAME, 'a')
abbr_path = utils.path_rel_home(path)
if not alias:
alias = os.path.basename(path)
fobj.write(os.pathsep.join([alias, abbr_path]))
fobj.write(os.linesep)
fobj.close()
_KEYVAL_ESCAPE = gtk.gdk.keyval_from_name('Escape')
class AliasPathTable(table.Table):
def __init__(self, saved_file):
self._saved_file = saved_file
table.Table.__init__(self, model_descr=PATH_ALIAS_MODEL_DESCR,
table_descr=PATH_ALIAS_TABLE_DESCR,
size_req=(480, 160))
self.view.register_modification_callback(self.save_to_file)
self.connect("key_press_event", self._key_press_cb)
self.connect('button_press_event', self._handle_button_press_cb)
self.set_contents()
def _extant_path(self, path):
return os.path.exists(os.path.expanduser(path))
def _fetch_contents(self):
extant_ap_list = []
if not os.path.exists(self._saved_file):
return []
fobj = open(self._saved_file, 'r')
lines = fobj.readlines()
fobj.close()
for line in lines:
data = PARow(*line.strip().split(os.pathsep, 1))
if data in extant_ap_list:
continue
if self._extant_path(data.Path):
extant_ap_list.append(data)
extant_ap_list.sort()
self._write_list_to_file(extant_ap_list)
return extant_ap_list
def _write_list_to_file(self, ap_list):
fobj = open(self._saved_file, 'w')
for alpth in ap_list:
fobj.write(os.pathsep.join(alpth))
fobj.write(os.linesep)
fobj.close()
def _same_paths(self, path1, path2):
return utils.samefile(os.path.expanduser(path1), path2)
def _default_alias(self, path):
return os.path.basename(path)
def _abbrev_path(self, path):
return utils.path_rel_home(path)
def add_ap(self, path, alias=""):
if self._extant_path(path):
model_iter = self.model.get_iter_first()
while model_iter:
if self._same_paths(self.model.get_labelled_value(model_iter, 'Path'), path):
if alias:
self.model.set_labelled_value(model_iter, 'Alias', alias)
return
model_iter = self.model.iter_next(model_iter)
if not alias:
alias = self._default_alias(path)
data = PARow(Path=self._abbrev_path(path), Alias=alias)
self.model.append(data)
self.save_to_file()
def save_to_file(self, _arg=None):
ap_list = self.get_contents()
self._write_list_to_file(ap_list)
def get_selected_ap(self):
data = self.get_selected_data_by_label(['Path', 'Alias'])
if not data:
return False
return data[0]
def _handle_button_press_cb(self, widget, event):
if event.type == gtk.gdk.BUTTON_PRESS:
if event.button == 2:
self.seln.unselect_all()
return True
return False
def _key_press_cb(self, widget, event):
if event.keyval == _KEYVAL_ESCAPE:
self.seln.unselect_all()
return True
return False
class WSPathTable(AliasPathTable):
def __init__(self):
AliasPathTable.__init__(self, SAVED_WS_FILE_NAME)
class PathSelectDialog(dialogue.Dialog):
def __init__(self, create_table, label, parent=None):
dialogue.Dialog.__init__(self, title="gwsmg: Select %s" % label, parent=parent,
flags=gtk.DIALOG_MODAL|gtk.DIALOG_DESTROY_WITH_PARENT,
buttons=(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,
gtk.STOCK_OK, gtk.RESPONSE_OK)
)
hbox = gtk.HBox()
self.ap_table = create_table()
self.ap_table.seln.connect("changed", self._selection_cb)
hbox.pack_start(self.ap_table)
self.vbox.pack_start(hbox)
hbox = gtk.HBox()
hbox.pack_start(gtk.Label("%s:" % label))
self._path = gutils.EntryWithHistory()
self._path.set_width_chars(32)
self._path.connect("activate", self._path_cb)
hbox.pack_start(self._path, expand=True, fill=True)
self._browse_button = gtk.Button(label="_Browse")
self._browse_button.connect("clicked", self._browse_cb)
hbox.pack_start(self._browse_button, expand=False, fill=False)
self.vbox.pack_start(hbox, expand=False, fill=False)
self.show_all()
self.ap_table.seln.unselect_all()
self._path.set_text('')
def _selection_cb(self, _selection=None):
alpth = self.ap_table.get_selected_ap()
if alpth:
self._path.clear_to_history()
self._path.set_text(alpth[0])
def _path_cb(self, entry=None):
self.response(gtk.RESPONSE_OK)
def _browse_cb(self, button=None):
dirname = dialogue.ask_dir_name("gquilt: Browse for Directory", existing=True, parent=self)
if dirname:
self._path.set_text(utils.path_rel_home(dirname))
def get_path(self):
return os.path.expanduser(self._path.get_text())
class WSOpenDialog(PathSelectDialog):
def __init__(self, parent=None):
PathSelectDialog.__init__(self, create_table=WSPathTable,
label="Workspace/Directory", parent=parent)
# Manage external editors
EDITORS_THAT_NEED_A_TERMINAL = ["vi", "joe"]
DEFAULT_EDITOR = "gedit"
DEFAULT_TERMINAL = "gnome-terminal"
if os.name == 'nt' or os.name == 'dos':
DEFAULT_EDITOR = "notepad"
for env in ['VISUAL', 'EDITOR']:
try:
ed = os.environ[env]
if ed != "":
DEFAULT_EDITOR = ed
break
except KeyError:
pass
DEFAULT_PERUSER = os.environ.get('GQUILT_PERUSER', None)
for env in ['COLORTERM', 'TERM']:
try:
term = os.environ[env]
if term != "":
DEFAULT_TERMINAL = term
break
except KeyError:
pass
EDITOR_GLOB_FILE_NAME = os.sep.join([GQUILT_D_NAME, "editors"])
PERUSER_GLOB_FILE_NAME = os.sep.join([GQUILT_D_NAME, "perusers"])
def _read_editor_defs(edeff=EDITOR_GLOB_FILE_NAME):
editor_defs = []
if os.path.isfile(edeff):
for line in open(edeff, 'r').readlines():
eqi = line.find('=')
if eqi < 0:
continue
glob = line[:eqi].strip()
edstr = line[eqi+1:].strip()
editor_defs.append([glob, edstr])
return editor_defs
def _write_editor_defs(edefs, edeff=EDITOR_GLOB_FILE_NAME):
fobj = open(edeff, 'w')
for edef in edefs:
fobj.write('='.join(edef))
fobj.write(os.linesep)
fobj.close()
if not os.path.exists(EDITOR_GLOB_FILE_NAME):
_write_editor_defs([('*', DEFAULT_EDITOR)])
def _assign_extern_editors(file_list, edeff=EDITOR_GLOB_FILE_NAME):
ed_assignments = {}
unassigned_files = []
editor_defs = _read_editor_defs(edeff)
for fobj in file_list:
assigned = False
for globs, edstr in editor_defs:
for glob in globs.split(os.pathsep):
if fnmatch.fnmatch(fobj, glob):
if edstr in ed_assignments:
ed_assignments[edstr].append(fobj)
else:
ed_assignments[edstr] = [fobj]
assigned = True
break
if assigned:
break
if not assigned:
unassigned_files.append(fobj)
return ed_assignments, unassigned_files
def assign_extern_editors(file_list):
ed_assignments, unassigned_files = _assign_extern_editors(file_list, EDITOR_GLOB_FILE_NAME)
if unassigned_files:
if DEFAULT_EDITOR in ed_assignments:
ed_assignments[DEFAULT_EDITOR] += unassigned_files
else:
ed_assignments[DEFAULT_EDITOR] = unassigned_files
return ed_assignments
def assign_extern_perusers(file_list):
ed_assignments, unassigned_files = _assign_extern_editors(file_list, PERUSER_GLOB_FILE_NAME)
extra_assigns = assign_extern_editors(unassigned_files)
for key in extra_assigns:
if key in ed_assignments:
ed_assignments[key] += extra_assigns[key]
else:
ed_assignments[key] = extra_assigns[key]
return ed_assignments
GERow = collections.namedtuple('GERow', ['globs', 'editor'])
EDITOR_GLOB_MODEL_DESCR = GERow(globs=gobject.TYPE_STRING, editor=gobject.TYPE_STRING)
EDITOR_GLOB_TABLE_DESCR = tlview.ViewTemplate(
properties={
'enable-grid-lines' : True,
'reorderable' : True,
},
selection_mode=gtk.SELECTION_MULTIPLE,
columns=[
tlview.Column(
title='File Pattern(s)',
properties={'expand' : True},
cells=[
tlview.Cell(
creator=tlview.CellCreator(
function=gtk.CellRendererText,
expand=False,
start=True
),
properties={'editable' : True},
renderer=None,
attributes={'text' : tlview.model_col(EDITOR_GLOB_MODEL_DESCR, 'globs')}
),
],
),
tlview.Column(
title='Editor Command',
properties={'expand' : True},
cells=[
tlview.Cell(
creator=tlview.CellCreator(
function=gtk.CellRendererText,
expand=False,
start=True
),
properties={'editable' : True},
renderer=None,
attributes={'text' : tlview.model_col(EDITOR_GLOB_MODEL_DESCR, 'editor')}
),
],
),
]
)
class EditorAllocationTable(table.Table):
def __init__(self, edeff=EDITOR_GLOB_FILE_NAME):
table.Table.__init__(self, EDITOR_GLOB_MODEL_DESCR,
EDITOR_GLOB_TABLE_DESCR, (320, 160))
self._edeff = edeff
self.set_contents()
def _fetch_contents(self):
return _read_editor_defs(self._edeff)
def apply_changes(self):
_write_editor_defs(edefs=self.get_contents(), edeff=self._edeff)
self.set_contents()
class EditorAllocationDialog(dialogue.Dialog):
def __init__(self, edeff=EDITOR_GLOB_FILE_NAME, parent=None):
dialogue.Dialog.__init__(self, title='gquilt: Editor Allocation', parent=parent,
flags=gtk.DIALOG_DESTROY_WITH_PARENT,
buttons=(gtk.STOCK_CLOSE, gtk.RESPONSE_CLOSE,
gtk.STOCK_OK, gtk.RESPONSE_OK)
)
self._table = EditorAllocationTable(edeff=edeff)
self._buttons = gutils.ActionHButtonBox(list(self._table.action_groups.values()))
self.vbox.pack_start(self._table)
self.vbox.pack_start(self._buttons, expand=False)
self.connect("response", self._handle_response_cb)
self.show_all()
self._table.view.get_selection().unselect_all()
def _handle_response_cb(self, dialog, response_id):
if response_id == gtk.RESPONSE_OK:
self._table.apply_changes()
self.destroy()
class PeruserAllocationDialog(EditorAllocationDialog):
def __init__(self, parent=None):
EditorAllocationDialog.__init__(self, edeff=PERUSER_GLOB_FILE_NAME, parent=None)
|