Re: [Qgis-developer] qgis web client small bug?

2013-02-18 Thread Paolo Cavallini
Il 17/02/2013 12:20, Andreas Neumann ha scritto: The layer drawing order only works if you have a newer release of QGIS server - one that does support and use the GetProjectSettings command (instead of the GetCapabilities command before). Only if you use that server version - and also have

Re: [Qgis-developer] Valmiera hackfest

2013-02-18 Thread Pēteris Brūns
Hi all, I would also urge devs to register in WIKI or contact us, so that we can plan the logistics and also help with accommodation. Regards, On 2013.02.15. 09:21, Paolo Cavallini wrote: Hi all. I ask all devs who will participate to the next hackfest and need financial support to send me

[Qgis-developer] Composer item's IDs

2013-02-18 Thread Olivier Dalang
Hi ! I'm developing a plugin which needs to attach some custom data to some Composer Item's instances. Thus, I need a way to identify the instances. I saw that there's an ID attribute in the ComposerItems, but don't really know how it's supposed to work. It seems for now it's only an user

[Qgis-developer] getLayerID() new API

2013-02-18 Thread francescobocca...@libero.it
Hi all, anyone con suggest me how use getLayerID() method in new QGIS API? Thanks Francesco ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] getLayerID() new API

2013-02-18 Thread Salvatore Larosa
Hi, 2013/2/18 francescobocca...@libero.it francescobocca...@libero.it Hi all, anyone con suggest me how use getLayerID() method in new QGIS API? use id(): http://qgis.org/api/classQgsMapLayer.html#a710f27dec806d3bcd5ae14701c2e6fd7 Regards, -SL Thanks Francesco

Re: [Qgis-developer] Composer item's IDs

2013-02-18 Thread Nathan Woodrow
Olivier, I added the item id for that reason. Feel free to rework then so they are auto generated and unique. That was my intention just never got around to it. - Nathan Sent from some fancy phone looking thingo From: Olivier Dalang Sent: 19/02/2013 3:27 AM To: qgis-developer@lists.osgeo.org

Re: [Qgis-developer] Composer item's IDs

2013-02-18 Thread Olivier Dalang
OK I've got something which seems to work well using QUuid. It's easier with QUuid than an incremental id since there's no need to store the last key. It already works more or less, I'll make a pull request soon. What do you think about the other attribute ? (which would be called smthg like

Re: [Qgis-developer] Composer item's IDs

2013-02-18 Thread Nathan Woodrow
Personally I'm not a fan of using a uuid unless the user doesn't need to enter them. For me a composer item only needs a id or name not both. You can just store a counter on the composer the item belongs to as only has to be unique for that composer. I would just auto name them composeritem_n

Re: [Qgis-developer] Composer item's IDs

2013-02-18 Thread Nathan Woodrow
Thinking about this. There really isn't a reason to force item names/id to be unqiue . if I want to have three items named the same then that is really my choice. If I have say three map windows that I want to set all to the same extents then I could just call them all maps and just loop over all

[Qgis-developer] Update to staged plugins

2013-02-18 Thread Larry Shaffer
Hi, I've committed an update to python/plugins/CMakeLists.txt [0] that changes how staged plugins are built (resources generated and copied to [build dir]/output/python/plugins). Staged plugins allow plugins to be available when QGIS is run from the build directory and was originally coded by

Re: [Qgis-developer] Multicolumn legends in print composer

2013-02-18 Thread Mathieu Pellerin
Radim, Following up on your implementation of the nice legend's multicolumn feature. I've noticed two regression (one of which I've filed a bug already). 1) The right-side box spacing is now miscalculated as it fails to add the icon label space value. Issue 7099 (http://hub.qgis.org/issues/7099)

[Qgis-developer] Build Quantum-GIS for Win64

2013-02-18 Thread Theuns Heydenrych
HI All Any one can direct me to instructions to build Quantum-GIS for Win64? I would prefer to use Mingw. Best Regards Theuns Heydenrych ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org

[Qgis-developer] Developer mailing list search

2013-02-18 Thread Theuns Heydenrych
HI Where can i search the QGIS developer mailing list? ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] Developer mailing list search

2013-02-18 Thread Denis Rouzaud
http://lists.osgeo.org/pipermail/qgis-developer/ On 02/19/2013 07:22 AM, Theuns Heydenrych wrote: HI Where can i search the QGIS developer mailing list? ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org

[Qgis-developer] New website

2013-02-18 Thread Paolo Cavallini
Hi all. for the next HF, my aim would be to setup and publish our new rst based website, and cleanup all the obsolete stuff, in wiki and elsewhere. Please let us know: * who is willing (and have time) to cooperate in this effort * do you see any blocking factor? One issue that I see could

Re: [Qgis-developer] Composer item's IDs

2013-02-18 Thread Marco Hugentobler
Thinking about this. There really isn't a reason to force item names/id to be unqiue . if I want to have three items named the same then that is really my choice. If I have say three map windows that I want to set all to the same extents then I could just call them all maps and just loop over