<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Python FTP Uploader in right click menu</title>
	<atom:link href="http://www.messy-mind.net/2007/python-ftp-uploader-in-right-click-menu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.messy-mind.net/2007/python-ftp-uploader-in-right-click-menu/</link>
	<description>Welcome to the tangle in my head.</description>
	<lastBuildDate>Wed, 28 Dec 2011 03:51:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: MyGGaN</title>
		<link>http://www.messy-mind.net/2007/python-ftp-uploader-in-right-click-menu/comment-page-1/#comment-915</link>
		<dc:creator>MyGGaN</dc:creator>
		<pubDate>Fri, 07 Nov 2008 14:55:05 +0000</pubDate>
		<guid isPermaLink="false">http://gear.64digits.com/blog/uncategorized/python-ftp-uploader-in-right-click-menu/#comment-915</guid>
		<description>Nice tutorial, exactly what I was looking for. A bit better support to show the Python code would have been nice though.</description>
		<content:encoded><![CDATA[<p>Nice tutorial, exactly what I was looking for. A bit better support to show the Python code would have been nice though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob the blueberry</title>
		<link>http://www.messy-mind.net/2007/python-ftp-uploader-in-right-click-menu/comment-page-1/#comment-735</link>
		<dc:creator>Bob the blueberry</dc:creator>
		<pubDate>Tue, 14 Oct 2008 22:02:31 +0000</pubDate>
		<guid isPermaLink="false">http://gear.64digits.com/blog/uncategorized/python-ftp-uploader-in-right-click-menu/#comment-735</guid>
		<description>You use Windows?
It makes me sick.
*barfing noises*</description>
		<content:encoded><![CDATA[<p>You use Windows?<br />
It makes me sick.<br />
*barfing noises*</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SquareWheel</title>
		<link>http://www.messy-mind.net/2007/python-ftp-uploader-in-right-click-menu/comment-page-1/#comment-240</link>
		<dc:creator>SquareWheel</dc:creator>
		<pubDate>Tue, 12 Feb 2008 03:55:04 +0000</pubDate>
		<guid isPermaLink="false">http://gear.64digits.com/blog/uncategorized/python-ftp-uploader-in-right-click-menu/#comment-240</guid>
		<description>I just wanted to point out the end product download has changed with the new domain, and is found at http://www.messy-mind.net/blog/wp-content/uploads/2007/10/uploader.zip instead.  I&#039;m sure this applies for other downloads as well.</description>
		<content:encoded><![CDATA[<p>I just wanted to point out the end product download has changed with the new domain, and is found at <a href="http://www.messy-mind.net/blog/wp-content/uploads/2007/10/uploader.zip" rel="nofollow">http://www.messy-mind.net/blog/wp-content/uploads/2007/10/uploader.zip</a> instead.  I&#8217;m sure this applies for other downloads as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gary</title>
		<link>http://www.messy-mind.net/2007/python-ftp-uploader-in-right-click-menu/comment-page-1/#comment-46</link>
		<dc:creator>Gary</dc:creator>
		<pubDate>Mon, 08 Oct 2007 00:28:51 +0000</pubDate>
		<guid isPermaLink="false">http://gear.64digits.com/blog/uncategorized/python-ftp-uploader-in-right-click-menu/#comment-46</guid>
		<description>Er, revision of the previous comment, the Exec line is wrong.

It should be:

Exec=/python /path/to/uploader.py %f</description>
		<content:encoded><![CDATA[<p>Er, revision of the previous comment, the Exec line is wrong.</p>
<p>It should be:</p>
<p>Exec=/python /path/to/uploader.py %f</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gary</title>
		<link>http://www.messy-mind.net/2007/python-ftp-uploader-in-right-click-menu/comment-page-1/#comment-45</link>
		<dc:creator>Gary</dc:creator>
		<pubDate>Mon, 08 Oct 2007 00:25:07 +0000</pubDate>
		<guid isPermaLink="false">http://gear.64digits.com/blog/uncategorized/python-ftp-uploader-in-right-click-menu/#comment-45</guid>
		<description>Oh, PS: Assuming anyone wants to translate this to, say, Linux, with the KDE environment, I cooked up a quick thing for that. Basically, you want to do the same thing, except you don&#039;t have to fuck around with the registry. Do this instead:

Create a file named ftp.desktop, and copy it to ~/.kde/share/apps/konqueror/servicemenus/ (if that directory doesn&#039;t exist, make it.)

The contents of the file should be:

[Desktop Entry]
ServicesType=all/all
Actions=ftpSend

[Desktop Action ftpSend]
Name=FTP to your site
Exec=python /path/to/uploader.py filename


And assuming you want to get rid of it, it&#039;s quite simple:

rm ~/.kde/share/apps/konqueror/servicemenus/ftp.desktop


And so you have it. You might have to modify some of the code to fix it for Linux, but the idea is the same.</description>
		<content:encoded><![CDATA[<p>Oh, PS: Assuming anyone wants to translate this to, say, Linux, with the KDE environment, I cooked up a quick thing for that. Basically, you want to do the same thing, except you don&#8217;t have to fuck around with the registry. Do this instead:</p>
<p>Create a file named <a href="http://ftp.desktop" rel="nofollow">http://ftp.desktop</a>, and copy it to ~/.kde/share/apps/konqueror/servicemenus/ (if that directory doesn&#8217;t exist, make it.)</p>
<p>The contents of the file should be:</p>
<p>[Desktop Entry]<br />
ServicesType=all/all<br />
Actions=ftpSend</p>
<p>[Desktop Action ftpSend]<br />
Name=FTP to your site<br />
Exec=python /path/to/uploader.py filename</p>
<p>And assuming you want to get rid of it, it&#8217;s quite simple:</p>
<p>rm ~/.kde/share/apps/konqueror/servicemenus/ftp.desktop</p>
<p>And so you have it. You might have to modify some of the code to fix it for Linux, but the idea is the same.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gary</title>
		<link>http://www.messy-mind.net/2007/python-ftp-uploader-in-right-click-menu/comment-page-1/#comment-42</link>
		<dc:creator>Gary</dc:creator>
		<pubDate>Sun, 07 Oct 2007 21:06:16 +0000</pubDate>
		<guid isPermaLink="false">http://gear.64digits.com/blog/uncategorized/python-ftp-uploader-in-right-click-menu/#comment-42</guid>
		<description>Pretty useful, although I&#039;d have to go through an entirely different process altogether to add it to my right-click menus. Anyways, kudos to the work you&#039;ve done here. 

I&#039;m more of a sucker for PERL, though. Ha. Anyways. Yeah.

Good job.</description>
		<content:encoded><![CDATA[<p>Pretty useful, although I&#8217;d have to go through an entirely different process altogether to add it to my right-click menus. Anyways, kudos to the work you&#8217;ve done here. </p>
<p>I&#8217;m more of a sucker for PERL, though. Ha. Anyways. Yeah.</p>
<p>Good job.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

