Re: [Qgis-developer] Unit tests failing - a heartfelt plea

2012-06-19 Thread Marco Hugentobler
Only one test failed here - qgis_regression992 Looking at the past dashboard results (http://dash.orfeo-toolbox.org/index.php?project=QGIS), there is a shift with qgis_regression992 even in the passed tests (with a pixel difference just under 300, so considered as 'valid'). It was

Re: [Qgis-developer] Unit tests failing - a heartfelt plea

2012-06-19 Thread Tim Sutton
Hi On Tue, Jun 19, 2012 at 8:46 AM, Marco Hugentobler marco.hugentob...@sourcepole.ch wrote: Only one test failed here - qgis_regression992 Looking at the past dashboard results (http://dash.orfeo-toolbox.org/index.php?project=QGIS), there is a shift with qgis_regression992 even in the

Re: [Qgis-developer] Socket server freezes on Python plugin

2012-06-19 Thread Bernhard Ströbl
Hi Victor, I happen to have done just that recently. I used QTcpServer, not sure if it is the best way to do it, but it works with QGIS 1.7.4 and 1.8. I think I used the PyQt examples. I hope it is of use. from PyQt4 import QtCore, QtGui, QtSql, QtNetwork class MyPlugin: def

Re: [Qgis-developer] Socket server freezes on Python plugin

2012-06-19 Thread G. Allegri
I've tried it. I seems it depends on QGis not giving the plugin thread the option to serve while IDLE waiting for user interaction. The plugin server unfreezes even if you simply move the mouse over QGis (wihtout doing any action on it). It must be investigated... giovanni 2012/6/19 Víctor

Re: [Qgis-developer] Socket server freezes on Python plugin

2012-06-19 Thread G. Allegri
The plugin server unfreezes even if you simply move the mouse over QGis (wihtout doing any action on it). This happens only if you move the mouse over the Canvas, while the server remains freezed while moving on other areas (TOC, toolbar, etc.) It must be investigated... giovanni

Re: [Qgis-developer] Socket server freezes on Python plugin

2012-06-19 Thread Víctor González
Hi again, I tried Bernhard's solution and it worked like charm. After digging a little more into PyQt I found this thread [1] with some answers. Seems like QtNetworking deals with all this networking and threading issues internally, so my problem is solved that way. Regarding Giovanni's

Re: [Qgis-developer] Socket server freezes on Python plugin

2012-06-19 Thread G. Allegri
No problems with your basic example with pure python threading. The problem is the interaction with the Qt event loop. That's why PyQt threading is there ;) giovanni Inviato da dispositivo mobile Il giorno 19/giu/2012 12.50, Víctor González victorzi...@gmail.com ha scritto: Hi again, I tried

[Qgis-developer] Problems with a WMS-T

2012-06-19 Thread Paolo Corti
Hi all I am using the following WMS-T layer without problems in OpenLayers using EPSG:900913: url: http://geohub.jrc.ec.europa.eu/forest/effis/effis_core? layer: layer:effis:stats_temp First: is it possible to specify in the QGIS 'Add WMS' dialog the time parameter? I tried to append it to the

[Qgis-developer] API docs for 1.7.4, 1.8.0 and beyond

2012-06-19 Thread Larry Shaffer
Hi, As a resource for a plugin I'm working on, I generated standalone archives of the API docs for 1.7.4 and 1.8.0 to aid in plugin development, since the online API docs follow the master branch. This helps developers to write compatible plugins relative to the user install base (not everyone

Re: [Qgis-developer] API docs for 1.7.4, 1.8.0 and beyond

2012-06-19 Thread Jürgen E . Fischer
Hi Larry, On Tue, 19. Jun 2012 at 13:03:20 -0600, Larry Shaffer wrote: As a resource for a plugin I'm working on, I generated standalone archives of the API docs for 1.7.4 and 1.8.0 to aid in plugin development, since the online API docs follow the master branch. Oh, good point.

Re: [Qgis-developer] API docs for 1.7.4, 1.8.0 and beyond

2012-06-19 Thread Larry Shaffer
Hi Jürgen, On Tue, Jun 19, 2012 at 3:30 PM, Jürgen E. j...@norbit.de wrote: Hi Larry, On Tue, 19. Jun 2012 at 13:03:20 -0600, Larry Shaffer wrote: As a resource for a plugin I'm working on, I generated standalone archives of the API docs for 1.7.4 and 1.8.0 to aid in plugin development,