Mercurial > pidgin
annotate plugins/mono/BooPlugin.boo @ 13515:f5d4300aeed8
[gaim-migrate @ 15891]
Fix sf bug #1443092, Events logging not working properly?
"signed on" and "signed off" for people in your buddy list
are now correctly logged to the system log.
Richard, someone had already left a note in this function
to make a change after the string freeze (I think it was
you). We should still make a change after the string freeze,
but the change is different now than it was before this commit.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Wed, 15 Mar 2006 04:41:44 +0000 |
| parents | a3302d271199 |
| children |
| rev | line source |
|---|---|
| 11660 | 1 import Gaim |
| 2 | |
| 3 class BooPlugin(GaimPlugin): | |
| 4 | |
| 5 def handle(*args as (object)): | |
| 6 b as Buddy | |
| 7 b = args[0] | |
| 8 Debug.debug(Debug.INFO, "booplugin", "Boo Plugin knows that " + b.Alias + " is away\n") | |
| 9 | |
| 10 override def Load(): | |
| 11 Debug.debug(Debug.INFO, "booplugin", "loading...\n") | |
| 12 BuddyList.OnBuddyAway.connect(self, handle) | |
| 13 | |
| 14 override def Unload(): | |
| 15 Debug.debug(Debug.INFO, "booplugin", "unloading...\n") | |
| 16 | |
| 17 override def Destroy(): | |
| 18 Debug.debug(Debug.INFO, "booplugin", "destroying...\n") | |
| 19 | |
| 20 override def Info(): | |
| 21 return GaimPluginInfo("Boo Plugin", "0.1", "Test Boo Plugin", "Longer Description", "Eoin Coffey", "urled") | |
| 22 |
