예제 #1
0
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)
예제 #2
0
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)
예제 #3
0
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)
예제 #4
0
def testGrowl(host, password):
    growl.sendGrowl("Test Growl", "Testing Growl settings from Sick Beard", "Test", host, password)