<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Running PyLint from Komodo</title>
	<atom:link href="http://mateusz.loskot.net/2006/01/15/running-pylint-from-komodo/feed/" rel="self" type="application/rss+xml" />
	<link>http://mateusz.loskot.net/2006/01/15/running-pylint-from-komodo/</link>
	<description>Into the Free and Open Source Software for Geospatial</description>
	<pubDate>Tue, 14 Oct 2008 12:06:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Komi</title>
		<link>http://mateusz.loskot.net/2006/01/15/running-pylint-from-komodo/#comment-2301</link>
		<dc:creator>Komi</dc:creator>
		<pubDate>Thu, 18 Sep 2008 19:46:15 +0000</pubDate>
		<guid isPermaLink="false">http://mateusz.loskot.net/2006/01/15/running-pylint-from-komodo/#comment-2301</guid>
		<description>Thank you, very handy!:)</description>
		<content:encoded><![CDATA[<p>Thank you, very handy!:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mloskot</title>
		<link>http://mateusz.loskot.net/2006/01/15/running-pylint-from-komodo/#comment-12</link>
		<dc:creator>mloskot</dc:creator>
		<pubDate>Mon, 16 Jan 2006 18:56:48 +0000</pubDate>
		<guid isPermaLink="false">http://mateusz.loskot.net/2006/01/15/running-pylint-from-komodo/#comment-12</guid>
		<description>Trent, thank you very much.
Your solution works perfectly! It also gives me more light about possible Komodo customizations. Thanks!</description>
		<content:encoded><![CDATA[<p>Trent, thank you very much.<br />
Your solution works perfectly! It also gives me more light about possible Komodo customizations. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trent</title>
		<link>http://mateusz.loskot.net/2006/01/15/running-pylint-from-komodo/#comment-11</link>
		<dc:creator>Trent</dc:creator>
		<pubDate>Mon, 16 Jan 2006 18:30:56 +0000</pubDate>
		<guid isPermaLink="false">http://mateusz.loskot.net/2006/01/15/running-pylint-from-komodo/#comment-11</guid>
		<description>Hrm, my regular expression got mangled there. :) Try this:

...
            [x] Parse output with:  \w:\s*(?P&#60;line&#62;\d+):(?P&#60;content&#62;.*?)$
...</description>
		<content:encoded><![CDATA[<p>Hrm, my regular expression got mangled there. :) Try this:</p>
<p>&#8230;<br />
            [x] Parse output with:  \w:\s*(?P&lt;line&gt;\d+):(?P&lt;content&gt;.*?)$<br />
&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trent</title>
		<link>http://mateusz.loskot.net/2006/01/15/running-pylint-from-komodo/#comment-10</link>
		<dc:creator>Trent</dc:creator>
		<pubDate>Mon, 16 Jan 2006 18:29:30 +0000</pubDate>
		<guid isPermaLink="false">http://mateusz.loskot.net/2006/01/15/running-pylint-from-komodo/#comment-10</guid>
		<description>Checkout Komodo's "Run Command" Tutorial. It should some other things, like how to specify a regular expression to parse output into a list of results. 

For example,  try the following:

Create a "Run Command" in your Toolbox:
    Name:           pylint
    Command:    pylint %f
    Start in:        %D
    Run in: Command Ouytput Tab
            [x] Parse output with:  \w:\s*(?P\d+):(?P.*?)$
            [x] Show parse output as a list

http://trentm.com/downloads/tmp/pylint.kpz

Cheers,
Trent (Komodo developer)</description>
		<content:encoded><![CDATA[<p>Checkout Komodo&#8217;s &#8220;Run Command&#8221; Tutorial. It should some other things, like how to specify a regular expression to parse output into a list of results. </p>
<p>For example,  try the following:</p>
<p>Create a &#8220;Run Command&#8221; in your Toolbox:<br />
    Name:           pylint<br />
    Command:    pylint %f<br />
    Start in:        %D<br />
    Run in: Command Ouytput Tab<br />
            [x] Parse output with:  \w:\s*(?P\d+):(?P.*?)$<br />
            [x] Show parse output as a list</p>
<p><a href="http://trentm.com/downloads/tmp/pylint.kpz" rel="nofollow">http://trentm.com/downloads/tmp/pylint.kpz</a></p>
<p>Cheers,<br />
Trent (Komodo developer)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mloskot</title>
		<link>http://mateusz.loskot.net/2006/01/15/running-pylint-from-komodo/#comment-9</link>
		<dc:creator>mloskot</dc:creator>
		<pubDate>Mon, 16 Jan 2006 07:17:49 +0000</pubDate>
		<guid isPermaLink="false">http://mateusz.loskot.net/2006/01/15/running-pylint-from-komodo/#comment-9</guid>
		<description>You're welcome. It's pretty simply but useful :-)
Now, I'm going to learn more about Komodo macros so may be there is a way to customize it better.
I have an idea to add to PyLint command something like CVS keywords expansion: $Id$ is substituded with one-line revision details.
In my idea if you will run PyLint on a script then rating information is added to the script in comments. So, you can include how is your script conformant to PyLint / Python Style Guide as a rating number e.g. 9.53/10 :-)</description>
		<content:encoded><![CDATA[<p>You&#8217;re welcome. It&#8217;s pretty simply but useful :-)<br />
Now, I&#8217;m going to learn more about Komodo macros so may be there is a way to customize it better.<br />
I have an idea to add to PyLint command something like CVS keywords expansion: $Id$ is substituded with one-line revision details.<br />
In my idea if you will run PyLint on a script then rating information is added to the script in comments. So, you can include how is your script conformant to PyLint / Python Style Guide as a rating number e.g. 9.53/10 :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://mateusz.loskot.net/2006/01/15/running-pylint-from-komodo/#comment-8</link>
		<dc:creator>John</dc:creator>
		<pubDate>Mon, 16 Jan 2006 00:47:52 +0000</pubDate>
		<guid isPermaLink="false">http://mateusz.loskot.net/2006/01/15/running-pylint-from-komodo/#comment-8</guid>
		<description>That's cool!  Thanks for figuring out how to get it to work!</description>
		<content:encoded><![CDATA[<p>That&#8217;s cool!  Thanks for figuring out how to get it to work!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
