XBMC Community Forum
Notify - iPhone Notification App for XBMC (send push notifications to XBMC) - Printable Version

+- XBMC Community Forum (http://forum.xbmc.org)
+-- Forum: Help and Support (/forumdisplay.php?fid=33)
+--- Forum: Supplementary Tools for XBMC (/forumdisplay.php?fid=116)
+--- Thread: Notify - iPhone Notification App for XBMC (send push notifications to XBMC) (/showthread.php?tid=64545)



- johoja - 2010-02-07 20:32

Cloaky Wrote:o damn.. well i will get it installed, sorry about that, won't happen again! haha

Better not .... Smile hehe..

Next time you see a crash just email me the log pls.

And if you end up adding a Growl skin, you should be able to just use HTTP to talk to the iPhone to do an SMS reply it's pretty simple.


- Cloaky - 2010-02-08 03:41

It would be nice if you could have a change log for the beta versions, so we (the ones trying the beta ver) know what to play with, what to test and stuff like that!


- johoja - 2010-02-08 03:43

Cloaky Wrote:It would be nice if you could have a change log for the beta versions, so we (the ones trying the beta ver) know what to play with, what to test and stuff like that!

I leave it as a suprise Smile


Edit: Fine...you..win..updated first page.


- Cloaky - 2010-02-08 21:13

There is a strange bug with the mail EG event, well i was playing with SMS and i end up making this

Quote:if parts[1] == "SMS":
if parts[3] == Password + ":Lock":
eg.plugins.System.LockWorkstation()

just for another way to lock my pc i tried to do it with the mail
Quote:if parts[1] == "Mail":
print parts[3]
if parts[3] == "1":
eg.plugins.System.LockWorkstation()
even printing 1 from parts[3] it returns false on the if... i have no idea why.. so i might be the way u are sending it to EG!

i also tested the new event split character sequence "::", and it works wonderfully! Just another thing that i noticed, which might be a EG bug, but as i am not sure... so why not post it here ^^, if ur text contains a "," it will be converted to a ".", just on EG, it still shows as a "," on growl!


- johoja - 2010-02-08 21:32

Cloaky Wrote:There is a strange bug with the mail EG event, well i was playing with SMS and i end up making this



just for another way to lock my pc i tried to do it with the mail

even printing 1 from parts[3] it returns false on the if... i have no idea why.. so i might be the way u are sending it to EG!

i also tested the new event split character sequence "::", and it works wonderfully! Just another thing that i noticed, which might be a EG bug, but as i am not sure... so why not post it here ^^, if ur text contains a "," it will be converted to a ".", just on EG, it still shows as a "," on growl!

Yeah...The "," to ".". I do, It's because I adapted the code from my XBMC stuff. Because XBMC splits on "," . So if you had to commas in you email, notification in XBMC would not work. I will fix it.

can you do a "print parts" on your email, and see what happens.


- Cloaky - 2010-02-09 01:26

johoja Wrote:Yeah...The "," to ".". I do, It's because I adapted the code from my XBMC stuff. Because XBMC splits on "," . So if you had to commas in you email, notification in XBMC would not work. I will fix it.

can you do a "print parts" on your email, and see what happens.

Well, i just did it, and it seems to be right. I got "Mail" from [1], "Pedro" from the [2] and "Test" from the [3].

Code:
if EventParts[1] == "Mail":
    print EventPart[1]
    print EventPart[2]
    print EventPart[3]

[1] and [2] are working fine, the both returned true on a if statement, however [3] might have a extra space or some hidden character or something like that... because i can't get it to work!


- m021478 - 2010-02-09 03:06

For some reason I can't get the notify.io service working to provide my laptop with Growl notifications via the NIO client.

In the Notify Pro app settings, do I even need to configure the Growl Settings? Or is simply configuring the notify.io settings within Notify Pro enough?

When I click the NIO menubar icon and choose settings, it brings me to a notify.io page which shows my email address and an API key, which is the information I entered in the notify.io settings of Notify Pro. This is correct right? It also shows source settings and debug settings... do I need to enter anything into these fields?

On the notify.io website, under the outlets tab I currently have listed my desktop notification client, and under the sources tab, I currently do not have anything listed. Are these settings correct?

Any suggestions would be greatly appreciated... Thanks!

EDIT:
As I was writing this question, my iPhone had a push notification message pop up from an incoming email that I just received and sure enough that triggered the NIO client to cause my laptop to display a growl message for the notification. I'd previously been testing it by sending myself SMS messages from my google voice account and waiting to see if once received on my iPhone, I also received a growl notification on my laptop, which I did not and still do not...

any suggestions as to why it might be working with push notifications and not sms noticiations?


- johoja - 2010-02-09 05:28

m021478 Wrote:For some reason I can't get the notify.io service working to provide my laptop with Growl notifications via the NIO client.

In the Notify Pro app settings, do I even need to configure the Growl Settings? Or is simply configuring the notify.io settings within Notify Pro enough?

When I click the NIO menubar icon and choose settings, it brings me to a notify.io page which shows my email address and an API key, which is the information I entered in the notify.io settings of Notify Pro. This is correct right? It also shows source settings and debug settings... do I need to enter anything into these fields?

On the notify.io website, under the outlets tab I currently have listed my desktop notification client, and under the sources tab, I currently do not have anything listed. Are these settings correct?

Any suggestions would be greatly appreciated... Thanks!

EDIT:
As I was writing this question, my iPhone had a push notification message pop up from an incoming email that I just received and sure enough that triggered the NIO client to cause my laptop to display a growl message for the notification. I'd previously been testing it by sending myself SMS messages from my google voice account and waiting to see if once received on my iPhone, I also received a growl notification on my laptop, which I did not and still do not...

any suggestions as to why it might be working with push notifications and not sms noticiations?

No..it should work for all if Push worked...SMS should work..send me your syslog pls..

Do the notifications show up on the notify.io website under the history tab?


- johoja - 2010-02-09 05:29

Cloaky Wrote:Well, i just did it, and it seems to be right. I got "Mail" from [1], "Pedro" from the [2] and "Test" from the [3].

Code:
if EventParts[1] == "Mail":
    print EventPart[1]
    print EventPart[2]
    print EventPart[3]

[1] and [2] are working fine, the both returned true on a if statement, however [3] might have a extra space or some hidden character or something like that... because i can't get it to work!

Can you show me what python returned for those...prints pls?


- Cloaky - 2010-02-10 01:41

johoja Wrote:Can you show me what python returned for those...prints pls?

Mail yourself with "test" or w/e you want and try this on

Code:
if EventParts[1] == "Mail":
    if EventPart[3] == "test":
        print "true"