Re: [Qgis-developer] Remove editing functions from QgsVectorLayer

2013-04-16 Thread Martin Dobias
On Tue, Apr 16, 2013 at 12:53 AM, Nathan Woodrow madman...@gmail.com wrote: What would be the API calls in order to add a new feature to a layer and commit the result? layer.startEditing() layer.editBuffer().addFeature( feature ) layer.commitChanges() Anyway if someone wants to add a new

Re: [Qgis-developer] problem with feature request and updateFeature

2013-04-16 Thread Martin Dobias
On Tue, Apr 16, 2013 at 1:01 AM, Nathan Woodrow madman...@gmail.com wrote: I asked Jurgen to add the updateFeature a while ago in order to make the API feel a bit cleaner. My issue was that you could update the attribute values on the feature but you then still call changeFeatureAttribute for

Re: [Qgis-developer] Wiki cleanup

2013-04-16 Thread Marco Hugentobler
Hi Paolo I've updated the code maintainers list. Is https://github.com/qgis/QGIS-Documentation/tree/master/source/docs/qgis_governance the right place to add it in the docs? Regards, Marco On 14.04.2013 12:06, Paolo Cavallini wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all. I

Re: [Qgis-developer] [Python] QgsFeatureIterator for geometryless PostgreSQL-Layer

2013-04-16 Thread Jürgen E . Fischer
Hi Martin, On Mon, 15. Apr 2013 at 23:45:20 +0200, Martin Dobias wrote: BTW what about parallel iterators? I suppose there were problems and thats why you added the active iterators - do you recall which providers were affected and how? I have modified providers to have pointers to

Re: [Qgis-developer] Wiki cleanup

2013-04-16 Thread Tim Sutton
Hi On Mon, Apr 15, 2013 at 2:52 PM, Werner Macho werner.ma...@gmail.com wrote: Hi paolo! well - there should be a release checklist - just to have a list to hold on to .. but I guess we would only need one that could be copied and extended/adjusted as the release cycle is not a fixed one.

Re: [Qgis-developer] [Python] QgsFeatureIterator for geometryless PostgreSQL-Layer

2013-04-16 Thread Martin Dobias
On Tue, Apr 16, 2013 at 8:27 AM, Jürgen E. j...@norbit.de wrote: Hi Martin, On Mon, 15. Apr 2013 at 23:45:20 +0200, Martin Dobias wrote: BTW what about parallel iterators? I suppose there were problems and thats why you added the active iterators - do you recall which providers were

Re: [Qgis-developer] Thank you all for the great HF!!

2013-04-16 Thread Otto Dassau
Hi, yes, we definitely should and will write about the activities. Whose blog can we use? Paolo, can we use yours from Faunalia? As for Essen I prepared a Result section in the wiki. Can everybody write some notes about what people did during the hackfest. I already started for things I know...

Re: [Qgis-developer] Thank you all for the great HF!!

2013-04-16 Thread Alessandro Pasotti
2013/4/16 Otto Dassau das...@gbd-consult.de Hi, yes, we definitely should and will write about the activities. Whose blog can we use? Paolo, can we use yours from Faunalia? As for Essen I prepared a Result section in the wiki. Can everybody write some notes about what people did during

Re: [Qgis-developer] Thank you all for the great HF!!

2013-04-16 Thread Matthias Kuhn
On Die 16 Apr 2013 09:41:55 CEST, Alessandro Pasotti wrote: 2013/4/16 Otto Dassau das...@gbd-consult.de mailto:das...@gbd-consult.de Hi, yes, we definitely should and will write about the activities. Whose blog can we use? Paolo, can we use yours from Faunalia? As for

Re: [Qgis-developer] WMS Server plugin

2013-04-16 Thread Barry Rowlingson
On Tue, Apr 16, 2013 at 6:55 AM, Marco Hugentobler marco.hugentob...@sourcepole.ch wrote: Hi Barry You can use the QGIS cloud plugin to publish web maps without having apache / fcgi server installed on the local machine. That's just adding a bit more complexity again... I think the best

Re: [Qgis-developer] Icon theme update

2013-04-16 Thread Régis Haubourg
Larry_S wrote Some time ago, devs voted to move to the 'gis' theme as the default, i.e. not just the one selected by default but also the only theme supported by the project. Even after this update, you may notice the icons are still hodge-podge with inconsistent ones needing work. Due to lack

Re: [Qgis-developer] Icon theme update

2013-04-16 Thread Marco Hugentobler
Hi I can second that. Switching gis theme as default is ok (and afaik that's what most people on the list / poll voted), however it needs a possibility in the options to switch to the classical theme. Regards, Marco On 16.04.2013 10:06, Régis Haubourg wrote: Larry_S wrote Some time ago,

Re: [Qgis-developer] Icon theme update

2013-04-16 Thread Nathan Woodrow
Don't be sorry, everyone's opinion should be heard. I have mixed feelings, the old theme seems to kidish but the new one is too gray. Now is a good time to look at which icons are causing the most issues and revamp them. Sent from some fancy phone looking thingo From: Régis Haubourg Sent:

Re: [Qgis-developer] Icon theme update

2013-04-16 Thread Robert Szczepanek
Hi, Very reduced use of colors in gis theme was intentional. Colors should be used in come consistent manner. Blue-gray was just a base. Now we can start adding (with caution) colors. Central part of icon: yellow - select, selected object green - object to be edited blue - neutral (any context)

Re: [Qgis-developer] Remove editing functions from QgsVectorLayer

2013-04-16 Thread Martin Dobias
On Tue, Apr 16, 2013 at 11:26 AM, Nathan Woodrow madman...@gmail.com wrote: Personally I'm not a fan of that. Why don't we make startEditing() return a edit buffer/edit session. So you could do this: session = layer.editSession() session.addFeature(feature) ... session.commitChanges()

Re: [Qgis-developer] [Qgis-user] [Qgis-psc] Logo

2013-04-16 Thread Nathan Woodrow
Could everyone have a look over the latest entries and provide some feedback. Regards, Nathan On Tue, Apr 16, 2013 at 9:13 AM, Nathan Woodrow madman...@gmail.com wrote: Hey Larry, Thanks for the feedback. I had the same feelings but kind of like the design, maybe just not for QGIS :) -

Re: [Qgis-developer] Remove editing functions from QgsVectorLayer

2013-04-16 Thread Jürgen E . Fischer
On Tue, 16. Apr 2013 at 19:26:52 +1000, Nathan Woodrow wrote: Personally I'm not a fan of that. Why don't we make startEditing() return a edit buffer/edit session. So you could do this: session = layer.editSession() session.addFeature(feature) ...

Re: [Qgis-developer] Remove editing functions from QgsVectorLayer

2013-04-16 Thread Nathan Woodrow
More complicated then I thought :) On Tue, Apr 16, 2013 at 8:01 PM, Jürgen E. j...@norbit.de wrote: On Tue, 16. Apr 2013 at 19:26:52 +1000, Nathan Woodrow wrote: Personally I'm not a fan of that. Why don't we make startEditing() return a edit buffer/edit session. So you could

[Qgis-developer] Website about the activities at the developer meeting in Valmiera

2013-04-16 Thread Otto Dassau
Dear Community, as you can see from the comments on the mailing lists, the ninth hackfest in Valmiera was a great success and very well organized by the latvian team from SuGIS - Maris Nartiss, Peteris Bruns and Raitis Berzins. On behalf of the PSC I would like to thank all participants,

Re: [Qgis-developer] [Qgis-user] [Qgis-psc] Logo

2013-04-16 Thread Anita Graser
I could imagine that something following the idea of http://99designs.com/logo-design/contests/qgis-needs-logo-210397/entries/126 would work too. From all the submitted ones so far, I'd still go with http://99designs.com/logo-design/contests/qgis-needs-logo-210397/entries/50 I don't see any bird

Re: [Qgis-developer] [Qgis-community-team] Website about the activities at the developer meeting in Valmiera

2013-04-16 Thread Tim Sutton
Thanks so much for that Otto! Regards Tim On Tue, Apr 16, 2013 at 5:30 PM, Otto Dassau das...@gbd-consult.de wrote: Dear Community, as you can see from the comments on the mailing lists, the ninth hackfest in Valmiera was a great success and very well organized by the latvian team from

Re: [Qgis-developer] WMS Server plugin

2013-04-16 Thread Andreas Neumann
Hi Barry, The use case of generating reports should not require running QGIS server. I think that QGIS desktop should first offer such functionality that maybe later on could be exposed in QGIS server as well. Did you look at the Atlas serial printing functionality that was introduced in

Re: [Qgis-developer] Error in Sextante Distance Matrix

2013-04-16 Thread Anita Graser
Thanks, will continue testing Anita On Tue, Apr 16, 2013 at 10:14 AM, Alexander Bruy alexander.b...@gmail.comwrote: Fixed in d06ab3c1d9 On Mon, 15 Apr 2013 22:03:56 +0200 Anita Graser anitagra...@gmx.at wrote: Hi, Sextante distance matrix in nightly fails with: Traceback (most

Re: [Qgis-developer] WMS Server plugin

2013-04-16 Thread Barry Rowlingson
On Tue, Apr 16, 2013 at 12:08 PM, Andreas Neumann a.neum...@carto.net wrote: Hi Barry, The use case of generating reports should not require running QGIS server. I think that QGIS desktop should first offer such functionality that maybe later on could be exposed in QGIS server as well.

Re: [Qgis-developer] Icon theme update

2013-04-16 Thread Larry Shaffer
Hi, Since adding back the old default as a 'classic' theme choice is fairly straightforward, only taking about an hour to do, I suggest the following: It isn't done for a couple of weeks. Here's my reasoning. If we are all looking at only the new default theme and helping develop that into a

Re: [Qgis-developer] Icon theme update

2013-04-16 Thread HAUBOURG
+ 1 for your color proposal. I didn't get work was still in progress on gis theme. I'll be pleased to give feedback on changes, but I don't have time or skill to suggest icons. Régis -Message d'origine- De : Robert Szczepanek [mailto:rob...@szczepanek.pl] Envoyé : mardi 16 avril 2013

Re: [Qgis-developer] Icon theme update

2013-04-16 Thread Tim Sutton
Hi On Tue, Apr 16, 2013 at 6:24 PM, Larry Shaffer lar...@dakotacarto.com wrote: Hi, Since adding back the old default as a 'classic' theme choice is fairly straightforward, only taking about an hour to do, I suggest the following: It isn't done for a couple of weeks. Here's my reasoning.

Re: [Qgis-developer] Roadmap for QGIS 2.1 and after

2013-04-16 Thread Régis Haubourg
Hi all, many thanks to your efforts to let us know what happened in Valmeria. Did you had any discussion on 2.1 Roadmap? I submitted previously my personnal wishes here [0], do you have any feedback to give on that? Many thanks, ( this will be my basis for next fundings, and priority will

Re: [Qgis-developer] Is there anybody interested whether QGIS 2.0 will support non-Latin1 Shapefiles?

2013-04-16 Thread Paolo Cavallini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Il 16/04/2013 06:21, Sanghee Shin ha scritto: Dear Borys, Most of all thanks for your efforts. Actually that encoding issue highly affected Korean QGIS users badly and reduced usability. I'm not a developer, however I can help you by testing

Re: [Qgis-developer] Icon theme update

2013-04-16 Thread Ramon Andiñach
On 16/04/2013, at 20:14 , Tim Sutton wrote: Hi On Tue, Apr 16, 2013 at 6:24 PM, Larry Shaffer lar...@dakotacarto.com wrote: Hi, Since adding back the old default as a 'classic' theme choice is fairly straightforward, only taking about an hour to do, I suggest the following: It isn't

Re: [Qgis-developer] Icon theme update

2013-04-16 Thread AntonioLocandro
Yes probably, but other commercial software have made even more drastic changes and they have survived. The old theme may be familiar for most of you who have lots of years of experience with it, but newbies would absolutely don't care. I vote for supporting only one theme and use it for now on

Re: [Qgis-developer] Logistics for next developer meetings

2013-04-16 Thread Raymond Nijssen
+1 for a single location and of course +1 for the pre-meeting :) On 04/16/2013 04:57 PM, Paolo Cavallini wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all. After participating to several HFs, I'm convinced that a good option is to held them in a single venue, where we could both

Re: [Qgis-developer] Icon theme update

2013-04-16 Thread Larry Shaffer
Hi Gary, On Tue, Apr 16, 2013 at 7:20 AM, Gary Sherman gsher...@geoapt.com wrote: On Tue, Apr 16, 2013 at 4:14 AM, Tim Sutton li...@linfiniti.com wrote: Hi On Tue, Apr 16, 2013 at 6:24 PM, Larry Shaffer lar...@dakotacarto.com wrote: Hi, Since adding back the old default as a

Re: [Qgis-developer] Icon theme update

2013-04-16 Thread AntonioLocandro
My views PAN: the current icon seems more that it will move a feature not pan, I vote for the hand, that is what the cursor shows anyway PAN TO SELECTION: This should really be a right click action not a separate icon. You would select the feature using the selection tool then right click (list

Re: [Qgis-developer] [Qgis-user] [Qgis-psc] Logo

2013-04-16 Thread AntonioLocandro
I would go for that also, #50, can we also ask the designer to add a world inside like #126 in a lighter shade of grey and see how it works. In my view #50 would be a great logo as it is for the project and then the Q part can be used for the desktop icon and make some great looking t-shirts like

Re: [Qgis-developer] [Qgis-user] [Qgis-psc] Logo

2013-04-16 Thread AntonioLocandro
#201 #200 #199 don't look GIS related #198 looks like a copy of #50 #196 #195 #194 looks, well something else #192 looks aweful #191 #190,#186 look to simple #187 #185 #183 #182 #181 #180 #178 #177 #176 #175 #171 #170 #169 #168 #167 #166 #165 #164 #163 #162 #161 #160 #159 #158 #157 #156 #155 #154

Re: [Qgis-developer] [Qgis-user] [Qgis-psc] Logo

2013-04-16 Thread John C. Tull
I like the http://99designs.com/logo-design/contests/qgis-needs-logo-210397/entries/50 entry, but I would like to see it with the GIS slightly smaller so that it is not on the same line as the top of the Q. This would make the Q element of the logo/name more prevalent and would make the Q as a

Re: [Qgis-developer] Logistics for next developer meetings

2013-04-16 Thread Paolo Cavallini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Il 16/04/2013 17:15, Saber Razmjooei ha scritto: This would limit the options where you can host the event. For example, Of course, it is a suggestion, not a requirement. Obviously you do not have to bother with this if you have already organised

Re: [Qgis-developer] [Qgis-user] [Qgis-psc] Logo

2013-04-16 Thread Régis Haubourg
-- View this message in context: http://osgeo-org.1560.x6.nabble.com/Re-Qgis-psc-Logo-tp5046799p5047344.html Sent from the Quantum GIS - Developer mailing list archive at Nabble.com. ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org

Re: [Qgis-developer] [Qgis-user] [Qgis-psc] Logo

2013-04-16 Thread Régis Haubourg
John C. Tull-2 wrote I like the http://99designs.com/logo-design/contests/qgis-needs-logo-210397/entries/50 entry, but I would +1 for #50. I like also #57, the same but with a background. Both can be used in different contexts. régis -- View this message in context:

Re: [Qgis-developer] Icon theme update

2013-04-16 Thread Tim Sutton
Hi On Tue, Apr 16, 2013 at 10:27 PM, Larry Shaffer lar...@dakotacarto.com wrote: 8--snip-- One consequence of eliminating the classic theme as an option is a lot of otherwise good, general documentation (articles, blog posts, stackexchange posts, books) will be crippled.

Re: [Qgis-developer] Wiki cleanup

2013-04-16 Thread Paolo Cavallini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Il 16/04/2013 08:18, Marco Hugentobler ha scritto: Hi Paolo I've updated the code maintainers list. Is https://github.com/qgis/QGIS-Documentation/tree/master/source/docs/qgis_governance the right place to add it in the docs? Hi Marco, thanks

Re: [Qgis-developer] fTools and GdalTools: sextante vs original plugins

2013-04-16 Thread Anita Graser
Hi, I know this thread has been silent for a while but I think it's important to bring it up once more. I'm currently trying to develop some materials and wondering if they should cover ftools/GDAL or Sextante mainly. Currently, it sounds like it is certain that Sextante will be around in future

Re: [Qgis-developer] fTools and GdalTools: sextante vs original plugins

2013-04-16 Thread Filipe Dias
I agree. Sextante makes finding the appropriate tools a lot easier, specially when the user is doing GIS analysis for a long time. In ArcGIS 9.1 or 9.2 ESRI removed the Analysis tools from Menu and put them all on ArcToolbox. A lot of users complained and they ended up creating a Geoprocessing

Re: [Qgis-developer] [Qgis-user] [Qgis-psc] Logo

2013-04-16 Thread John C. Tull
Hi Alexander, On Apr 16, 2013, at 9:34 AM, Alexandre Neto senhor.n...@gmail.com wrote: If I can give my opinion, I don't dislike #50, but I think that that isolated Q won't be strong enough as an Icon. I believe that #91 and #88 (short and long version of the same design) would look

Re: [Qgis-developer] Wiki cleanup

2013-04-16 Thread Tim Sutton
Hi On Tue, Apr 16, 2013 at 11:31 PM, Paolo Cavallini cavall...@faunalia.it wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Il 16/04/2013 08:18, Marco Hugentobler ha scritto: Hi Paolo I've updated the code maintainers list. Is

Re: [Qgis-developer] [Qgis-user] [Qgis-psc] Logo

2013-04-16 Thread Barry Rowlingson
On Tue, Apr 16, 2013 at 12:01 PM, Anita Graser anitagra...@gmx.at wrote: From all the submitted ones so far, I'd still go with http://99designs.com/logo-design/contests/qgis-needs-logo-210397/entries/50 I don't think the Q is Q-y enough, and is a bit detached from uantum. QGIS has no

Re: [Qgis-developer] [Qgis-user] [Qgis-psc] Logo

2013-04-16 Thread John C. Tull
On Apr 16, 2013, at 10:34 AM, Barry Rowlingson b.rowling...@lancaster.ac.uk wrote: If I could draw cartoons, we'd have Quentin the Qgis Quokka: http://a-z-animals.com/animals/quokka/ The quokka is qute. ___ Qgis-developer mailing list

Re: [Qgis-developer] [Qgis-user] [Qgis-psc] Logo

2013-04-16 Thread kimaidou
I personnaly prefer #50 than #88, because 88 uses a too much seen point of interest logo : used by Google, used by many open source maps, etc. It won't say hey it's QGIS, it will say Hey, its 'geolocation' I kind of like the 84 too, as it remains simple but meaningfull Michael 2013/4/16 John

Re: [Qgis-developer] [Qgis-user] [Qgis-psc] Logo

2013-04-16 Thread Martin Dobias
On Tue, Apr 16, 2013 at 11:57 AM, Nathan Woodrow madman...@gmail.com wrote: Could everyone have a look over the latest entries and provide some feedback. For me the designs from Dewa (#91, #88) and Andyzendy (#50) look best so far. I also like the recent addition #205 because of the modern icon

Re: [Qgis-developer] [Qgis-user] [Qgis-psc] Logo

2013-04-16 Thread Marco Bernasocchi
On 04/16/2013 07:53 PM, kimaidou wrote: I personnaly prefer #50 than #88, because 88 uses a too much seen point of interest logo : used by Google, used by many open source maps, etc. It won't say hey it's QGIS, it will say Hey, its 'geolocation' +1, same for 91 I think so far #50 and the right

[Qgis-developer] wrong transformation of project on qgis 1.9.0

2013-04-16 Thread Andrea Peri
Hi, I have a 1.8.0 qgis project and try to open with the new qgis-dev version of qgis. To see how much compatible it will be with the next released version of qgis. Unfortunately I see it is pretty drammatically unusable. Infact In the old project I have many projects where often the layers are

Re: [Qgis-developer] wrong transformation of project on qgis 1.9.0

2013-04-16 Thread Martin Dobias
On Tue, Apr 16, 2013 at 11:41 PM, Andrea Peri aperi2...@gmail.com wrote: Hi, I have a 1.8.0 qgis project and try to open with the new qgis-dev version of qgis. To see how much compatible it will be with the next released version of qgis. Unfortunately I see it is pretty drammatically

Re: [Qgis-developer] Icon theme update

2013-04-16 Thread Noli Sicad
Hope the final gis theme looks not so foreign (aka odd looking) in the Mac OS X. Gis theme looks nice in Ubuntu. Noli On 4/17/13, Tim Sutton li...@linfiniti.com wrote: Hi On Tue, Apr 16, 2013 at 10:27 PM, Larry Shaffer lar...@dakotacarto.com wrote: 8--snip-- One

[Qgis-developer] [Qgis-psc] Logo

2013-04-16 Thread Salvatore Larosa
Hi, I like #185 also, #50 is good but it is too linear IMO I don't know if it looks fine for other context (splashscreen, web page, desktop icon etc). Also I think #91 and #88 are misleading for a GIS desktop application. Regards, -SL 2013/4/16 Nathan Woodrow madman...@gmail.com Could

Re: [Qgis-developer] fTools and GdalTools: sextante vs original plugins

2013-04-16 Thread Mathieu Pellerin
There might be a way to make most people happy here. I find the vector menu a nice ui shortcut for useful functions. If sextante relevant functions are at par (or better), couldn't the vector menu items stay, which would please many, and when clicked triggers sextante's function dialogue? Victor?

Re: [Qgis-developer] [Qgis-user] [Qgis-psc] Logo

2013-04-16 Thread Tim Sutton
Hi On Wed, Apr 17, 2013 at 12:44 AM, John C. Tull jct...@gmail.com wrote: On Apr 16, 2013, at 10:34 AM, Barry Rowlingson b.rowling...@lancaster.ac.uk wrote: If I could draw cartoons, we'd have Quentin the Qgis Quokka: http://a-z-animals.com/animals/quokka/ Ah the quokka - close relative

Re: [Qgis-developer] fTools and GdalTools: sextante vs original plugins

2013-04-16 Thread Anita Graser
On Wed, Apr 17, 2013 at 3:19 AM, Mathieu Pellerin nirvn.a...@gmail.comwrote: There might be a way to make most people happy here. I find the vector menu a nice ui shortcut for useful functions. If sextante relevant functions are at par (or better), couldn't the vector menu items stay, which

[Qgis-developer] [Discussion] Repository and Plugin idea for Google Summer of Code

2013-04-16 Thread arunthe...@gmail.com
Hello, I have been going through the Google Summer of Code 2013 ideas page [0] and I think the remote repository for style/svg/script sharing proposed by Alexander Bruy would be a nice follow up of my last year work on the Symbol management. Here are a few things that come to my mind: 0. The