Re: [Qgis-developer] Annoying bug found in QGIS 1.7 (not present in 1.6)

2011-06-16 Thread Giovanni Manghi
Hi, did you filed a ticket? cheers -- Giovanni -- On Wed, 2011-06-15 at 14:18 +0200, luca_mangane...@comune.trento.it wrote: Hi, I wrote a PYTHON plugin that does a simple feature select on a QgsVectorLayer: pnt = coordinates of mouse click on map myLayer= QgsVectorLayer Object

Re: [Qgis-developer] Annoying bug found in QGIS 1.7 (not present in 1.6)

2011-06-16 Thread luca_manganelli
Giovanni Manghi giovanni.man...@gmail.com scritti il 16/06/2011 10.58.20 Hi, did you filed a ticket? Yes: http://hub.qgis.org/issues/3987___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org

[Qgis-developer] Bug #3866

2011-06-16 Thread Sergey Yakushev
Hi all. This Bug is partial solved. The fact that a similar problem in the measuring angles tool (corrected only tool of measurement of distances and areas). Look at call QgsMapToolMeasureAngle::configureDistanceArea() in QgsMapToolMeastureAngle::canvasMouseMove() [1] I've added comments [2]

[Qgis-developer] New Python console idea: Expanding the Python console to handle DSLs for plugins eg CADTools

2011-06-16 Thread Nathan Woodrow
Hi All, I had a idea today that I would like to get peoples feedback on. I have drafted up some code and wiki on github to keep it all together. Link: https://github.com/madmanwoo/Custom-QGIS-Python-hooks-idea Wiki: https://github.com/madmanwoo/Custom-QGIS-Python-hooks-idea/wiki The general

Re: [Qgis-developer] Ellipse renderer

2011-06-16 Thread Martin Dobias
On Tue, Jun 14, 2011 at 8:48 PM, Marco Hugentobler marco.hugentob...@sourcepole.ch wrote: Hi QGIS devs Recently, I was writing a symbollayer to render ellipse shapes (and also rectangles, triangles, crosses by specifying width and height). Moreover, the symbol layer allows to set all

[Qgis-developer] Re: Fwd: [Qgis-user] QgsVectorLayer causes Failed to load error

2011-06-16 Thread Marco Bernasocchi
Hi Carson, I had a similar problem but launching qgis (I still have to start it by using a script) and solved it by doing: LIBUTIL=$(locate -r libutil.so$) LD_PRELOAD=$LIBUTIL #use locate libutil to find the path export LD_PRELOAD maybe it helps (was suggested in this list a while ago). BTW

Re: [Qgis-developer] New Python console idea: Expanding the Python console to handle DSLs for plugins eg CADTools

2011-06-16 Thread Barry Rowlingson
On Thu, Jun 16, 2011 at 12:33 PM, Nathan Woodrow madman...@gmail.com wrote: I would appreciated any feedback anyone has.  I'm not a python expert so the code could be done better if done for real but at the moment it's just rough to get the idea out there. I like the idea of supplying

Re: [Qgis-developer] New Python console idea: Expanding the Python console to handle DSLs for plugins eg CADTools

2011-06-16 Thread Nathan Woodrow
That sounds like a pretty good idea too. Shoudn't be too hard to whip up a prototype for that. On Thu, Jun 16, 2011 at 10:27 PM, Barry Rowlingson b.rowling...@lancaster.ac.uk wrote: On Thu, Jun 16, 2011 at 12:33 PM, Nathan Woodrow madman...@gmail.com wrote: I would appreciated any

[Qgis-developer] new plugins site - list view is too large: advice needed

2011-06-16 Thread Alessandro Pasotti
Hello, I've fixed a couple of bugs and added email notifications on plugins approval and user trust/untrust. I noticed that in the list views like http://plugins.qgis.org/plugins/ there is no space for all that columns given the current table layout, any hint ? The problem becomes evident only

Re: [Qgis-developer] new plugins site - list view is too large: advice needed

2011-06-16 Thread Alex Mandel
On 06/16/2011 09:43 AM, Alessandro Pasotti wrote: Hello, I've fixed a couple of bugs and added email notifications on plugins approval and user trust/untrust. I noticed that in the list views like http://plugins.qgis.org/plugins/ there is no space for all that columns given the current

RE: [Qgis-developer] new plugins site - list view is too large: advice needed

2011-06-16 Thread Pablo Carreira
Hello,The problem becomes evident only if you are logged in, since you will see an additional Manage column at the end.I was thinking about removing the Featured column and maybe changing Downloads to something shorter (Dl ?). Suggestions welcome! Suggestions: -Contract Approved, Featured,

Re: [Qgis-developer] New Python console idea: Expanding the Python console to handle DSLs for plugins eg CADTools

2011-06-16 Thread Charlie Sharpsteen
On Thu, Jun 16, 2011 at 5:27 AM, Barry Rowlingson b.rowling...@lancaster.ac.uk wrote: On Thu, Jun 16, 2011 at 12:33 PM, Nathan Woodrow madman...@gmail.com wrote: I would appreciated any feedback anyone has.  I'm not a python expert so the code could be done better if done for real but at the

Re: [Qgis-developer] New Python console idea: Expanding the Python console to handle DSLs for plugins eg CADTools

2011-06-16 Thread Vincent Picavet
Hi, Le jeudi 16 juin 2011 21:24:21, Charlie Sharpsteen a écrit : You may want to look at the IPython console---they have a very nice syntax for adding new domain-specific commands which they call magic commands: Currently Ipython is not compatible with any programe importing Qt stuff. It is

Re: [Qgis-developer] New Python console idea: Expanding the Python console to handle DSLs for plugins eg CADTools

2011-06-16 Thread Nathan Woodrow
I was just thinking about this: People might think they can mix python variables with variables in other DSLs. Which would be tricky. Well would that be such a bad thing? The DSLs can return a object from the evaluated string so why not let them be mixed. This would mean you can do things