<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Julian Rex &#187; fogbugz</title>
	<atom:link href="http://julianrex.com/tag/fogbugz/feed/" rel="self" type="application/rss+xml" />
	<link>http://julianrex.com</link>
	<description>iPhone and iPad Apps and Game Development</description>
	<lastBuildDate>Wed, 23 Mar 2011 22:35:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Fix for FogBugz/Perforce integration on OSX</title>
		<link>http://julianrex.com/2009/12/quick-fix-for-fogbugz-and-perforce-integration-on-osx/</link>
		<comments>http://julianrex.com/2009/12/quick-fix-for-fogbugz-and-perforce-integration-on-osx/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 04:24:27 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fogbugz]]></category>
		<category><![CDATA[perforce]]></category>
		<category><![CDATA[scm]]></category>

		<guid isPermaLink="false">http://rexy.co.uk/?p=121</guid>
		<description><![CDATA[The Short Answer Add --no-check-certificate to the wget call in logBugDataP4.pl The Waffle On the recommendation of Kirby, I&#8217;ve been trying out FogBugz for task and bug tracking. I&#8217;d dismissed FogBugz assuming the cost would be too much (and for the daft name), but, amazingly, it has a free startup edition &#8211; good for 2 [...]]]></description>
			<content:encoded><![CDATA[<h2>The Short Answer</h2>
<p>Add <code>--no-check-certificate</code> to the wget call in logBugDataP4.pl</p>
<h2>The Waffle</h2>
<p>On the recommendation of <a href="http://twitter.com/kirbyt">Kirby</a>, I&#8217;ve been trying out FogBugz for task and bug tracking. I&#8217;d dismissed FogBugz assuming the cost would be too much (and for the daft name), but, amazingly, it has a <a href="http://www.fogcreek.com/FogBugz/StudentAndStartup.html">free startup edition</a> &#8211; good for 2 users. (One of the most interesting features is the Evidence Based Scheduling i.e using historical metrics for better estimates. I&#8217;ll be very interested to see how it works out.)</p>
<p>FogBugz <a href="http://www.fogcreek.com/FogBugz/Integration.html">integrates</a> with a number of SCM packages. In my case I&#8217;m also running the free 2-user Perforce install, and of course wanted to link the two. (I&#8217;ll get around to SVN and Git too but for now it looks like I&#8217;ll have to sort myself out for integration with AccuRev).</p>
<p>For Mac OS X, FogBugz has a Perl script (logBugDataP4.pl) which scans your changelist description for lines like:</p>
<p><code>BugzIDs: 1234<br />
</code></p>
<p>This allows FogBugz to link back to the Perforce changelist (if you&#8217;re running P4Web). By default though, the script appears to fail when issuing the wget.</p>
<p>The answer is to add &#8211;no-check-certificate to the wget calls, so that:</p>
<p><code> system("wget '$url' -q -O /dev/null");</code></p>
<p>becomes</p>
<p><code> system("wget '$url' -q -O /dev/null --no-check-certificate");</code></p>
<p>In my version I&#8217;ve removed the -q and the /dev/null preferring to dump the output and logging to files, so I can see what&#8217;s going on.</p>
<p>(There are two calls around lines 134 and 165.)</p>
]]></content:encoded>
			<wfw:commentRss>http://julianrex.com/2009/12/quick-fix-for-fogbugz-and-perforce-integration-on-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

