def notify(type, message): if type == NOTIFY_DOWNLOAD and sickbeard.XBMC_NOTIFY_ONDOWNLOAD == True: xbmc.notifyXBMC(message, notifyStrings[type]) if type == NOTIFY_SNATCH and sickbeard.XBMC_NOTIFY_ONSNATCH: xbmc.notifyXBMC(message, notifyStrings[type]) growl.sendGrowl(notifyStrings[type], message)
def notify(type, message): if type == NOTIFY_DOWNLOAD and sickbeard.XBMC_NOTIFY_ONDOWNLOAD == True: xbmc.notifyXBMC(message, notifyStrings[type]) if type == NOTIFY_SNATCH and sickbeard.XBMC_NOTIFY_ONSNATCH: xbmc.notifyXBMC(message, notifyStrings[type]) growl.sendGrowl(notifyStrings[type], message) if type == NOTIFY_DOWNLOAD: tweet.notifyTwitter(message) myepisodes.notifyMyepisodes(notifyStrings[type], message)
def notify(type, message): if type == NOTIFY_DOWNLOAD and sickbeard.XBMC_NOTIFY_ONDOWNLOAD == True: xbmc.notifyXBMC(message, notifyStrings[type]) if type == NOTIFY_SNATCH and sickbeard.XBMC_NOTIFY_ONSNATCH: xbmc.notifyXBMC(message, notifyStrings[type]) growl.sendGrowl(notifyStrings[type], message) prowl.sendProwl(message) notifo.notifyNotifo(message) if type == NOTIFY_DOWNLOAD: tweet.notifyTwitter(message)
def testXBMC(host, username, password): xbmc.notifyXBMC("Testing XBMC notifications from Sick Beard", "Test Notification", host, username, password)