Added plugin.fpath to keep track of path; added edit button in plugin window
svn: r13484
This commit is contained in:
parent
9130ddd23a
commit
822586d8a5
@ -28,6 +28,7 @@
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
import traceback
|
import traceback
|
||||||
from gettext import gettext as _
|
from gettext import gettext as _
|
||||||
|
import os
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
@ -113,6 +114,9 @@ class PluginStatus(ManagedWindow.ManagedWindow):
|
|||||||
hbutbox.add(self.__hide_btn)
|
hbutbox.add(self.__hide_btn)
|
||||||
self.__hide_btn.connect('clicked', self.__hide)
|
self.__hide_btn.connect('clicked', self.__hide)
|
||||||
if __debug__:
|
if __debug__:
|
||||||
|
self.__edit_btn = gtk.Button(_("Edit"))
|
||||||
|
hbutbox.add(self.__edit_btn)
|
||||||
|
self.__edit_btn.connect('clicked', self.__edit)
|
||||||
self.__load_btn = gtk.Button(_("Load"))
|
self.__load_btn = gtk.Button(_("Load"))
|
||||||
hbutbox.add(self.__load_btn)
|
hbutbox.add(self.__load_btn)
|
||||||
self.__load_btn.connect('clicked', self.__load)
|
self.__load_btn.connect('clicked', self.__load)
|
||||||
@ -258,13 +262,15 @@ Description: %(descr)s
|
|||||||
Authors: %(authors)s
|
Authors: %(authors)s
|
||||||
Email: %(email)s
|
Email: %(email)s
|
||||||
Filename: %(fname)s
|
Filename: %(fname)s
|
||||||
""" % {
|
Location: %(fpath)s
|
||||||
|
""" % {
|
||||||
'name': pdata.name,
|
'name': pdata.name,
|
||||||
'typestr': typestr,
|
'typestr': typestr,
|
||||||
'descr': pdata.description,
|
'descr': pdata.description,
|
||||||
'authors': auth,
|
'authors': auth,
|
||||||
'email': email,
|
'email': email,
|
||||||
'fname': pdata.fname
|
'fname': pdata.fname,
|
||||||
|
'fpath': pdata.fpath,
|
||||||
}
|
}
|
||||||
InfoDialog('Detailed Info', infotxt, parent=self.window)
|
InfoDialog('Detailed Info', infotxt, parent=self.window)
|
||||||
|
|
||||||
@ -297,6 +303,21 @@ Filename: %(fname)s
|
|||||||
self.__pmgr.load_plugin(pdata)
|
self.__pmgr.load_plugin(pdata)
|
||||||
self.__rebuild_load_list()
|
self.__rebuild_load_list()
|
||||||
|
|
||||||
|
def __edit(self, obj):
|
||||||
|
""" Callback function from the "Load" button
|
||||||
|
"""
|
||||||
|
model, node = self.selection_reg.get_selected()
|
||||||
|
if not node:
|
||||||
|
return
|
||||||
|
id = model.get_value(node, 4)
|
||||||
|
pdata = self.__preg.get_plugin(id)
|
||||||
|
if "EDITOR" in os.environ:
|
||||||
|
os.system("""$EDITOR "%s" &""" %
|
||||||
|
os.path.join(pdata.fpath, pdata.fname))
|
||||||
|
else:
|
||||||
|
os.system("""gedit "%s" &""" %
|
||||||
|
os.path.join(pdata.fpath, pdata.fname))
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# Details for an individual plugin that failed
|
# Details for an individual plugin that failed
|
||||||
|
@ -844,6 +844,7 @@ class PluginRegister(object):
|
|||||||
continue
|
continue
|
||||||
module = match.groups()[0]
|
module = match.groups()[0]
|
||||||
plugin.mod_name = module
|
plugin.mod_name = module
|
||||||
|
plugin.fpath = dir
|
||||||
rmlist.reverse()
|
rmlist.reverse()
|
||||||
for ind in rmlist:
|
for ind in rmlist:
|
||||||
del self.__plugindata[ind]
|
del self.__plugindata[ind]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user