I suspect the problem is the satellite map ("Show map" in the context menu is greyed out), because the other stuff (temperature & forecast) seems to work fine.
So the "network error" might be the fact that the applet can't retrieve the map image. So what, I never look at it.
But the popup every few minutes is driving me mad Very, VERY irritating.
Solution seems obvious: disable the notification in the weather applet and my blood pressure will return to a more healthy level.
You have to edit this file: /usr/share/avant-window-navigator/applets/weather/weather.py
(The file is only writable by root, so remember to use sudo when you start your editor)
And comment out the notification call in line #240 (by putting a "#" before "self.notification.show")
Result should look like this:
Code:
def network_error_cb(self, e, tb):
if type(e) is NetworkException:
print "Error in Weather:", e
# self.notification.show()
Then kill the weather applet:
Code:
ubuntu@ubuntu:~$ ps aux | grep weather.py
root 9559 0.0 0.2 234080 10792 pts/0 Sl+ 03:33 0:00 vim weather.py
ubuntu 9630 0.0 0.8 424132 32316 ? Sl 03:36 0:00 python /usr/share/avant-window-navigator/applets/weather/weather.py --uid=9 --window=23068717 --panel-id=1
ubuntu 9684 0.0 0.0 8956 872 pts/1 S+ 04:00 0:00 grep --color=auto weather.py
ubuntu@ubuntu:~$ kill 9630
ubuntu@ubuntu:~$
And restart the applet by clicking on it.
I haven't seen the obnoxious popup since. Yay!
Bookmarks