<?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>Cameron Priem</title>
	<atom:link href="http://cameronpriem.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cameronpriem.com</link>
	<description>Professional Software Development</description>
	<lastBuildDate>Tue, 11 Aug 2009 12:12:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>IE 6 on windows 2000 hangs on ajax</title>
		<link>http://cameronpriem.com/2009/08/ie-6-on-windows-2000-hangs-on-ajax/</link>
		<comments>http://cameronpriem.com/2009/08/ie-6-on-windows-2000-hangs-on-ajax/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 12:12:06 +0000</pubDate>
		<dc:creator>Campo</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://cameronpriem.com/?p=60</guid>
		<description><![CDATA[This problem took me a few days to sort out.  We just started using Ajax in our application and everything was running fine, loading fast and being totally awesome (because its Ajax , and I heart Ajax).  I couldn&#8217;t figure it out, every &#8230; <a href="http://cameronpriem.com/2009/08/ie-6-on-windows-2000-hangs-on-ajax/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This problem took me a few days to sort out.  We just started using Ajax in our application and everything was running fine, loading fast and being totally awesome (because its Ajax , and I heart Ajax).  I couldn&#8217;t figure it out, every browser and every O/S this was working fine, there was just one customer using IE6 with windows 2000.  The problem was the Ajax call was hanging, for a really long time.  At first I thought the Ajax wasn&#8217;t firing at all, but with out live http headers for IE6, there wasn&#8217;t any way I could confirm this.</p>
<p>So after about 5 minutes of sitting there pulling my hair out&#8230;..the ajax returned a result and the next part of the process ran.   Sooo&#8230;.what the hell?!?!  A few days of googling, trying different things, asking other people in the development team, and finally praying (all religions), I came across a blog post that explained that IE6 doesn&#8217;t handle closed connections very well.  We had this line in our javascript:</p>
<p><em>xh.setRequestHeader(&#8220;Connection&#8221;, &#8220;close&#8221;);</em></p>
<p>We now had to change our code to only include this if the browser was not IE6.  I wasn&#8217;t sure what performance hit this would have or what side affects it would have, but we&#8217;ve been running this for a few years and haven&#8217;t seen any difference with performance or had any problems.  If anyone else has a better understanding of why IE6 behaves like this, please leave me a comment!!</p>
]]></content:encoded>
			<wfw:commentRss>http://cameronpriem.com/2009/08/ie-6-on-windows-2000-hangs-on-ajax/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FireFox Page Break CSS Not Displaying Correctly</title>
		<link>http://cameronpriem.com/2009/08/firefox-page-break-css-not-displaying-correctly/</link>
		<comments>http://cameronpriem.com/2009/08/firefox-page-break-css-not-displaying-correctly/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 13:10:32 +0000</pubDate>
		<dc:creator>Campo</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://cameronpriem.com/?p=49</guid>
		<description><![CDATA[I&#8217;ve always used CSS to handle page breaks when printing from the web, and its always been easy and pretty straight forward to implement.  However FireFox would stop printing after 1 or 2 pages from what should have been about &#8230; <a href="http://cameronpriem.com/2009/08/firefox-page-break-css-not-displaying-correctly/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always used CSS to handle page breaks when printing from the web, and its always been easy and pretty straight forward to implement.  However FireFox would stop printing after 1 or 2 pages from what should have been about a 10 page print job.</p>
<p>After some googling I found that a fair few people have been having the same problem as me, only in FireFox though, every other browser is fine.  The problem was the CSS I was using:</p>
<blockquote><p><em>page-break-after:always;</em></p></blockquote>
<p>FireFox didn&#8217;t like this.  From what I found on the web the work around was to use page-break-before instead.  I searched bugzilla to try and find out more details on why this happens, the best I could find was <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=136714" target="_blank">this lengthy discussion</a>, with instances of this problem from 2002.   So my lesson from this is to use <em>page-break-before:always</em> instead of after.</p>
]]></content:encoded>
			<wfw:commentRss>http://cameronpriem.com/2009/08/firefox-page-break-css-not-displaying-correctly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I, Tweet.</title>
		<link>http://cameronpriem.com/2009/08/i-tweet/</link>
		<comments>http://cameronpriem.com/2009/08/i-tweet/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 12:51:10 +0000</pubDate>
		<dc:creator>Campo</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://cameronpriem.com/?p=46</guid>
		<description><![CDATA[Twitter, the perfect app for when I have nothing of interest or importance to say&#8230;. but I need to tell everyone.  I added a &#8220;follow me on twitter&#8221; button on my blog today, I figure all the cool kids are &#8230; <a href="http://cameronpriem.com/2009/08/i-tweet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Twitter, the perfect app for when I have nothing of interest or importance to say&#8230;. but I need to tell everyone.  I added a &#8220;follow me on twitter&#8221; button on my blog today, I figure all the cool kids are doing it now days: <a title="Stop! collaborate &amp; listen..." href="http://www.twitter.com/vanillaice" target="_blank">Vanilla Ice</a>, <a title="Twitter Time!" href="http://twitter.com/KevinRuddPM" target="_blank">K-Rudd</a>, and even the <a href="http://twitter.com/KR0KIE" target="_blank">fat kid from hey dad</a>.  I got the button from this <a href="http://siahdesign.com/archives/150" target="_blank">blog, a canadian designer</a>.</p>
<p>So this is the start of my 3 step get rich twit plan:</p>
<p>Step 1.  Create twitter account<br />
Step 2.  Add button to blog<br />
Step 3.  Profit.</p>
<p>So do you think my tweets will be worth following? Well i just changed my twitter pic to a wookie feeling up princess leia&#8230;.you be the judge.</p>
]]></content:encoded>
			<wfw:commentRss>http://cameronpriem.com/2009/08/i-tweet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3 drop down list disables on postback with update panel</title>
		<link>http://cameronpriem.com/2009/06/firefox-3-drop-down-list-disables-on-postback-with-update-panel/</link>
		<comments>http://cameronpriem.com/2009/06/firefox-3-drop-down-list-disables-on-postback-with-update-panel/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 12:23:43 +0000</pubDate>
		<dc:creator>Campo</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://cameronpriem.com/?p=43</guid>
		<description><![CDATA[We came across a weird problem a few weeks ago where we were using an UpdatePanel through ASP.NET AJAX (.Net Framework 3.5 SP1) with an asp:dropdownlist on that page.  When the update panel did a post back using ajax the drop &#8230; <a href="http://cameronpriem.com/2009/06/firefox-3-drop-down-list-disables-on-postback-with-update-panel/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We came across a weird problem a few weeks ago where we were using an UpdatePanel through ASP.NET AJAX (.Net Framework 3.5 SP1) with an asp:dropdownlist on that page.  When the update panel did a post back using ajax the drop down lists stopped working.  You could click on the select list but they would not drop down with any options.  This only happened in Firefox 3, no other FF version or Internet Explorer.</p>
<p>Through ages of google searching we found a work around online, adding a window.setTimeout() around the alert box, eg:</p>
<p><code> ScriptManager.RegisterClientScriptBlock(this, typeof(Page), "validationAlert", "window.setTimeout(\"alert('Just testing')\", 0);", true);</code></p>
<p>Hope this saves some other people time and heart ache.</p>
]]></content:encoded>
			<wfw:commentRss>http://cameronpriem.com/2009/06/firefox-3-drop-down-list-disables-on-postback-with-update-panel/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>New Website Created www.broomshead.com</title>
		<link>http://cameronpriem.com/2009/02/new-website-created-wwwbroomsheadcom/</link>
		<comments>http://cameronpriem.com/2009/02/new-website-created-wwwbroomsheadcom/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 12:22:47 +0000</pubDate>
		<dc:creator>Campo</dc:creator>
				<category><![CDATA[web site]]></category>
		<category><![CDATA[brooms head]]></category>

		<guid isPermaLink="false">http://cameronpriem.com/?p=22</guid>
		<description><![CDATA[I got a couple of holiday units at brooms head.  I&#8217;m trying to make it easier for people to find out info and to get in contact with me to book.  For now its just a basic web site with: &#8230; <a href="http://cameronpriem.com/2009/02/new-website-created-wwwbroomsheadcom/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I got a couple of holiday units at <a title="Brooms Head Holiday Units" href="http://www.broomshead.com" target="_blank">brooms head</a>.  I&#8217;m trying to make it easier for people to find out info and to get in contact with me to book.  For now its just a basic web site with:</p>
<ul>
<li>photos </li>
<li>contact info</li>
<li>things to do at brooms head &amp; surrounding areas</li>
</ul>
<p>I also found this cool slide show thingy from <a href="http://picasa.google.com/" target="_blank">picasa</a> which I added.  Its pretty cool, I was after a free image rotator and I already use picasa for all my brooms head photo albumn, so it was a match made in heaven.  I would like to see some extra customisation, for example not displaying my name, but for free its awesome and it works on all browsers&#8230; that I care about.  Hosting is with <a title=".net hosting webhost4life" href="http://www.webhost4life.com/" target="_blank">webhost4life</a> which have been really good so far, and reasonably priced.  Its my first .net hosting company I&#8217;ve gone with and it all self controlled within a cool online control panel.</p>
<p>The <a href="http://bryantsmith.com/template/anoceanofsky/" target="_blank">css design is a template by bryant smith</a>, a web designer in Florida.  I liked it immediately, great colours and simple design.  The content was written by my dad, and the brooms head photos were partly taken by me and Dad.</p>
<p>I hope in other releases to sex the site up a bit:</p>
<ul>
<li>Public calendar for people to check availability online</li>
<li>A simple 1 page booking fee (as minimal and easy as possible)</li>
<li>Hook up to online secure payment gateway</li>
<li>Web admin to add bookings via phone (for multiple people)</li>
<li>Web admin to enter bills I receive or my dad does (he lives close).  I&#8217;m hoping I can use the freshbooks API to do this, but will need to look into it.</li>
<li>Web admin setup email templates to make it easier for me or other admins to reply to emails.</li>
<li>Setup Subversion &amp; automated testing with mozy backup</li>
<li>Pretty up the design</li>
</ul>
<p>I&#8217;d be pretty happy if I get all this done, but this is a big investment on time&#8230;.wish me luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://cameronpriem.com/2009/02/new-website-created-wwwbroomsheadcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forward mail from gmail account to multiple email addresses</title>
		<link>http://cameronpriem.com/2009/01/forward-mail-from-gmail-account-to-multiple-email-addresses/</link>
		<comments>http://cameronpriem.com/2009/01/forward-mail-from-gmail-account-to-multiple-email-addresses/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 10:49:13 +0000</pubDate>
		<dc:creator>Campo</dc:creator>
				<category><![CDATA[Helpful Tips]]></category>
		<category><![CDATA[I heart google]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[forwarding]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://cameronpriem.com/?p=26</guid>
		<description><![CDATA[In setting up a new web site, broomshead.com, I wanted to be able to forward an email to multiple email addresses. So after a bit of research on the net I found out you could do this by creating filters: &#8230; <a href="http://cameronpriem.com/2009/01/forward-mail-from-gmail-account-to-multiple-email-addresses/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In setting up a new web site, <a href="http://www.broomshead.com" target="_blank">broomshead.com</a>, I wanted to be able to forward an email to multiple email addresses. So after a bit of research on the net I found out you could do this by creating filters:</p>
<ul>
<li>Login to Gmail</li>
<li>Click on settings (top right)</li>
<li>Click Filters</li>
<li>Click &#8220;Create new filter&#8221;</li>
<li>In the &#8220;To&#8221; field enter your gmail email address</li>
<li>Click Next Step</li>
<li>Tick &#8220;Skip the inbox&#8221; if you want the email archived</li>
<li>Tick &#8220;forward it to&#8221; and enter one of the email addresses you want to forward your mail to</li>
<li>Click Update Filter</li>
</ul>
<p>Repeat this process for each individual email address you want to forward to.  Pretty simple huh?</p>
]]></content:encoded>
			<wfw:commentRss>http://cameronpriem.com/2009/01/forward-mail-from-gmail-account-to-multiple-email-addresses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pet Adoptions From RSPCA in Springwood</title>
		<link>http://cameronpriem.com/2009/01/pet-adoptions-from-rspca-in-springwood/</link>
		<comments>http://cameronpriem.com/2009/01/pet-adoptions-from-rspca-in-springwood/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 01:45:14 +0000</pubDate>
		<dc:creator>Campo</dc:creator>
				<category><![CDATA[pets]]></category>
		<category><![CDATA[rspca]]></category>

		<guid isPermaLink="false">http://cameronpriem.com/?p=36</guid>
		<description><![CDATA[The world for pets superstore at Springwood is a huge store for everything pet related, with all profits going directly to the RSPCA.  They never used to do pet adoptions, but instead have information on adopting pets from Fairfield.  This &#8230; <a href="http://cameronpriem.com/2009/01/pet-adoptions-from-rspca-in-springwood/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The <a title="world for pets springwood" href="http://www.worldforpets.com.au/" target="_blank">world for pets superstore</a> at Springwood is a huge store for everything pet related, with all profits going directly to the RSPCA.  They never used to do pet adoptions, but instead have information on adopting pets from Fairfield.  This has changed though with kittens now available for adoption at Springwood.  The <a href="http://adoptapet.com.au/about/shelters/#QLD" target="_blank">adopt-a-pet web site</a> though only lists adoptions from  8.30 am to 5.00 pm Saturday &amp; Sunday for adoptions, however I&#8217;ve seen kittens and an adoption representative every day since the new year.</p>
<p>So check out the world for pets store and give a pet a new loving home from the RSPCA.</p>
]]></content:encoded>
			<wfw:commentRss>http://cameronpriem.com/2009/01/pet-adoptions-from-rspca-in-springwood/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software Developer Brisbane</title>
		<link>http://cameronpriem.com/2009/01/software-developer-brisbane/</link>
		<comments>http://cameronpriem.com/2009/01/software-developer-brisbane/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 03:29:32 +0000</pubDate>
		<dc:creator>Campo</dc:creator>
				<category><![CDATA[Jobs]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[employment]]></category>
		<category><![CDATA[rspca]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://cameronpriem.com/?p=30</guid>
		<description><![CDATA[RSPCA Qld are hiring a new software developer: http://www.rspcaqld.org.au/employment/vacancies.htm. To be considered for this role you must have demonstrated skills in the following areas: Web based programming and development; VB Script, Classic ASP / VB SQL Server 2000/2005 (T-SQL); HTML, JavaScript. &#8230; <a href="http://cameronpriem.com/2009/01/software-developer-brisbane/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>RSPCA Qld are hiring a new software developer: <a href="http://www.rspcaqld.org.au/employment/vacancies.htm">http://www.rspcaqld.org.au/employment/vacancies.htm</a>.</p>
<blockquote><p><em>To be considered for this role you must have demonstrated skills in the following areas:</em></p>
<ul>
<li><em>Web based programming and development;<br />
</em></li>
<li><em>VB Script, Classic ASP / VB<br />
</em></li>
<li><em>SQL Server 2000/2005 (T-SQL);<br />
</em></li>
<li><em>HTML, JavaScript.<br />
</em></li>
</ul>
<p><em>The ideal candidate will also possess advanced skills in AJAX and #.NET (ASP.NET, Web Services, C#) and have a background in Network Support, VPN Troubleshooting and Server Maintenance.<br />
</em></p>
<p><em>The position will only be offered on an a contract basis &#8211; approximately 12 months and is based at Springwood.</em></p></blockquote>
<p>Application close Friday 23rd January 09, if you&#8217;re interested you should apply!!</p>
]]></content:encoded>
			<wfw:commentRss>http://cameronpriem.com/2009/01/software-developer-brisbane/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to measure connection pooling SQLOLE</title>
		<link>http://cameronpriem.com/2009/01/how-to-measure-connection-pooling-sqlole/</link>
		<comments>http://cameronpriem.com/2009/01/how-to-measure-connection-pooling-sqlole/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 01:15:51 +0000</pubDate>
		<dc:creator>Campo</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://cameronpriem.com/?p=16</guid>
		<description><![CDATA[Our web app has been having some problems with &#8221; [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.&#8221; error at random times.  The connection string is fine, the app runs without any dramas, but at random times it will display this error message. After consultation with other people we think that the connection pooling may be &#8230; <a href="http://cameronpriem.com/2009/01/how-to-measure-connection-pooling-sqlole/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Our web app has been having some problems with &#8221; <em>[DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.</em>&#8221; error at random times.  The connection string is fine, the app runs without any dramas, but at random times it will display this error message. After consultation with other people we think that the connection pooling may be failing on some areas of our app.  I wasn&#8217;t really sure how to measure this in a test environment, so after some research I found out that you can use perfmon to do this.</p>
<div><strong>Using perfmon to measure connection pools</strong></div>
<div>Start &gt; run &gt; perfmon</div>
<div>Add the counter for SQL Server: General Statistics &gt; Logins/sec</div>
<div>If this stays moderately low, at about 1 or 0 it should be fine, which was consistent with a majority of the different parts of our system until we ran a report.  The screen shot shows logging in which was next to nothing in the graph,  the large spike was running 1 report.</div>
<div>
<div id="attachment_17" class="wp-caption aligncenter" style="width: 310px"><a href="http://cameronpriem.com/wp-content/uploads/2008/10/report103.gif"><img class="size-medium wp-image-17" title="report103" src="http://cameronpriem.com/wp-content/uploads/2008/10/report103-300x247.gif" alt="connection pooling in perfmon" width="300" height="247" /></a><p class="wp-caption-text">connection pools in perfmon</p></div>
<p>And as you can see my computer name is deathstar&#8230;.orsm!  The next step is to find out why the connection is not pooling correctly in our reporting engine&#8230;</p></div>
]]></content:encoded>
			<wfw:commentRss>http://cameronpriem.com/2009/01/how-to-measure-connection-pooling-sqlole/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get subversion changes for single author</title>
		<link>http://cameronpriem.com/2008/10/get-subversion-changes-for-single-author/</link>
		<comments>http://cameronpriem.com/2008/10/get-subversion-changes-for-single-author/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 12:11:41 +0000</pubDate>
		<dc:creator>Campo</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://cameronpriem.com/?p=13</guid>
		<description><![CDATA[A while ago I was approached by my boss &#8220;I need a list of all the changes a former employee committed into subversion&#8221; &#8220;No problem!&#8221; I replied with gusto. It didn&#8217;t turn out to be as easy as I thought.  &#8230; <a href="http://cameronpriem.com/2008/10/get-subversion-changes-for-single-author/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A while ago I was approached by my <a href="http://ndn.newsweek.com/media/25/71014_MoneyHappiness_vl-vertical.jpg" target="_blank">boss</a><br />
&#8220;<em>I need a list of all the changes a former employee committed into subversion</em>&#8221;<br />
&#8220;<em>No problem!</em>&#8221; I replied with gusto.</p>
<p>It didn&#8217;t turn out to be as easy as I thought.  I figured there would be an inbuilt subversion command to do this, but after searching the subversion documentation I couldn&#8217;t find anything helpful.  I then went to plan B which consisted of:</p>
<p>-  Download windows sed editor: <a href="http://www.cornerstonemag.com/sed/">http://www.cornerstonemag.com/sed/</a><br />
-  export svn log to a txt file<br />
-  Run this sed command on txt file (this example was for only author of cpriem): sed -n &#8220;/cpriem/,/&#8212;&#8211;$/ p&#8221; svn.txt &gt; cpriemSvn.txt<br />
<em><br />
svn.txt is input file from svn log<br />
cpriemSvn.txt is output file</em></p>
<p>sed command from: <a href="http://svn.haxx.se/users/archive-2007-08/0748.shtml">http://svn.haxx.se/users/archive-2007-08/0748.shtml</a></p>
<p>There may be an easier way with the latest version of subversion so just check out the documentation first.</p>
]]></content:encoded>
			<wfw:commentRss>http://cameronpriem.com/2008/10/get-subversion-changes-for-single-author/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

