[Qgis-developer] QGIS improvements: printing and reporting

2014-07-25 Thread Andreas Neumann
Hi all, I wonder who of the QGIS users have an interest in improving the print composer and introducing a new reporting mode (similar to Microsoft Access or Jasper reports). Such a reporting mode would have header/footer/main section and a notion of page flow/page breaks. It would properly integr

[Qgis-developer] Problem with search panel in Qgis Web Client

2014-07-25 Thread Luca Manganelli
Hi, has anyone had problems with qgis web client and the search panel in the left side? With any value, the qgis FCGI module returns always an empty result. Maybe I must configure the qgis project to allow searches? ___ Qgis-developer mailing list Qgis-

[Qgis-developer] Map composer: map updates

2014-07-25 Thread Paolo Cavallini
Hi all. I found a small annoyance: * open a new composer * add a map * set property to Render (not Cache) * change symbology on the canvas * the map is not updated * it gets updated when clicking on the button Update. So apparently there is no difference between Cache and Render (i.e. Render is u

[Qgis-developer] Processing subplugins broken on master?

2014-07-25 Thread Paolo Cavallini
Hi all. On current master, with upgraded Processing plugin, its subplugins fail: === Lecos File "/usr/lib/python2.7/dist-packages/qgis/utils.py", line 454, in _import mod = _builtin_import(name, globals, locals, fromlist, level) ImportError: No module named outputs.OutputVector sextante_ani

Re: [Qgis-developer] Map composer: map updates

2014-07-25 Thread Andreas Neumann
Hi Paolo, There is a difference between "cache" and "render": If you zoom in / navigate in the print composer layout and your mode is "render" the map will be re-rendered at higher resolution while in "cache" mode the map stays pixelated. It also means that the "render" mode will get slower the m

Re: [Qgis-developer] Processing subplugins broken on master?

2014-07-25 Thread Alexander Bruy
Hi Paolo, seems this is result of the huge refactoring of inputs and outputs. Now all inputs are in processing.core.parameters and all outputs in processing.core.outputs packages. So fixing this is trivial task, just adjust import clauses 2014-07-25 16:32 GMT+03:00 Paolo Cavallini : > Hi all. >

Re: [Qgis-developer] Map composer: map updates

2014-07-25 Thread Paolo Cavallini
Il 25/07/2014 16:06, Andreas Neumann ha scritto: > There is a difference between "cache" and "render": oh, I see, thanks for clarifying > For me personally there is no need to sync the main canvas and the print > composer after updates in the main map canvas. At print time the map is > re-render

Re: [Qgis-developer] Processing subplugins broken on master?

2014-07-25 Thread Paolo Cavallini
Il 25/07/2014 16:40, Alexander Bruy ha scritto: > seems this is result of the huge refactoring of inputs and outputs. > Now all inputs are in processing.core.parameters and all outputs in > processing.core.outputs packages. > > So fixing this is trivial task, just adjust import clauses Yes, that

[Qgis-developer] list of qgis python plugin with editing part?

2014-07-25 Thread dandrigo
Dear all, Is it possible to know the name of main qgis python extensions having part of their python code dedicated to editing vector data? I need it to inspire me in order to code our own plugin. In advance, thank you for your reply. Regards. -- View this message in context: http://osge

Re: [Qgis-developer] Processing subplugins broken on master?

2014-07-25 Thread Victor Olaya
Yes, it is supposed to stay. The refactoring was made to have a more consistent structure, so we should keep it like that. Let me know if you need help with that, although, as Alex say, it shouldn't be too difficult to adapt 2014-07-25 16:48 GMT+02:00 Paolo Cavallini : > Il 25/07/2014 16:40, Al

Re: [Qgis-developer] Processing subplugins broken on master?

2014-07-25 Thread Paolo Cavallini
Il 25/07/2014 19:04, Victor Olaya ha scritto: > Yes, it is supposed to stay. The refactoring was made to have a more > consistent > structure, so we should keep it like that. > > Let me know if you need help with that, although, as Alex say, it shouldn't > be too > difficult to adapt thanks, ti

Re: [Qgis-developer] list of qgis python plugin with editing part?

2014-07-25 Thread Paolo Cavallini
Il 25/07/2014 18:29, dandrigo ha scritto: > Dear all, > > Is it possible to know the name of main qgis python extensions having part > of their python code dedicated to editing vector data? Hi, have a lok to: http://plugins.qgis.org/plugins/tags/digitizing/ All the best. -- Paolo Cavallini -

Re: [Qgis-developer] cmake configure error

2014-07-25 Thread Larry Shaffer
Hi, On Thu, Jul 24, 2014 at 1:57 AM, Matthias Kuhn wrote: > Hi Jürgen > > On 24.07.2014 09:51, Jürgen E. Fischer wrote: > > Hi Matthias, > > > > On Thu, 24. Jul 2014 at 09:37:59 +0200, Matthias Kuhn wrote: > >> Same here, clean rebuild does not help. > > Odd, as it did here. And the nightly bui

Re: [Qgis-developer] Processing subplugins broken on master?

2014-07-25 Thread Nathan Woodrow
We need to be careful because now processing is core it is really part of the API and we really shouldnt be breaking that. As such I think you should just redirect the module so old code still works. You can just do something like this in __init__.py for processing Import processing.core.output