Re: [Qgis-developer] [Plugin] QGIS Web Processing Client

2014-01-09 Thread Luca Delucchi
On 7 January 2014 14:08, rldhont rldh...@gmail.com wrote:
 Hi Luca,


Hi René

 i have updated the code


maybe you forgot to push the changes I sent you a pull request
with all the changes to load the plugin on QGIS (and some PEP8
improvements).
Right now the plugin not able to load getcapabilities request because
it go on timeout.
Now I have no time to investigate more, probably next week/weeks

 Regards



-- 
ciao
Luca

http://gis.cri.fmach.it/delucchi/
www.lucadelu.org
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [Qgis-developer] [Plugin] QGIS Web Processing Client

2014-01-09 Thread rldhont

Hi Luca,

Thanks a lot for your Pull-Request. I have forgotten to push my commit. 
I reset it and merged your.


Best regards,

René-Luc

Le 09/01/2014 09:59, Luca Delucchi a écrit :

On 7 January 2014 14:08, rldhont rldh...@gmail.com wrote:

Hi Luca,


Hi René


i have updated the code


maybe you forgot to push the changes I sent you a pull request
with all the changes to load the plugin on QGIS (and some PEP8
improvements).
Right now the plugin not able to load getcapabilities request because
it go on timeout.
Now I have no time to investigate more, probably next week/weeks


Regards





___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [Qgis-developer] [Plugin] QGIS Web Processing Client

2014-01-07 Thread Pirmin Kalberer
Hi René-Luc

Thanks for your work! I will make the Processing integration backwards 
compatible with QGIS 1.8 (see also [1]) to keep the plugin maintainable.

Regards
Pirmin

[1] https://github.com/pka/qgis-apicompat-plugin

Am Freitag, 3. Januar 2014, 15.45:35 schrieb rldhont:
 Hi Horst,
 
 I have updated your QGIS Web Processing Client.
 I have put the code on github : https://github.com/rldhont/qgis-wps-client
 
 You can update the version on the QGIS plugin repository.
 
 Hi devs,
 
 You can test it and contribute.
 
 Regards,
 René-Luc D'Hont
 3Liz
 ___
 Qgis-developer mailing list
 Qgis-developer@lists.osgeo.org
 http://lists.osgeo.org/mailman/listinfo/qgis-developer
-- 
Pirmin Kalberer
Sourcepole  -  Linux  Open Source Solutions
http://www.sourcepole.com

___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [Qgis-developer] [Plugin] QGIS Web Processing Client

2014-01-07 Thread Luca Delucchi
On 3 January 2014 15:45, rldhont rldh...@gmail.com wrote:
 Hi Horst,

Hi,


 I have updated your QGIS Web Processing Client.
 I have put the code on github : https://github.com/rldhont/qgis-wps-client


I downloaded the master but I obtain this error

Traceback (most recent call last):
  File /usr/lib/python2.7/dist-packages/qgis/utils.py, line 204, in
startPlugin
plugins[packageName] = package.classFactory(iface)
  File 
/home/lucadelu/.qgis2/python/plugins/qgis-wps-client-master/__init__.py,
line 50, in classFactory
from qgswps import QgsWps
  File /usr/lib/python2.7/dist-packages/qgis/utils.py, line 453, in _import
mod = _builtin_import(name, globals, locals, fromlist, level)
  File /home/lucadelu/.qgis2/python/plugins/qgis-wps-client-master/qgswps.py,
line 23, in
from QgsWpsDockWidget import QgsWpsDockWidget
  File /usr/lib/python2.7/dist-packages/qgis/utils.py, line 453, in _import
mod = _builtin_import(name, globals, locals, fromlist, level)
  File 
/home/lucadelu/.qgis2/python/plugins/qgis-wps-client-master/QgsWpsDockWidget.py,
line 34, in
from wps.wpslib.processdescription import StringInput, TextInput,
SelectionInput, VectorInput, MultipleVectorInput, RasterInput,
MultipleRasterInput, FileInput, MultipleFileInput, ExtentInput,
CrsInput, VectorOutput, RasterOutput, StringOutput
  File /usr/lib/python2.7/dist-packages/qgis/utils.py, line 453, in _import
mod = _builtin_import(name, globals, locals, fromlist, level)
ImportError: No module named wpslib.processdescription


 You can update the version on the QGIS plugin repository.

 Hi devs,

 You can test it and contribute.

 Regards,
 René-Luc D'Hont
 3Liz


-- 
ciao
Luca

http://gis.cri.fmach.it/delucchi/
www.lucadelu.org
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [Qgis-developer] [Plugin] QGIS Web Processing Client

2014-01-07 Thread rldhont

hi Luca,

It's seem that there are an error in QgsWpsDockWidget.py:34
We have : from wps.wpslib.processdescription import ..
We should have : from wpslib.processdescription import ..

You can correct it


Le 07/01/2014 12:13, Luca Delucchi a écrit :

On 3 January 2014 15:45, rldhont rldh...@gmail.com wrote:

Hi Horst,

Hi,


I have updated your QGIS Web Processing Client.
I have put the code on github : https://github.com/rldhont/qgis-wps-client


I downloaded the master but I obtain this error

Traceback (most recent call last):
   File /usr/lib/python2.7/dist-packages/qgis/utils.py, line 204, in
startPlugin
 plugins[packageName] = package.classFactory(iface)
   File 
/home/lucadelu/.qgis2/python/plugins/qgis-wps-client-master/__init__.py,
line 50, in classFactory
 from qgswps import QgsWps
   File /usr/lib/python2.7/dist-packages/qgis/utils.py, line 453, in _import
 mod = _builtin_import(name, globals, locals, fromlist, level)
   File /home/lucadelu/.qgis2/python/plugins/qgis-wps-client-master/qgswps.py,
line 23, in
 from QgsWpsDockWidget import QgsWpsDockWidget
   File /usr/lib/python2.7/dist-packages/qgis/utils.py, line 453, in _import
 mod = _builtin_import(name, globals, locals, fromlist, level)
   File 
/home/lucadelu/.qgis2/python/plugins/qgis-wps-client-master/QgsWpsDockWidget.py,
line 34, in
 from wps.wpslib.processdescription import StringInput, TextInput,
SelectionInput, VectorInput, MultipleVectorInput, RasterInput,
MultipleRasterInput, FileInput, MultipleFileInput, ExtentInput,
CrsInput, VectorOutput, RasterOutput, StringOutput
   File /usr/lib/python2.7/dist-packages/qgis/utils.py, line 453, in _import
 mod = _builtin_import(name, globals, locals, fromlist, level)
ImportError: No module named wpslib.processdescription



You can update the version on the QGIS plugin repository.

Hi devs,

You can test it and contribute.

Regards,
René-Luc D'Hont
3Liz



___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [Qgis-developer] [Plugin] QGIS Web Processing Client

2014-01-07 Thread rldhont

Hi Luca,

i have updated the code

Regards

Le 07/01/2014 12:13, Luca Delucchi a écrit :

On 3 January 2014 15:45, rldhont rldh...@gmail.com wrote:

Hi Horst,

Hi,


I have updated your QGIS Web Processing Client.
I have put the code on github : https://github.com/rldhont/qgis-wps-client


I downloaded the master but I obtain this error

Traceback (most recent call last):
   File /usr/lib/python2.7/dist-packages/qgis/utils.py, line 204, in
startPlugin
 plugins[packageName] = package.classFactory(iface)
   File 
/home/lucadelu/.qgis2/python/plugins/qgis-wps-client-master/__init__.py,
line 50, in classFactory
 from qgswps import QgsWps
   File /usr/lib/python2.7/dist-packages/qgis/utils.py, line 453, in _import
 mod = _builtin_import(name, globals, locals, fromlist, level)
   File /home/lucadelu/.qgis2/python/plugins/qgis-wps-client-master/qgswps.py,
line 23, in
 from QgsWpsDockWidget import QgsWpsDockWidget
   File /usr/lib/python2.7/dist-packages/qgis/utils.py, line 453, in _import
 mod = _builtin_import(name, globals, locals, fromlist, level)
   File 
/home/lucadelu/.qgis2/python/plugins/qgis-wps-client-master/QgsWpsDockWidget.py,
line 34, in
 from wps.wpslib.processdescription import StringInput, TextInput,
SelectionInput, VectorInput, MultipleVectorInput, RasterInput,
MultipleRasterInput, FileInput, MultipleFileInput, ExtentInput,
CrsInput, VectorOutput, RasterOutput, StringOutput
   File /usr/lib/python2.7/dist-packages/qgis/utils.py, line 453, in _import
 mod = _builtin_import(name, globals, locals, fromlist, level)
ImportError: No module named wpslib.processdescription



You can update the version on the QGIS plugin repository.

Hi devs,

You can test it and contribute.

Regards,
René-Luc D'Hont
3Liz



___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


[Qgis-developer] [Plugin] QGIS Web Processing Client

2014-01-03 Thread rldhont

Hi Horst,

I have updated your QGIS Web Processing Client.
I have put the code on github : https://github.com/rldhont/qgis-wps-client

You can update the version on the QGIS plugin repository.

Hi devs,

You can test it and contribute.

Regards,
René-Luc D'Hont
3Liz
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer