![]() |
2008-11-02
, 02:26
|
Posts: 6 |
Thanked: 4 times |
Joined on Oct 2008
|
#2
|
![]() |
2008-11-02
, 10:08
|
|
Posts: 3,404 |
Thanked: 4,474 times |
Joined on Oct 2005
@ Germany
|
#3
|
![]() |
2008-11-02
, 17:59
|
Posts: 6 |
Thanked: 4 times |
Joined on Oct 2008
|
#4
|
![]() |
2008-11-02
, 18:39
|
Posts: 605 |
Thanked: 137 times |
Joined on Nov 2005
@ La Rochelle, France
|
#5
|
The Following 2 Users Say Thank You to fredoll For This Useful Post: | ||
![]() |
2008-11-02
, 22:46
|
Posts: 6 |
Thanked: 4 times |
Joined on Oct 2008
|
#6
|
The Following 3 Users Say Thank You to azrasta For This Useful Post: | ||
![]() |
2008-11-03
, 04:28
|
Posts: 105 |
Thanked: 48 times |
Joined on Aug 2008
|
#7
|
![]() |
2008-11-03
, 04:47
|
|
Posts: 229 |
Thanked: 108 times |
Joined on Oct 2007
@ Sacramento, California
|
#8
|
![]() |
2008-11-03
, 17:37
|
Posts: 6 |
Thanked: 4 times |
Joined on Oct 2008
|
#9
|
The Following User Says Thank You to azrasta For This Useful Post: | ||
I'm developing a home applet in python for the n810, (using notepad on windows and testing on the tablet). I don't have access to a scratchbox installation.
It's a slideshow plugin that grabs a photo list (xml) from a site, and then retrieves the photos from flickr.
I managed to make everything work, but as i'm using urllib, it freezes the ui until it's done retrieving the xml and the files.
So, I'm trying to use threads instead, and that's were everything falls apart. If I call urllib.urlopen from within a thread, it just doesn't work, no error, no freezing, nothing, it just stops working. The main thread continues as normal, but the thread stops when urlopen is called.
If I call urlopen from anywhere else in the main thread, it works fine.
If I remove urlopen from the thread code, it works fine (though obviously I can't retrieve the xml, so it's useless.
If I run the plugin code from the commandline, it all works (creates the thread, receives the xml file).
If I change the code to use gtk.Window instead of hildondesktop.HomeItem, it runs fine in the tablet and in windows.
So, the thread stopping at urlopen happens only when the code runs as a normal home plugin.
Here's a simplified version of the code. The problem is at _startthread (it outputs "in thread" to a gtk label, but "done thread" never appears).
I'd really appreciate your help, I spent all day yesterday trying to find a solution, but got nothing.
Last edited by azrasta; 2008-11-01 at 22:02.