htmlim.py 595 B

123456789101112131415161718192021
  1. """
  2. SleekXMPP: The Sleek XMPP Library
  3. Copyright (C) 2010 Nathanael C. Fritz
  4. This file is part of SleekXMPP.
  5. See the file LICENSE for copying permission.
  6. """
  7. from sleekxmpp.stanza import Message
  8. from sleekxmpp.xmlstream import register_stanza_plugin
  9. from sleekxmpp.plugins.xep_0071 import XHTML_IM as HTMLIM
  10. register_stanza_plugin(Message, HTMLIM)
  11. # To comply with PEP8, method names now use underscores.
  12. # Deprecated method names are re-mapped for backwards compatibility.
  13. HTMLIM.setBody = HTMLIM.set_body
  14. HTMLIM.getBody = HTMLIM.get_body
  15. HTMLIM.delBody = HTMLIM.del_body