[QGIS-Developer] Plugin [849] AmigoCloud approval notification.

2018-11-17 Thread noreply
Plugin AmigoCloud approval by pcav. The plugin version "[849] AmigoCloud 0.11" is now approved Link: http://plugins.qgis.org/plugins/qgis-amigocloud-plugin/ ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info:

Re: [QGIS-Developer] Cannot load QGIS source code in QTCreator

2018-11-17 Thread Alessandro Pasotti
On Thu, Nov 15, 2018 at 10:09 AM Andrea Aime wrote: > Thanks everybody for the followup! I'm answering this mail but I'll > integrate comments about the others too. > > On Thu, Nov 15, 2018 at 8:26 AM Alessandro Pasotti > wrote: > >> Hi Andrea, >> >> I've never seen that particular error, I'd

Re: [QGIS-Developer] MSSQL driver not found & Can't open lib 'SQL Server' - QGIS 2.18 LTR on Debian

2018-11-17 Thread Jorge Gustavo Rocha
Hi Michaƫl, My first guest is that you need to update your GDAL. I was able to import MSSQL tables with GDAL 2.3.2. With previous versions, I was getting those hieroglyphs too. I've imported a MSSQL Server database to Postgresql that was written by Geomedia. To recover the geometry, I had to

Re: [QGIS-Developer] What is the way to get all items of a QgsLayout?

2018-11-17 Thread Raymond Nijssen
Hi Song, It is simply: layout.items() For example, you can do this: p = QgsProject.instance() lom = p.layoutManager() lo = lom.layoutByName(u'a4') print(lo.items()) And then this to get all the labels: for item in lo.items(): if isinstance(item, QgsLayoutItemLabel):