Improve debugging relating to URL mangler plugins
This commit is contained in:
parent
1e187b0333
commit
4cfc1c6fd2
|
@ -227,7 +227,7 @@ class Terminal(gtk.VBox):
|
||||||
match = urlplugin.match
|
match = urlplugin.match
|
||||||
self.matches[name] = self.vte.match_add(match)
|
self.matches[name] = self.vte.match_add(match)
|
||||||
dbg('Terminal::update_matches: added plugin URL handler \
|
dbg('Terminal::update_matches: added plugin URL handler \
|
||||||
for %s' % name)
|
for %s (%s)' % (name, urlplugin.__class__.__name__))
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
err('Terminal::update_url_matches: %s' % ex)
|
err('Terminal::update_url_matches: %s' % ex)
|
||||||
|
|
||||||
|
@ -891,6 +891,8 @@ for %s' % name)
|
||||||
if match == self.matches[urlplugin.handler_name]:
|
if match == self.matches[urlplugin.handler_name]:
|
||||||
newurl = urlplugin.callback(url)
|
newurl = urlplugin.callback(url)
|
||||||
if newurl is not None:
|
if newurl is not None:
|
||||||
|
dbg('Terminal::prepare_url: URL prepared by \
|
||||||
|
%s plugin' % urlplugin.handler_name)
|
||||||
url = newurl
|
url = newurl
|
||||||
break;
|
break;
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
|
|
Loading…
Reference in New Issue