------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
         
http://bugs.kde.org/show_bug.cgi?id=99060         




------- Additional Comments From mail dipe org  2007-11-11 05:45 -------
Charles; well, if you add a script that contains only following both lines;

def messageReceived(message):
  message.setPlainBody("RECEIVED %s" % message.plainBody())

then a receiving message could be easy manipulated. If there is a desire to 
have it more generic, then probably something like;

  from subprocess import *
  p = Popen(['tr','T','B'],bufsize=1024,stdin=PIPE,stdout=PIPE,close_fds=True)
  p.stdin.write("Test")
  p.stdin.close()
  print p.stdout.read()

can be used to redirect it to an external prog. But reading it again, is it 
about manipulating the xml/xhtml/html displayed in the khtmlpart?
_______________________________________________
kopete-devel mailing list
[email protected]
https://mail.kde.org/mailman/listinfo/kopete-devel

Reply via email to