Re: [Qgis-developer] Re: Rethinking the testing and release procedure of QGIS

2011-07-08 Thread Julien Malik
Hello, Last month, Julien Malik mentioned about Sikuli ( http://sikuli.org/ http://sikuli.org/ ). I've had a preliminary look at the documentation and it may have potential. I will not have time to try it for a few weeks, but the possibility of developing scripts to exercise QGIS without any

Re: [Qgis-developer] Rethinking the testing ... (test-driven development)

2011-07-08 Thread Mayeul Kauffmann
Hi Just a thought on branch THEN work THEN write tests. It could be instead: branch THEN write tests THEN work. Agile programming encourages test-driven development: you write the tests first, then you code new functionalities. http://en.wikipedia.org/wiki/Test_driven_development While this

Re: [Qgis-developer] QGIS Processing Framework

2011-07-08 Thread Tim Sutton
Hi Sorry I just caught up on this thread now. I share Martin's concern about dropping C++ support by adopting traits directly. Have you made a decision on this, is C++ still on the cards? Regards Tim On Fri, Jul 8, 2011 at 7:46 AM, MALIK Julien julien.ma...@c-s.fr wrote: Hello Camilo, Some

Re: [Qgis-developer] QGIS Processing Framework

2011-07-08 Thread Tim Sutton
Hi Sorry I just caught up on this thread now. I share Martin's concern about dropping C++ support by adopting traits directly. Have you made a decision on this, is C++ still on the cards? Regards Tim On Fri, Jul 8, 2011 at 7:46 AM, MALIK Julien julien.ma...@c-s.fr wrote: Hello Camilo, Some

[Qgis-developer] featureAtId Python

2011-07-08 Thread bernhard . stroebl
Dear All, I am trying to access features from a geometryless PostgreSQL-Table by their id, same code works with geometry-containing (PostGIS) layers. In the Python-console enter: l=qgis.utils.iface.activeLayer() #geometryless table f=QgsFeature() l.featureAtId(571,f) #this id exists in the

[Qgis-developer] feature-request: qgis-desktop - qgis-server integration

2011-07-08 Thread Richard Duivenvoorde
Hi Devs, Geoserver has a so called 'REST'interface: it's possible to push (PUT) a dataset to the geoserver, and immediately registre it as layer-service What about bringing something like this (slowly) into qgis: - given a saved project with mirrored data on client/server: push 'current'

Re: [Qgis-developer] feature-request: qgis-desktop - qgis-server integration

2011-07-08 Thread Paolo Cavallini
Il 08/07/2011 09:32, Richard Duivenvoorde ha scritto: Hi Devs, Do devs/people see something in this? It is definitely in our pipeline; we'll not be able to work on it soon, but if someone starts we're available for help. All the best. -- Paolo Cavallini: http://www.faunalia.it/pc

[Qgis-developer] Workshop Co-Presenter FOSS4G

2011-07-08 Thread Pirmin Kalberer
Hi all, I'm looking for a Co-Presenter for the workshop New features for QGIS power users at FOSS4G in Denver. Because my colleague can't attend, I'm looking for an advanced QGIS user for helping the participants with their workshop exercises together with me. More information:

Re: [Qgis-developer] osgearth.deb

2011-07-08 Thread Pirmin Kalberer
Hi Paolo, Am Donnerstag, 7. Juli 2011, um 16.49:48 schrieb Paolo Cavallini: Hi all. Now that the globe is in trunk, it would be important to have its dependencies available also on debian. AFAIK, only osgearth is missing, but there is work done by pirmin: are there plans to add this to debian

Re: [Qgis-developer] osgearth.deb

2011-07-08 Thread Paolo Cavallini
Il 08/07/2011 09:55, Pirmin Kalberer ha scritto: I will work on this tonight. Could you prepare the extended description they asked for? ok, will do. -- Paolo Cavallini: http://www.faunalia.it/pc ___ Qgis-developer mailing list

Re: [Qgis-developer] Rethinking the testing ... (test-driven development)

2011-07-08 Thread Tim Sutton
Hi On Fri, Jul 8, 2011 at 8:46 AM, Mayeul Kauffmann mayeul.kauffm...@free.fr wrote: Hi Just a thought on branch THEN work THEN write tests. It could be instead: branch THEN write tests THEN work. Agile programming encourages test-driven development: you write the tests first, then you code

Re: [Qgis-developer] Rethinking the testing ... (test-driven development)

2011-07-08 Thread Sandro Santilli
On Fri, Jul 08, 2011 at 08:46:42AM +0200, Mayeul Kauffmann wrote: Just a thought on branch THEN work THEN write tests. It could be instead: branch THEN write tests THEN work. +1 --strk; () Free GIS Flash consultant/developer /\ http://strk.keybit.net/services.html

Re: [Qgis-developer] Rethinking the testing and release procedure of QGIS

2011-07-08 Thread Sandro Santilli
On Fri, Jul 08, 2011 at 05:10:45PM +0200, Marco Hugentobler wrote: branch write tests work request for merge integrate For me, this workflow is fine in case of new features. For smaller changes or quick bugfixes, it seems unhandy to always write a unit test for it. I think tests

Re: [Qgis-developer] Rethinking the testing and release procedure of QGIS

2011-07-08 Thread Sandro Santilli
On Thu, Jul 07, 2011 at 11:37:01PM +0200, Marco Hugentobler wrote: What has to be maintained about testcases ? The only reason to change a testcase would be a change in the underlying classes interfaces, which is one of the causes for instability, so having testcases that break might be an

Re: [Qgis-developer] QGIS Processing Framework

2011-07-08 Thread Camilo Polymeris
On Fri, Jul 8, 2011 at 1:25 AM, Paolo Cavallini cavall...@faunalia.it wrote: Il 07/07/2011 23:06, Camilo Polymeris ha scritto: identify a few and compile a short list[1], to try to keep focused List missing ;) Oops. [1] https://github.com/polymeris/qgis/wiki/Timeline

Re: [Qgis-developer] QGIS Processing Framework

2011-07-08 Thread Camilo Polymeris
On Fri, Jul 8, 2011 at 2:53 AM, Tim Sutton li...@linfiniti.com wrote: Hi Sorry I just caught up on this thread now. I share Martin's concern about dropping C++ support by adopting traits directly. Have you made a decision on this, is C++ still on the cards? Yes, it still is -- I intend to

Re: [Qgis-developer] Rethinking the testing and release procedure of QGIS

2011-07-08 Thread Tim Sutton
Hi Marco On Fri, Jul 8, 2011 at 5:10 PM, Marco Hugentobler marco.hugentob...@sourcepole.ch wrote: Hi Tim I also like a mandatory workflow for branching, request for merge, integrate (and also the unit tests for new features). However, let's discuss the details here and let people from the

Re: [Qgis-developer] ECW for QGIS 1.7 Mac OS X

2011-07-08 Thread Charlie Sharpsteen
On Fri, Jul 8, 2011 at 6:27 PM, Noli Sicad nsi...@gmail.com wrote: Hi, I am trying to compile libecwj2-3.3-2006-09-06[1] for Mac OS X, but I got some errors[2]. You can get the source. sudo wget http://de-mirror.org/distro/gentoo/distfiles/libecwj2-3.3-2006-09-06.zip Lee and others

[Qgis-developer] Re: ECW for QGIS 1.7 Mac OS X

2011-07-08 Thread Noli Sicad
Here's another source for this library. I think this one is newer code. It includes the SDK as well. http://201.22.212.223/ecw/ecw/ However, it is not configure to compile with Mac OS X. I tried to copy the missing file, NCSGnuSystemDefs.h but it did not help. Anybody like to have a go with

Re: [Qgis-developer] ECW for QGIS 1.7 Mac OS X

2011-07-08 Thread Charlie Sharpsteen
On Fri, Jul 8, 2011 at 7:12 PM, Noli Sicad nsi...@gmail.com wrote: You can get all the info and documentation (e.g. SDK) of ECW in this site (below) http://201.22.212.223/ecw/ecw/ Yes, it would be nice if you can add this in homebrew. Thanks. Noli Hrm, maybe not. From the license file:

Re: [Qgis-developer] ECW for QGIS 1.7 Mac OS X

2011-07-08 Thread Noli Sicad
I think we don't really need to do ECW and MrSID support for QGIS in Mac OS X. It is already done! William did this already. http://www.kyngchaos.com/software/archive. Extras Version DateSize10.310.410.510.6Deps ECW Plugin ECW Plugin 1.8.0-1 2011-1-25

Re: [Qgis-developer] ECW for QGIS 1.7 Mac OS X

2011-07-08 Thread William Kyngesburye
Just remember that I could never get ECW write to work, so my GDAL ECW plugin is read-only. If someone has time and skills to get writing to work for ECW, that would be cool. On Jul 8, 2011, at 9:47 PM, Noli Sicad wrote: I think we don't really need to do ECW and MrSID support for QGIS in