The Following 5 Users Say Thank You to addisjon For This Useful Post: | ||
![]() |
2009-06-11
, 12:00
|
|
Posts: 1,684 |
Thanked: 1,562 times |
Joined on Jun 2008
@ Austin, TX
|
#12
|
epage, thanks so much for your work on this, especially the SMS!
I've been making a rudimentary SMS notifier which piggybacks off of your code and blinks the LED, but I ran into a permissions error when calling my python script from alarmd, and the problem was with '.gv_cookies.txt'.
I looked for this file but it doesn't exist, so I'm wondering if this line in gv_backend.py is correct?
I changed it to:Code:cookieFile = os.path.join(os.path.expanduser("~"), ".gv_cookies.txt")
and everything works but I wanted to make sure there wouldn't be any side-effects.Code:cookieFile = os.path.join(os.path.expanduser("~"), ".dialcentral/gv_cookies.txt")
if cookieFile is None: cookieFile = os.path.join(os.path.expanduser("~"), ".gv_cookies.txt")
![]() |
2009-06-13
, 03:49
|
|
Moderator |
Posts: 7,109 |
Thanked: 8,820 times |
Joined on Oct 2007
@ Vancouver, BC, Canada
|
#13
|
![]() |
2009-06-13
, 05:15
|
|
Posts: 1,674 |
Thanked: 171 times |
Joined on Mar 2007
@ Anderson, IN
|
#14
|
|
2009-06-13
, 08:07
|
Guest |
Posts: n/a |
Thanked: 0 times |
Joined on
|
#15
|
![]() |
2009-06-13
, 22:43
|
|
Posts: 1,684 |
Thanked: 1,562 times |
Joined on Jun 2008
@ Austin, TX
|
#16
|
I had to downgrade to 0.97 to get Grandcentral to work. Please use the code from 0.97 for us old school Grandcentral users...
![]() |
2009-06-13
, 23:03
|
|
Posts: 1,684 |
Thanked: 1,562 times |
Joined on Jun 2008
@ Austin, TX
|
#17
|
I had to downgrade to 0.97 to get Grandcentral to work. Please use the code from 0.97 for us old school Grandcentral users...
![]() |
2009-06-14
, 00:53
|
|
Moderator |
Posts: 7,109 |
Thanked: 8,820 times |
Joined on Oct 2007
@ Vancouver, BC, Canada
|
#18
|
![]() |
2009-06-14
, 01:04
|
Posts: 4,030 |
Thanked: 1,633 times |
Joined on Jul 2007
@ nd usa
|
#19
|
1.0 is hanging on my N810
after upgrading to google voice I can no longer dial out.
put in 7 digit number - hit dial and nothing.
same thing using gc login
any help?
![]() |
2009-06-14
, 21:28
|
|
Posts: 1,674 |
Thanked: 171 times |
Joined on Mar 2007
@ Anderson, IN
|
#20
|
I've been making a rudimentary SMS notifier which piggybacks off of your code and blinks the LED, but I ran into a permissions error when calling my python script from alarmd, and the problem was with '.gv_cookies.txt'.
I looked for this file but it doesn't exist, so I'm wondering if this line in gv_backend.py is correct?