<?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 for Bluebird&#039;s blog</title>
	<atom:link href="http://www.freehackers.org/bluebird/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.freehackers.org/bluebird</link>
	<description></description>
	<lastBuildDate>Mon, 23 Jan 2012 17:14:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>Comment on Automating packaging and RedMine by Felipe</title>
		<link>http://www.freehackers.org/bluebird/2009/05/27/automating-packaging-and-redmine/#comment-70</link>
		<dc:creator>Felipe</dc:creator>
		<pubDate>Mon, 23 Jan 2012 17:14:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.freehackers.org/bluebird/?p=11#comment-70</guid>
		<description>Silly me, forgot to open the file in binary mode and line buffering caused the file.read method to return just the first 79 bytes of the archive.</description>
		<content:encoded><![CDATA[<p>Silly me, forgot to open the file in binary mode and line buffering caused the file.read method to return just the first 79 bytes of the archive.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automating packaging and RedMine by Felipe</title>
		<link>http://www.freehackers.org/bluebird/2009/05/27/automating-packaging-and-redmine/#comment-69</link>
		<dc:creator>Felipe</dc:creator>
		<pubDate>Wed, 18 Jan 2012 20:20:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.freehackers.org/bluebird/?p=11#comment-69</guid>
		<description>Hi,

I&#039;ve used your code sample to upload files to my Redmine instance. I&#039;m running into a problem though: mechanize is failing to POST the request appropriately. The message should be a multipart/form-data, but when I upload a file only the first 79 bytes are sent. Have you run over any issues like this?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;ve used your code sample to upload files to my Redmine instance. I&#8217;m running into a problem though: mechanize is failing to POST the request appropriately. The message should be a multipart/form-data, but when I upload a file only the first 79 bytes are sent. Have you run over any issues like this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automating packaging and RedMine by SzG</title>
		<link>http://www.freehackers.org/bluebird/2009/05/27/automating-packaging-and-redmine/#comment-66</link>
		<dc:creator>SzG</dc:creator>
		<pubDate>Fri, 04 Nov 2011 17:44:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.freehackers.org/bluebird/?p=11#comment-66</guid>
		<description>Hello,

please see the Perl version below, just for fun. Server project filename from ARGV, user passwd from stdin.

#!/usr/bin/perl
use strict;
use WWW::Mechanize;
use Term::ReadKey;

print &quot;username: &quot;; (my $username = ) =~ s/[\r\n]//g;
ReadMode &#039;noecho&#039;;
print &quot;password: &quot;; (my $password = ) =~ s/[\r\n]//g;
ReadMode 0;

my ($server, $pj, $file) = @ARGV;
my $mech = WWW::Mechanize-&gt;new();

$mech-&gt;get(&quot;http://$server/redmine/login&quot;);
$mech-&gt;submit_form(with_fields =&gt; { username =&gt; $username, password =&gt; $password });

$mech-&gt;get(&quot;http://$server/redmine/projects/$pj/files/new&quot;);
$mech-&gt;submit_form(with_fields =&gt; { &quot;attachments[1][file]&quot; =&gt; $file });</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>please see the Perl version below, just for fun. Server project filename from ARGV, user passwd from stdin.</p>
<p>#!/usr/bin/perl<br />
use strict;<br />
use WWW::Mechanize;<br />
use Term::ReadKey;</p>
<p>print &#8220;username: &#8220;; (my $username = ) =~ s/[\r\n]//g;<br />
ReadMode &#8216;noecho&#8217;;<br />
print &#8220;password: &#8220;; (my $password = ) =~ s/[\r\n]//g;<br />
ReadMode 0;</p>
<p>my ($server, $pj, $file) = @ARGV;<br />
my $mech = WWW::Mechanize-&gt;new();</p>
<p>$mech-&gt;get(&#8220;http://$server/redmine/login&#8221;);<br />
$mech-&gt;submit_form(with_fields =&gt; { username =&gt; $username, password =&gt; $password });</p>
<p>$mech-&gt;get(&#8220;http://$server/redmine/projects/$pj/files/new&#8221;);<br />
$mech-&gt;submit_form(with_fields =&gt; { &#8220;attachments[1][file]&#8221; =&gt; $file });</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automating packaging and RedMine by Redmine, SVN &#38; post-commit &#171; kctus&#124;NET</title>
		<link>http://www.freehackers.org/bluebird/2009/05/27/automating-packaging-and-redmine/#comment-28</link>
		<dc:creator>Redmine, SVN &#38; post-commit &#171; kctus&#124;NET</dc:creator>
		<pubDate>Sat, 23 Jul 2011 14:23:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.freehackers.org/bluebird/?p=11#comment-28</guid>
		<description>[...]  [...]</description>
		<content:encoded><![CDATA[<p>[...]  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automating packaging and RedMine by Redmine, SVN &#38; post-commit &#171; kctus&#124;NET</title>
		<link>http://www.freehackers.org/bluebird/2009/05/27/automating-packaging-and-redmine/#comment-23</link>
		<dc:creator>Redmine, SVN &#38; post-commit &#171; kctus&#124;NET</dc:creator>
		<pubDate>Fri, 09 Apr 2010 16:15:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.freehackers.org/bluebird/?p=11#comment-23</guid>
		<description>[...] premier script en python&#8230; mis au point grâce à l&#8217;aide de ce billet. On y apprend comment installer les librairies mechanize et ClientForm, et comment les utiliser [...]</description>
		<content:encoded><![CDATA[<p>[...] premier script en python&#8230; mis au point grâce à l&#8217;aide de ce billet. On y apprend comment installer les librairies mechanize et ClientForm, et comment les utiliser [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windres problem and solution by orzel</title>
		<link>http://www.freehackers.org/bluebird/2007/08/15/windres-problem-and-solution/#comment-20</link>
		<dc:creator>orzel</dc:creator>
		<pubDate>Wed, 30 Sep 2009 00:00:06 +0000</pubDate>
		<guid isPermaLink="false">http://phil.freehackers.org/wordpress/?p=3#comment-20</guid>
		<description>The trick doesn&#039;t work anymore with gcc-4.4 (at least i think this is the reason why it doesnt work anymore).

David : your atlernative does work, thanks a LOT for this!</description>
		<content:encoded><![CDATA[<p>The trick doesn&#8217;t work anymore with gcc-4.4 (at least i think this is the reason why it doesnt work anymore).</p>
<p>David : your atlernative does work, thanks a LOT for this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windres problem and solution by David</title>
		<link>http://www.freehackers.org/bluebird/2007/08/15/windres-problem-and-solution/#comment-18</link>
		<dc:creator>David</dc:creator>
		<pubDate>Fri, 27 Mar 2009 12:51:09 +0000</pubDate>
		<guid isPermaLink="false">http://phil.freehackers.org/wordpress/?p=3#comment-18</guid>
		<description>Other alternative:

 ADD_CUSTOM_COMMAND( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/qyzis_ico.obj
                        COMMAND windres.exe -I. -o ${CMAKE_CURRENT_BINARY_DIR}/qyzis_ico.obj -i qyzis_ico.rc
                        WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
                        )

Thanks for your post!</description>
		<content:encoded><![CDATA[<p>Other alternative:</p>
<p> ADD_CUSTOM_COMMAND( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/qyzis_ico.obj<br />
                        COMMAND windres.exe -I. -o ${CMAKE_CURRENT_BINARY_DIR}/qyzis_ico.obj -i qyzis_ico.rc<br />
                        WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}<br />
                        )</p>
<p>Thanks for your post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windres problem and solution by AgiceRuidge</title>
		<link>http://www.freehackers.org/bluebird/2007/08/15/windres-problem-and-solution/#comment-15</link>
		<dc:creator>AgiceRuidge</dc:creator>
		<pubDate>Tue, 04 Nov 2008 15:15:04 +0000</pubDate>
		<guid isPermaLink="false">http://phil.freehackers.org/wordpress/?p=3#comment-15</guid>
		<description>I don&#039;t even know,fellow!) continued to write in the same vein, it is interesting people!</description>
		<content:encoded><![CDATA[<p>I don&#8217;t even know,fellow!) continued to write in the same vein, it is interesting people!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windres problem and solution by admin</title>
		<link>http://www.freehackers.org/bluebird/2007/08/15/windres-problem-and-solution/#comment-12</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 02 Oct 2008 09:23:31 +0000</pubDate>
		<guid isPermaLink="false">http://phil.freehackers.org/wordpress/?p=3#comment-12</guid>
		<description>When using mingw, you should get rid or cygwin as much as you can. Usually, I simply discard cygwin and work in a dos shell. That&#039;s really annoying in terms of shell capabilities but at the same time, it avoids tons of problems.</description>
		<content:encoded><![CDATA[<p>When using mingw, you should get rid or cygwin as much as you can. Usually, I simply discard cygwin and work in a dos shell. That&#8217;s really annoying in terms of shell capabilities but at the same time, it avoids tons of problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windres problem and solution by Joshua</title>
		<link>http://www.freehackers.org/bluebird/2007/08/15/windres-problem-and-solution/#comment-11</link>
		<dc:creator>Joshua</dc:creator>
		<pubDate>Wed, 01 Oct 2008 19:42:20 +0000</pubDate>
		<guid isPermaLink="false">http://phil.freehackers.org/wordpress/?p=3#comment-11</guid>
		<description>I had a similar problem, except I didn&#039;t have any spaces in the path.  Instead, windres wasn&#039;t seeing the backslashes being passed to it.  The problem turned out to be that codeblocks wasn&#039;t calling MinGW&#039;s windres -- it was calling the first windres.exe found in my path -- which happened to be Cygwin&#039;s.  I renamed cygwin&#039;s windres.exe to something else and the problem was solved.  A better &quot;solution&quot; is to place MinGW ahead of Cygwin in my path.</description>
		<content:encoded><![CDATA[<p>I had a similar problem, except I didn&#8217;t have any spaces in the path.  Instead, windres wasn&#8217;t seeing the backslashes being passed to it.  The problem turned out to be that codeblocks wasn&#8217;t calling MinGW&#8217;s windres &#8212; it was calling the first windres.exe found in my path &#8212; which happened to be Cygwin&#8217;s.  I renamed cygwin&#8217;s windres.exe to something else and the problem was solved.  A better &#8220;solution&#8221; is to place MinGW ahead of Cygwin in my path.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

