Mercurial > pidgin.yaz
view libgaim/plugins/mono/BooPlugin.boo @ 14376:b2d0b4ca2cf3
[gaim-migrate @ 17082]
It really isn't smart for us to blow away the previous install directory (we do ask nicely, but it still isn't good) if the uninstaller for the previous version fails, so now we offer the choice between "continue regardless" or "cancel installing".
It would really be ideal if we could get these translations done through gettext or something.
committer: Tailor Script <tailor@pidgin.im>
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Wed, 30 Aug 2006 02:40:56 +0000 |
parents | 60b1bc8dbf37 |
children |
line wrap: on
line source
import Gaim class BooPlugin(GaimPlugin): def handle(*args as (object)): b as Buddy b = args[0] Debug.debug(Debug.INFO, "booplugin", "Boo Plugin knows that " + b.Alias + " is away\n") override def Load(): Debug.debug(Debug.INFO, "booplugin", "loading...\n") BuddyList.OnBuddyAway.connect(self, handle) override def Unload(): Debug.debug(Debug.INFO, "booplugin", "unloading...\n") override def Destroy(): Debug.debug(Debug.INFO, "booplugin", "destroying...\n") override def Info(): return GaimPluginInfo("Boo Plugin", "0.1", "Test Boo Plugin", "Longer Description", "Eoin Coffey", "urled")