diff options
author | mathieui <mathieui@mathieui.net> | 2014-10-11 16:52:41 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-10-11 16:52:41 +0200 |
commit | 8e29f6d1ff8402f7d2e2381d2d33b05dcc28503a (patch) | |
tree | b1ddbd5c14abc4bc55b9873566b739c45ce358a1 /src/tabs/xmltab.py | |
parent | 8f6ab25fc96e54e2e717fd9ccaf3c07fe6fb9a98 (diff) | |
download | poezio-8e29f6d1ff8402f7d2e2381d2d33b05dcc28503a.tar.gz poezio-8e29f6d1ff8402f7d2e2381d2d33b05dcc28503a.tar.bz2 poezio-8e29f6d1ff8402f7d2e2381d2d33b05dcc28503a.tar.xz poezio-8e29f6d1ff8402f7d2e2381d2d33b05dcc28503a.zip |
Add a /dump <filename> command to the XML tab
Diffstat (limited to 'src/tabs/xmltab.py')
-rw-r--r-- | src/tabs/xmltab.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/tabs/xmltab.py b/src/tabs/xmltab.py index 57b55103..d33f4d48 100644 --- a/src/tabs/xmltab.py +++ b/src/tabs/xmltab.py @@ -11,12 +11,14 @@ import logging log = logging.getLogger(__name__) import curses +import os from sleekxmpp.xmlstream import matcher from sleekxmpp.xmlstream.handler import Callback from . import Tab import windows +from xhtml import clean_text class XMLTab(Tab): def __init__(self): @@ -45,6 +47,10 @@ class XMLTab(Tab): usage=_('<xml mask>'), desc=_('Show only the stanzas matching the given xml mask.'), shortdesc=_('Filter by xml mask.')) + self.register_command('dump', self.command_dump, + usage=_('<filename>'), + desc=_('Writes the content of the XML buffer into a file.'), + shortdesc=_('Write in a file.')) self.input = self.default_help_message self.key_func['^T'] = self.close self.key_func['^I'] = self.completion @@ -111,6 +117,17 @@ class XMLTab(Tab): self.filter = '' self.refresh() + def command_dump(self, arg): + """/dump <filename>""" + xml = self.core.xml_buffer.messages[:] + text = '\n'.join(('%s %s' % (msg.str_time, clean_text(msg.txt)) for msg in xml)) + filename = os.path.expandvars(os.path.expanduser(arg)) + try: + with open(filename, 'w') as fd: + fd.write(text) + except Exception as e: + self.core.information('Could not write the XML dump: %s' % e, 'Error') + def on_slash(self): """ '/' is pressed, activate the input |