Re: [Qgis-developer] QGIS certification

2014-10-14 Thread Bill Bishop
Del Mar College in Texas is offering classes & certificates as "QGIS
Academy".

http://foss4geo.wordpress.com/2014/08/10/announcing-the-new-geo-academy/

The classes are only $25 each; I'm taking the GST 102 class now.   I'm
using QGIS under Ubuntu (classes assume windows), and there are issues;
like no installed support for MrSID (LizardTech propriety fmt), and
Multispec doesn't run under Wine.  I have enjoyed Python plug-in
development though (not part of the classes).

->Bill


___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [Qgis-developer] PyDev Debugging Protocol changes; remote debug plug-in issues

2014-09-11 Thread Bill Bishop
Hi Pirmin,

 I can only speak to the breakpoint code, since I didn't dig any deeper;
but w/respect to that:

on line 583 (or so) of pydevd.py (in the remote debug plug-in), the
breakpoint parsing code is:

file, line, condition = text.split('\t', 2)

A new parameter (I'll call it bpid for "breakpoint ID") is now sent, and
must be parsed thusly:

bpid, file, line, condition = text.split('\t', 3)

That was the easy part.  When clearing the breakpoint, instead of
passing the line number (like PyDev used to), the breakpoint ID is
passed, so the line number must be associated with the breakpoint ID
somewhere to clear it:

bpid, file = text.split('\t', 1)  # Line 628 or so

I changed the breakpoint "set" code, but it usually took a couple of
passes through the routine before the breakpoint became "active" and
execution actually halted -- not sure what that's about.

 I couldn't find any documentation on the PyDev site about the debugging
protocol, and what else might have changed.

Thank you!

->Bill

 

On 09/11/2014 01:25 PM, Pirmin Kalberer wrote:
> Hi Bill,
>
> On Thursday, September 11, 2014 10:37:51 AM Bill Bishop wrote:
>>Is anyone successfully using the remote debug plug-in with PyDev &
>> Eclipse?   I tried using it, and noticed that the debugging protocol
>> used by PyDev appears to have changed, thus rendering the remote debug
>> plug-in less than useful.   The plug-in "appeared" to work at-first, but
>> when it was tried seriously, the issues emerged (specifically use of
>> break-points).
>>
>> Has this been verified (by someone else)?  Is someone working on it?
>>
>>
>>  Remote debug plug-in version: 0.2.0; Eclipse Version 3.8.1; QGIS
>> Version 2.2.0; PyDev version 3.6.0
> I'm not working with PyDev anymore, so I can't reproduce your problem.
> I've heard that Richard (CC) has also problems with his IDE. If you can give 
> me a hint what has to be changed, I'm happy to include it in a new version of 
> the plugin.
>
> Regards
> Pirmin
>

___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


[Qgis-developer] PyDev Debugging Protocol changes; remote debug plug-in issues

2014-09-11 Thread Bill Bishop
Hello,

   Is anyone successfully using the remote debug plug-in with PyDev &
Eclipse?   I tried using it, and noticed that the debugging protocol
used by PyDev appears to have changed, thus rendering the remote debug
plug-in less than useful.   The plug-in "appeared" to work at-first, but
when it was tried seriously, the issues emerged (specifically use of
break-points).

Has this been verified (by someone else)?  Is someone working on it?

 Remote debug plug-in version: 0.2.0; Eclipse Version 3.8.1; QGIS
Version 2.2.0; PyDev version 3.6.0

Thanks,

->Bill
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer