Mercurial > pidgin.yaz
view plugins/mono/BooPlugin.boo @ 12083:a825137820c7
[gaim-migrate @ 14380]
01:59 < Bleeter> make[2]: *** No rule to make target `Makefile.ms', needed by `distdir'. Stop.
01:59 < Bleeter> make[1]: *** [distdir] Error 1
01:59 < Bleeter> make: *** [distdir] Error 1
committer: Tailor Script <tailor@pidgin.im>
author | Gary Kramlich <grim@reaperworld.com> |
---|---|
date | Mon, 14 Nov 2005 08:40:54 +0000 |
parents | a3302d271199 |
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")