<?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>Development Blog &#187; Linux</title>
	<atom:link href="http://blog.yeticode.co.uk/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.yeticode.co.uk</link>
	<description>John Tindell's Blog For Development Related Things</description>
	<lastBuildDate>Wed, 23 Jun 2010 18:17:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Bazaar Plugin for OnTime Integration</title>
		<link>http://blog.yeticode.co.uk/2010/04/bazaar-plugin-for-ontime-integration/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=bazaar-plugin-for-ontime-integration</link>
		<comments>http://blog.yeticode.co.uk/2010/04/bazaar-plugin-for-ontime-integration/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 22:26:01 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Development Log]]></category>
		<category><![CDATA[bzr]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ontime]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://blog.yeticode.co.uk/?p=683</guid>
		<description><![CDATA[I was playing around with bazaar, whilst reviewing distributed version control systems (DVCS), and created a simple plugin for use with axosoft&#8217;s ontime. The plugin parses the commit message and links the files to the related task, defect or feature. Install Download the tar file from [download id="3"] Extract and run the installer using the [...]]]></description>
			<content:encoded><![CDATA[<p>I was playing around with <a href="http://bazaar.canonical.com/">bazaar</a>, whilst reviewing distributed version control systems (DVCS), and created a simple plugin for use with <a href="http://www.axosoft.com/ontime">axosoft&#8217;s ontime</a>. The plugin parses the commit message and links the files to the related task, defect or feature.<br />
<br/></p>
<h3>Install</h3>
<p>Download the tar file from [download id="3"]<br />
Extract and run the installer using the following:</p>
<pre>
tar -vxzf bzr-ontime-0.0.1.tar.gz
cd bzr-ontime-0.0.1
sudo python setup.py install
</pre>
<p><br/></p>
<h3>Configure</h3>
<p>Setup the database connection information.<br />
<strong>/etc/bzr-ontime.conf</strong></p>
<pre>[ontime]
server=your-mssql-server
username=sa
password=p4ssw0rd
database=ontime
</pre>
<p><br/></p>
<h3>Confirm Installation</h3>
<pre>bzr hooks
</pre>
<p>If the plugin is installed correct you should see the plugin listed under the post_commit section.</p>
<h3>Related Reading</h3>
<table>
<tr>
<td>
<a href="http://www.amazon.co.uk/gp/product/1590593561?ie=UTF8&#038;tag=worldoverride-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=1590593561"><img border="0" src="http://static.yeticode.co.uk/blog/images/dive_into_python.jpg"></a><img src="http://www.assoc-amazon.co.uk/e/ir?t=worldoverride-21&#038;l=as2&#038;o=2&#038;a=1590593561" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
</td>
</tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://blog.yeticode.co.uk/2010/04/bazaar-plugin-for-ontime-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upload Image to Imgur.com</title>
		<link>http://blog.yeticode.co.uk/2010/01/upload-image-to-imgur-com/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=upload-image-to-imgur-com</link>
		<comments>http://blog.yeticode.co.uk/2010/01/upload-image-to-imgur-com/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 22:59:38 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Development Log]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[nautilus]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://blog.yeticode.co.uk/?p=626</guid>
		<description><![CDATA[I was looking for an easy way to upload images from my laptop to imgur.com without having to open my browser up. I found a post explaining how to upload an image from nautilus. The script worked well enough however I didn&#8217;t like the information it displayed to you at the end. So I rewrote [...]]]></description>
			<content:encoded><![CDATA[<p>I was looking for an easy way to upload images from my laptop to <a href="http://www.imgur.com">imgur.com</a> without having to open my browser up. I found a post explaining how to upload an <a href="http://www.webupd8.org/2009/12/upload-image-to-imgur-nautilus-actions.html">image from nautilus</a>. The script worked well enough however I didn&#8217;t like the information it displayed to you at the end. So I rewrote the script in python so that it displays a dialog with link buttons for the available options for the image.</p>
<p><img alt="upload to imgur screenshot" src="http://static.yeticode.co.uk/blog/images/posts/Screenshot-Imgur-Details.png" title="Post upload details"/></p>
<p>The code is <a href="https://code.google.com/p/imgur-upload/">hosted at google</a>.</p>
<p><b>Update</b></p>
<p>Thanks to the <a href="http://www.reddit.com/r/linux/comments/aldjc/upload_to_imgur_from_nautilus/">people over at reddit</a> the script now supports automatically copies the url to the clipboard, and also correctly loads the glade file.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeticode.co.uk/2010/01/upload-image-to-imgur-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN Notify by Email</title>
		<link>http://blog.yeticode.co.uk/2009/10/svn-notify-by-email/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=svn-notify-by-email</link>
		<comments>http://blog.yeticode.co.uk/2009/10/svn-notify-by-email/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 23:45:49 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Development Log]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[shell script]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://blog.yeticode.co.uk/?p=601</guid>
		<description><![CDATA[Svn hook to email you information in post commit hook. Install svnnotify which will be used to send the email yum install perl-CPAN perl -MCPAN -e 'install SVN::Notify' perl -MCPAN -e 'install SVN::Notify::HTML::ColorDiff' The post-commit script #!/bin/sh for i in 'email1@domain.co.uk' 'email2@domain.com' do svnnotify --repos-path "$1" \ --revision "$2" \ --to $i \ --from account@example.co.uk [...]]]></description>
			<content:encoded><![CDATA[<p>Svn hook to email you information in post commit hook.</p>
<p>Install svnnotify which will be used to send the email</p>
<pre name="code" class="sh">
yum install perl-CPAN
perl -MCPAN -e 'install SVN::Notify'
perl -MCPAN -e 'install SVN::Notify::HTML::ColorDiff'
</pre>
<p>The post-commit script</p>
<pre name="code" class="sh">
#!/bin/sh
for i in 'email1@domain.co.uk' 'email2@domain.com'
do
	svnnotify --repos-path "$1" \
		--revision "$2" \
		--to $i \
		--from <a href="mailto:account@example.co.uk">account@example.co.uk</a> \
		--handler HTML::ColorDiff -d \
done
</pre>]]></content:encoded>
			<wfw:commentRss>http://blog.yeticode.co.uk/2009/10/svn-notify-by-email/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>More Django Plugin Stuff</title>
		<link>http://blog.yeticode.co.uk/2009/08/more-django/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=more-django</link>
		<comments>http://blog.yeticode.co.uk/2009/08/more-django/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 19:34:38 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Development Log]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mono]]></category>
		<category><![CDATA[MonoDevelop]]></category>

		<guid isPermaLink="false">http://blog.yeticode.co.uk/?p=553</guid>
		<description><![CDATA[So I&#8217;ve been working more on the support for django within monodevelop. Heres some screenshots of it.]]></description>
			<content:encoded><![CDATA[<p><a href="http://static.yeticode.co.uk/blog/images/posts/monodevelop-django-2.png" rel="lightbox"><img alt="MonoDevelop Django" src="http://static.yeticode.co.uk/blog/images/posts/monodevelop-django-2-thumb.png"/></a></p>
<p>So I&#8217;ve been working more on the support for django within monodevelop. Heres some screenshots of it.</p>
<p><img alt="MonoDevelop Django" src="http://static.yeticode.co.uk/blog/images/posts/monodevelop-django-3.png"/></p>
<p><img alt="MonoDevelop Django" src="http://static.yeticode.co.uk/blog/images/posts/monodevelop-django-4.png"/></p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeticode.co.uk/2009/08/more-django/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Three Mobile On Linux Update</title>
		<link>http://blog.yeticode.co.uk/2009/06/three-mobile-on-linux-update/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=three-mobile-on-linux-update</link>
		<comments>http://blog.yeticode.co.uk/2009/06/three-mobile-on-linux-update/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 08:12:35 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Development Log]]></category>
		<category><![CDATA[Fedora 11]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mobile Broadband]]></category>
		<category><![CDATA[Network Manager]]></category>

		<guid isPermaLink="false">http://blog.yeticode.co.uk/?p=298</guid>
		<description><![CDATA[UPDATE: After installing three mobile on Fedora 11 I noticed that the DNS servers had changed. The new one are as follows DNS Server: 4.2.2.1,4.2.2.2 One thing that I forgot to mention in my previous post about setting up mobile broadband on Fedora 11 is that three do not always set the correct DNS servers. [...]]]></description>
			<content:encoded><![CDATA[<p><b>UPDATE: After installing three mobile on Fedora 11 I noticed that the DNS servers had changed. The new one are as follows</p>
<p>DNS Server: 4.2.2.1,4.2.2.2</b></p>
<p><a href="http://www.amazon.co.uk/gp/product/B0012USMHK?ie=UTF8&#038;tag=yetiblog-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=B0012USMHK"><img border="0" src="http://static.yeticode.co.uk/blog/images/three_mobile_broadband.jpg" style="float:left;"></a><img src="http://www.assoc-amazon.co.uk/e/ir?t=worldoverride-21&#038;l=as2&#038;o=2&#038;a=B0012USMHK" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
<p>One thing that I forgot to mention in my previous post about <a href="http://blog.yeticode.co.uk/2009/06/fedora-11-and-mobile-broadband/">setting up mobile broadband on Fedora 11</a> is that three do not always set the correct DNS servers. This was annoying as it would appear that the connection was working however any attempt to access a website would timeout. In order to do so edit the connection via NetworkManager and add in the follow DNS server in the IPv4 tab.</p>
<p>DNS Server: 172.31.76.69, 172.31.140.69</p>
<p>The server addresses are comma seperated so you can add DNS server of your choice. I have used the DNS servers that Three normally set up you can use OpenDNS.</p>
<p><img src="http://static.yeticode.co.uk/blog/images/posts/three_co_uk_broadband.png" alt="Network Manager IPv4 Settings"/></p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeticode.co.uk/2009/06/three-mobile-on-linux-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora 11 and Mobile Broadband</title>
		<link>http://blog.yeticode.co.uk/2009/06/fedora-11-and-mobile-broadband/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=fedora-11-and-mobile-broadband</link>
		<comments>http://blog.yeticode.co.uk/2009/06/fedora-11-and-mobile-broadband/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 20:33:51 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Development Log]]></category>
		<category><![CDATA[Fedora 11]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mobile Broadband]]></category>

		<guid isPermaLink="false">http://blog.yeticode.co.uk/?p=240</guid>
		<description><![CDATA[When I was previously running F10 I managed to get my three mobile broadband setup without any hassle, which I conveniently forgot how to do when I install Fedora 11. After a quick search I found a comment on the redhat bugzilla. I have the ZTE MF622 usb modem from Three. Here the steps I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.co.uk/gp/product/B0012USMHK?ie=UTF8&#038;tag=yetiblog-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=B0012USMHK"><img border="0" src="http://static.yeticode.co.uk/blog/images/three_mobile_broadband.jpg" style="float:left;"></a><img src="http://www.assoc-amazon.co.uk/e/ir?t=worldoverride-21&#038;l=as2&#038;o=2&#038;a=B0012USMHK" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
<p>When I was previously running F10 I managed to get my three mobile broadband setup without any hassle, which I conveniently forgot how to do when I install Fedora 11. After a quick search I found a comment on the <a href="https://bugzilla.redhat.com/show_bug.cgi?id=496099#c5">redhat bugzilla</a>. I have the ZTE MF622 usb modem from Three. Here the steps I followed to get it up and running.</p>
<p>Install usb_modeswitch, this changes the device from a CD Drive to a usb modem. </p>
<pre>
#as root
yum install usb_modeswitch
</pre>
<p>Edit the /etc/usb_modeswitch.conf and uncomment the section that related to your specific modem. This tells usb_modeswitch which modem you are using.</p>
<pre>
# ZTE MF622 (aka "Onda MDC502HS")
#
# Contributor: "andylog"

DefaultVendor=  0x19d2
DefaultProduct= 0x2000

TargetVendor=   0x19d2
TargetProduct=  0x0002

MessageEndpoint=0x04
</pre>
<p>Now edit the udev rules to add a new line to automatically call the usb_modeswitch when the device is plugged in.</p>
<pre>
vi /etc/udev/rules.d/70-persistent-cd.rules
</pre>
<p>Append the following to the end of the file</p>
<pre>
ACTION=="add", ATTRS{idVendor}=="19d2", ATTRS{idProduct}=="2000",
RUN+="/usr/bin/usb_modeswitch"
</pre>
<p>Once this has been done run the following and then plug your modem in</p>
<pre>
udevadm control --reload-rules
</pre>
<p>You should now be ready to create a mobile broadband connection via NetworkManager.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeticode.co.uk/2009/06/fedora-11-and-mobile-broadband/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fedora 11 is out, upgrade time</title>
		<link>http://blog.yeticode.co.uk/2009/06/fedora-11-is-out-upgrade-time/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=fedora-11-is-out-upgrade-time</link>
		<comments>http://blog.yeticode.co.uk/2009/06/fedora-11-is-out-upgrade-time/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 16:04:10 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Development Log]]></category>
		<category><![CDATA[Fedora 10]]></category>
		<category><![CDATA[Fedora 11]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.yeticode.co.uk/?p=233</guid>
		<description><![CDATA[So Fedora 11 has been out for a little while now and I&#8217;m getting ready to upgrade. Previously I have tried using the upgrade facility however I normally end up having to perform a clean install. So now I&#8217;m currently backing up my home directories to my external storage ready to wipe everything and start [...]]]></description>
			<content:encoded><![CDATA[<p>So Fedora 11 has been out for a little while now and I&#8217;m getting ready to upgrade. Previously I have tried using the upgrade facility however I normally end up having to perform a clean install. So now I&#8217;m currently backing up my home directories to my external storage ready to wipe everything and start again. Ill update how this goes.</p>
<p><b>Update:</b> Install was painless simple selecting of packages that wanted to install. However my internet connection was playing up which meant that it hung whilst trying to download packages from the net. Currently installing the nvidia packages from <a href="http://rpmfusion.org/">rpmfusion</a>.</p>
<p><b>Update</b> Everything is up and running and I have restored all my data back on. A few problems and annoyances. There is a problem with the non-free nvidia driver. The only other annoyance is the System -> Preferences menu is not split into further sub menus which creates a menu that doesn&#8217;t fit on my screen. I have yet to have a proper play with everything else but so far it all looks good.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeticode.co.uk/2009/06/fedora-11-is-out-upgrade-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu UK Podcast</title>
		<link>http://blog.yeticode.co.uk/2009/05/ubuntu-uk-podcast/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ubuntu-uk-podcast</link>
		<comments>http://blog.yeticode.co.uk/2009/05/ubuntu-uk-podcast/#comments</comments>
		<pubDate>Tue, 26 May 2009 22:44:07 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Development Log]]></category>
		<category><![CDATA[Brighton Uni]]></category>
		<category><![CDATA[cctray]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.yeticode.co.uk/?p=219</guid>
		<description><![CDATA[So despite being a fedora user I&#8217;ve recently checked out the uk ubuntu podcast after my lecturer touted my cctray project to them. I&#8217;ve tried listening to tech podcasts before and most of them are dull and tedious to listen to. However the guys who do the ubuntu uk podcast are easy to listen to [...]]]></description>
			<content:encoded><![CDATA[<p>So despite being a fedora user I&#8217;ve recently checked out the <a href="http://podcast.ubuntu-uk.org/">uk ubuntu podcast</a> after my lecturer touted my <a href="http://blog.yeticode.co.uk/cctray">cctray</a> project to them. I&#8217;ve tried listening to tech podcasts before and most of them are dull and tedious to listen to. However the guys who do the ubuntu uk podcast are easy to listen to and quite entertaining. Definitely take the time to check out their latest podcast you won&#8217;t be disappointed. </p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeticode.co.uk/2009/05/ubuntu-uk-podcast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New GTK# Project</title>
		<link>http://blog.yeticode.co.uk/2009/05/new-gtk-project/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=new-gtk-project</link>
		<comments>http://blog.yeticode.co.uk/2009/05/new-gtk-project/#comments</comments>
		<pubDate>Wed, 13 May 2009 00:59:22 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Development Log]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mono]]></category>

		<guid isPermaLink="false">http://blog.yeticode.co.uk/?p=202</guid>
		<description><![CDATA[I&#8217;ve started a new project, RssNotify, to try and learn more about developing applications using GTK. I&#8217;ll still be developing cctray-gtk as this project is useful, but the RssNotify is more of a project to satisfy my curiosity. The RssNotify project aims to provide an easy way for a user to receive notifications when an [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve started a new project, <a href="https://launchpad.net/rssnotify">RssNotify</a>, to try and learn more about developing applications using GTK. I&#8217;ll still be developing cctray-gtk as this project is useful, but the RssNotify is more of a project to satisfy my curiosity.</p>
<p>The RssNotify project aims to provide an easy way for a user to receive notifications when an rss feed has been updated. the idea is to use notify-sharp to display the new news items. The rest of the interface will be used to try to explore the features widgets that GTK# offers.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeticode.co.uk/2009/05/new-gtk-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CCTray updates and Mono musings</title>
		<link>http://blog.yeticode.co.uk/2009/05/cctray-updates-and-mono-musings/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=cctray-updates-and-mono-musings</link>
		<comments>http://blog.yeticode.co.uk/2009/05/cctray-updates-and-mono-musings/#comments</comments>
		<pubDate>Wed, 06 May 2009 19:15:44 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Development Log]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[cctray]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mono]]></category>

		<guid isPermaLink="false">http://blog.yeticode.co.uk/?p=184</guid>
		<description><![CDATA[Impleneted some more to the CCTray-gtk project with the ability to add build servers that communicate over HTTP. This did involve commenting out some of the code in the CCTrayLib project, which was unavoidable. The issue occurred as the library added a delegate to the Service point manager ServicePointManager.ServerCertificateValidationCallback = delegate{ return true; } These [...]]]></description>
			<content:encoded><![CDATA[<p>Impleneted some more to the CCTray-gtk project with the ability to add build servers that communicate over HTTP. This did involve commenting out some of the code in the CCTrayLib project, which was unavoidable. The issue occurred as the library added a delegate to the Service point manager </p>
<pre name="code" class="c-sharp">
ServicePointManager.ServerCertificateValidationCallback = delegate{ return true; }
</pre>
<p>These were causing an exception to be thrown as it is currently not implemented in mono. This so far is the only part of mono that I&#8217;ve found that has caused any problems.</p>
<p><a href="https://bugzilla.novell.com/show_bug.cgi?id=346561">https://bugzilla.novell.com/show_bug.cgi?id=346561</a></p>
<p>I&#8217;ve also started to implement the ability to remove a project, at the moment it removes the project from the preferences window but does not yet remove the associated project monitor or remove it from the main window&#8217;s treeview.</p>
<p>Once this has been implemented I will create a release or something for testing.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeticode.co.uk/2009/05/cctray-updates-and-mono-musings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
