<?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>Rickey Whitworth&#039;s Blog &#187; Development</title>
	<atom:link href="http://www.whitworth.org/category/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.whitworth.org</link>
	<description>insights from managing a microsoft enterprise infrastructure</description>
	<lastBuildDate>Tue, 22 Jun 2010 17:12:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Beth Massi &#8211; Sharing the goodness that is VB : Simple Validation with LINQ to SQL Classes</title>
		<link>http://www.whitworth.org/2009/09/28/beth-massi-sharing-the-goodness-that-is-vb-simple-validation-with-linq-to-sql-classes/</link>
		<comments>http://www.whitworth.org/2009/09/28/beth-massi-sharing-the-goodness-that-is-vb-simple-validation-with-linq-to-sql-classes/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 17:50:48 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Linq]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/2009/09/28/beth-massi-sharing-the-goodness-that-is-vb-simple-validation-with-linq-to-sql-classes/</guid>
		<description><![CDATA[&#160;
In the last few posts on LINQ to SQL I&#8217;ve showed how to set up an object model using the O/R designer and how to handle a couple data binding scenarios with Comboboxes here and here. Last post on this topic we implemented a one-to-many data entry form and I showed how to work with [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<blockquote><p>In the last few posts on LINQ to SQL I&#8217;ve showed how to set up an object model using the O/R designer and how to handle a couple data binding scenarios with Comboboxes <a href="http://blogs.msdn.com/bethmassi/archive/2008/02/06/related-data-binding-and-comboboxes-with-linq-to-sql.aspx">here</a> and <a href="http://blogs.msdn.com/bethmassi/archive/2008/02/07/creating-lookup-lists-with-linq-to-sql.aspx">here</a>. <a href="http://blogs.msdn.com/bethmassi/archive/2008/02/19/one-to-many-master-detail-forms-with-linq-to-sql.aspx">Last post</a> on this topic we implemented a one-to-many data entry form and I showed how to work with stored procs as well as how to properly configure delete behaviors. In this post I want to explore how to easily add validation rules to our LINQ to SQL classes and how we can get these rules automatically displayed in the UI. </p>
</blockquote>
<p><a href="http://blogs.msdn.com/bethmassi/archive/2008/02/25/simple-validation-with-linq-to-sql-classes.aspx">Beth Massi &#8211; Sharing the goodness that is VB : Simple Validation with LINQ to SQL Classes</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2009/09/28/beth-massi-sharing-the-goodness-that-is-vb-simple-validation-with-linq-to-sql-classes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VS 2008 Nested Master Page Support &#8211; ScottGu&#8217;s Blog</title>
		<link>http://www.whitworth.org/2009/09/24/vs-2008-nested-master-page-support-scottgus-blog/</link>
		<comments>http://www.whitworth.org/2009/09/24/vs-2008-nested-master-page-support-scottgus-blog/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 21:02:29 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/2009/09/24/vs-2008-nested-master-page-support-scottgus-blog/</guid>
		<description><![CDATA[&#160;
&#34;Master Page&#34; support was one of the most popular features introduced with ASP.NET 2.0, and is one of those features that almost every new ASP.NET project now uses to deliver consistent layout template support across a web site.
One of the cooler scenarios that ASP.NET 2.0 supports is the ability to have &#34;nested master pages&#34; &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<blockquote><p>&quot;Master Page&quot; support was one of the most popular features introduced with ASP.NET 2.0, and is one of those features that almost every new ASP.NET project now uses to deliver consistent layout template support across a web site.</p>
<p>One of the cooler scenarios that ASP.NET 2.0 supports is the ability to have &quot;nested master pages&quot; &#8211; where you can create a root master page for a site that defines a site&#8217;s overall layout, and then create nested master pages that are based on the root master and further customize the layout (for example: you could create a SingleColumn.Master and TwoColumn.Master that defined 1 or 2 column layout structures based on the root master template).&#160; This nested master page feature is extremely flexible, and enables developers and designers to quickly and very cleanly make changes to the layout and organization of a site with minimal code changes and no content duplication.&#160; The one (big) catch, though, is that Visual Studio 2005 doesn&#8217;t really support using nested master pages, and pages based on nested masters can&#8217;t be edited within the VS 2005 WYSIWYG designer.&#160; </p>
<p>The good news is that VS 2008 fully supports nested master pages, and makes using them super easy.&#160; Going forward I recommend that almost all ASP.NET projects should advantage of this feature &#8211; since it can add tremendous flexibility to the UI of your projects.</p>
</blockquote>
<p><a href="http://weblogs.asp.net/scottgu/archive/2007/07/09/vs-2008-nested-master-page-support.aspx">VS 2008 Nested Master Page Support &#8211; ScottGu&#8217;s Blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2009/09/24/vs-2008-nested-master-page-support-scottgus-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ADO.NET team blog</title>
		<link>http://www.whitworth.org/2009/09/22/ado-net-team-blog/</link>
		<comments>http://www.whitworth.org/2009/09/22/ado-net-team-blog/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 21:46:09 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Entity Framework 4]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/2009/09/22/ado-net-team-blog/</guid>
		<description><![CDATA[&#160;
An exciting new Entity Framework Designer feature in Visual Studio 2010 is the ability to generate DDL that will create a database that can store your entity data model. This feature is not only exciting because it brings a long overdue capability to life, but because it is fully extensible: You can take control of [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<blockquote><p>An exciting new Entity Framework Designer feature in Visual Studio 2010 is the ability to generate DDL that will create a database that can store your entity data model. This feature is not only exciting because it brings a long overdue capability to life, but because it is fully extensible: You can take control of the entire process, or plug into parts of it. For example, you can take over the DDL generation step to add support for your database of choice, or to customize the DDL generation process. Alternatively, you can take over the inheritance mapping step and replace our out-of-the box strategy (which is table-per-type) with your own. Or take over the entire mechanism and generate both stored procedure mappings and CRUD stored procedures for all your types. In a future post, we will show you exactly how to do this and provide an implementation of the table-per-hierarchy mapping for you to use or modify.</p>
<p>For now, let’s take a quick look at this feature by taking a very simple model:</p>
<p><a href="http://blogs.msdn.com/blogfiles/adonet/WindowsLiveWriter/SneakPreviewModelFirstintheEntityFrame.0_DC61/clip_image002_2.jpg"><img title="clip_image002" border="0" alt="clip_image002" src="http://blogs.msdn.com/blogfiles/adonet/WindowsLiveWriter/SneakPreviewModelFirstintheEntityFrame.0_DC61/clip_image002_thumb.jpg" width="513" height="378" /></a></p>
</blockquote>
<p><a href="http://blogs.msdn.com/adonet/default.aspx?p=2">ADO.NET team blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2009/09/22/ado-net-team-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The asp:ListView control (Part 1 &#8211; Building a Product Listing Page with Clean CSS UI) &#8211; ScottGu&#8217;s Blog</title>
		<link>http://www.whitworth.org/2009/09/22/the-asplistview-control-part-1-building-a-product-listing-page-with-clean-css-ui-scottgus-blog/</link>
		<comments>http://www.whitworth.org/2009/09/22/the-asplistview-control-part-1-building-a-product-listing-page-with-clean-css-ui-scottgus-blog/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 21:10:49 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/2009/09/22/the-asplistview-control-part-1-building-a-product-listing-page-with-clean-css-ui-scottgus-blog/</guid>
		<description><![CDATA[An old article, but I just found it. 
One of the new controls in ASP.NET 3.5 that I think will be very popular is the &#60;asp:ListView&#62; control.&#160; The ListView control supports the data editing, insertion, deleting, paging and sorting semantics of higher-level controls like the GridView.&#160; But &#8211; unlike the GridView &#8211; it provides you [...]]]></description>
			<content:encoded><![CDATA[<p>An old article, but I just found it. </p>
<blockquote><p>One of the new controls in ASP.NET 3.5 that I think will be very popular is the &lt;asp:ListView&gt; control.&#160; The ListView control supports the data editing, insertion, deleting, paging and sorting semantics of higher-level controls like the GridView.&#160; But &#8211; unlike the GridView &#8211; it provides you with <u>complete control</u> over the html markup generated.&#160; </p>
<p>The ListView control, when combined with the <a href="http://weblogs.asp.net/scottgu/archive/2007/07/25/vs-2008-web-designer-and-css-support.aspx">new Web Designer and rich CSS support in VS 2008</a>, enables you to build much cleaner HTML UI.&#160; Over the next few weeks I&#8217;ll be putting together several blog posts that show off how you can use it.</p>
</blockquote>
<p><a href="http://weblogs.asp.net/scottgu/archive/2007/08/10/the-asp-listview-control-part-1-building-a-product-listing-page-with-clean-css-ui.aspx">The asp:ListView control (Part 1 &#8211; Building a Product Listing Page with Clean CSS UI) &#8211; ScottGu&#8217;s Blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2009/09/22/the-asplistview-control-part-1-building-a-product-listing-page-with-clean-css-ui-scottgus-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baby Smash! by Scott Hanselman</title>
		<link>http://www.whitworth.org/2009/09/08/baby-smash-by-scott-hanselman/</link>
		<comments>http://www.whitworth.org/2009/09/08/baby-smash-by-scott-hanselman/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 20:07:05 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[Code Sample]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/2009/09/08/baby-smash-by-scott-hanselman/</guid>
		<description><![CDATA[&#160;
As babies smash on the keyboard, colored shapes, letters and numbers appear on the screen. Baby Smash will lock out the Windows Key, as well as Ctrl-Esc and Alt-Tab so your baby can&#8217;t get out of the application. Pressing ALT-F4 will exit the application and Shift-Ctrl-Alt-O brings up the options dialog. I&#8217;m always interested in [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<blockquote><p>As babies smash on the keyboard, colored shapes, letters and numbers appear on the screen. Baby Smash will lock out the Windows Key, as well as Ctrl-Esc and Alt-Tab so your baby can&#8217;t get out of the application. Pressing ALT-F4 will exit the application and Shift-Ctrl-Alt-O brings up the options dialog. I&#8217;m always interested in your <a href="http://feedback.babysmash.com/">feedback</a> as well!</p>
<p>I wrote BabySmash! for my 2 year old and 5 month old so they could bang on the keyboards of my Windows machines without hurting anything. It&#8217;s a copy/homage of the very fine and free <a href="http://alphababy.sourceforge.net/">AlphaBaby</a> for the Macintosh. BabySmash is <i>free</i> also and the source code is available on <a href="http://www.hanselman.com/blog">my blog</a> soon. Enjoy! <img src='http://www.whitworth.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</blockquote>
<p><a href="http://www.hanselman.com/babysmash/index.htm">Baby Smash! by Scott Hanselman</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2009/09/08/baby-smash-by-scott-hanselman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MVC Storefront &#171; Rob Conery</title>
		<link>http://www.whitworth.org/2009/09/08/mvc-storefront-rob-conery/</link>
		<comments>http://www.whitworth.org/2009/09/08/mvc-storefront-rob-conery/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 20:02:58 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/2009/09/08/mvc-storefront-rob-conery/</guid>
		<description><![CDATA[&#160;
I don’t like the complexity that’s crept into my application. Not sure how else to put it – but the architecture needs to be shaken a bit so in this episode I tackle this complexity head on using DDD.

MVC Storefront « Rob Conery
]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<blockquote><p>I don’t like the complexity that’s crept into my application. Not sure how else to put it – but the architecture needs to be shaken a bit so in this episode I tackle this complexity head on using DDD.</p>
</blockquote>
<p><a href="http://blog.wekeroad.com/mvc-storefront/">MVC Storefront « Rob Conery</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2009/09/08/mvc-storefront-rob-conery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delay&#8217;s Blog : An &quot;extreme&quot; update for the Silverlight 3 release [HeadTraxExtreme sample application updated]</title>
		<link>http://www.whitworth.org/2009/09/08/delays-blog-an-extreme-update-for-the-silverlight-3-release-headtraxextreme-sample-application-updated/</link>
		<comments>http://www.whitworth.org/2009/09/08/delays-blog-an-extreme-update-for-the-silverlight-3-release-headtraxextreme-sample-application-updated/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 19:58:32 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/2009/09/08/delays-blog-an-extreme-update-for-the-silverlight-3-release-headtraxextreme-sample-application-updated/</guid>
		<description><![CDATA[&#160;
A few weeks ago I wrote about an &#34;app building&#34; exercise we did on the Silverlight Toolkit team to help test our controls and identify potential issues with Silverlight 3 before it was released. My contribution to that effort was HeadTraxExtreme, an organizational hierarchy viewer loosely based on an internal tool. That blog post has [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<blockquote><p>A few weeks ago I wrote about an &quot;app building&quot; exercise we did on the <a href="http://silverlight.codeplex.com/">Silverlight Toolkit</a> team to help test our controls and identify potential issues with Silverlight 3 before it was released. My contribution to that effort was <a href="http://blogs.msdn.com/delay/archive/2009/05/04/going-extreme-with-silverlight-3-sharing-the-source-code-for-a-real-world-sample-application.aspx"><strong>HeadTraxExtreme</strong>, an organizational hierarchy viewer loosely based on an internal tool</a>. That blog post has been fairly popular, and I wanted to update the sample code for the recent release of <a href="http://silverlight.net/">Silverlight 3</a> so people can continue to learn from the sample and so I can walk through a fairly typical application upgrade scenario to show what&#8217;s involved. </p>
</blockquote>
<p><a href="http://blogs.msdn.com/delay/archive/2009/07/14/an-extreme-update-for-the-silverlight-3-release-headtraxextreme-sample-application-updated.aspx">Delay&#8217;s Blog : An &quot;extreme&quot; update for the Silverlight 3 release [HeadTraxExtreme sample application updated]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2009/09/08/delays-blog-an-extreme-update-for-the-silverlight-3-release-headtraxextreme-sample-application-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorials : The Official Microsoft Silverlight Site</title>
		<link>http://www.whitworth.org/2009/09/03/tutorials-the-official-microsoft-silverlight-site/</link>
		<comments>http://www.whitworth.org/2009/09/03/tutorials-the-official-microsoft-silverlight-site/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 18:40:17 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/2009/09/03/tutorials-the-official-microsoft-silverlight-site/</guid>
		<description><![CDATA[&#160;
Data binding is a connection between the User Interface and a business object or other data provider . The User Interface object is called the target, the provider of the data is called the source. 
Data-binding assists with the separation of the User Interface level of your application from the other layers of&#160; your application [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<blockquote><p>Data binding is a connection between the User Interface and a business object or other data provider . The User Interface object is called the <b><i>target</i></b>, the provider of the data is called the <b><i>source</i></b>. </p>
<p>Data-binding assists with the separation of the User Interface level of your application from the other layers of&#160; your application (business objects, data, and so forth). This separation of responsibility is further reinforced by decoupling the UI target from its source through&#160; the use of a Binding object.</p>
<p>The binding object can be thought of as a black box with a universal connectors on one side for the target and on the other side for the source. There are switches on top, the most important of which is the Data Binding Mode switch which determines which way the data will flow.</p>
</blockquote>
<p><a href="http://silverlight.net/learn/tutorials/databinding.aspx">Tutorials : The Official Microsoft Silverlight Site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2009/09/03/tutorials-the-official-microsoft-silverlight-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio Magazine Online &#124; On VB: XML Literals, WCF and LINQ</title>
		<link>http://www.whitworth.org/2009/04/14/visual-studio-magazine-online-on-vb-xml-literals-wcf-and-linq/</link>
		<comments>http://www.whitworth.org/2009/04/14/visual-studio-magazine-online-on-vb-xml-literals-wcf-and-linq/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 18:11:19 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Linq]]></category>

		<guid isPermaLink="false">http://www.whitworth.org/2009/04/14/visual-studio-magazine-online-on-vb-xml-literals-wcf-and-linq/</guid>
		<description><![CDATA[Great article detailing how 3 technologies, xml literals, wcf and linq work together. After reading this article, I was quickly able to create an unordered list based on a sql server table using linq with xml literals. 
One of the great things about .NET Framework is that there is so much included to make your [...]]]></description>
			<content:encoded><![CDATA[<p>Great article detailing how 3 technologies, xml literals, wcf and linq work together. After reading this article, I was quickly able to create an unordered list based on a sql server table using linq with xml literals. </p>
<blockquote><p>One of the great things about .NET Framework is that there is so much included to make your life as a developer easier. Over the past few years we&#8217;ve been flooded with new capabilities. Staying current with all of these tools is nearly a full-time job. So what&#8217;s a developer to do? I choose to pick the tools that apply directly to a problem I need to solve and use those new capabilities to enhance my productivity. Even more power and flexibility comes when we can take several of these capabilities and combine them for a unique solution to a problem. </p>
<p>We&#8217;re going to look specifically at three pieces of the framework that can be combined to provide a new technique. This technique helps in writing more responsive ASP.NET pages, while at the same time making the code more readable. The three technologies are: XML literals, Windows Communication Foundation (WCF) Factory Services and LINQ. XML literals and LINQ are new in Visual Basic 9 (VB9). LINQ gives us a common syntax for querying just about any data, be it SQL, XML or objects. Even though WCF has been here for a while, the out-of-the-box readiness for building factory services is little-known. Here we&#8217;ll show you how to create WCF services without changes to config files for endpoints, behaviors and bindings. </p>
</blockquote>
<p><a href="http://visualstudiomagazine.com/columns/article.aspx?editorialsid=3053">Visual Studio Magazine Online | On VB: XML Literals, WCF and LINQ</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2009/04/14/visual-studio-magazine-online-on-vb-xml-literals-wcf-and-linq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Collection of Links for simple .net bar charts</title>
		<link>http://www.whitworth.org/2008/08/07/a-collection-of-links-for-simple-net-bar-charts/</link>
		<comments>http://www.whitworth.org/2008/08/07/a-collection-of-links-for-simple-net-bar-charts/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 14:10:03 +0000</pubDate>
		<dc:creator>rwhitworth</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blog.whitworth.org/?p=425</guid>
		<description><![CDATA[I had a need recently to create a simple bar chart in a .net app, so here are a few helpful links I used:
http://wiki.lessthandot.com/index.php/ASP.NET:_Drawing_images_and_bar_charts_with_System.Drawing
http://biztechmagazine.com/print_friendly.asp?item_id=270
]]></description>
			<content:encoded><![CDATA[<p>I had a need recently to create a simple bar chart in a .net app, so here are a few helpful links I used:</p>
<p><a href="http://wiki.lessthandot.com/index.php/ASP.NET:_Drawing_images_and_bar_charts_with_System.Drawing">http://wiki.lessthandot.com/index.php/ASP.NET:_Drawing_images_and_bar_charts_with_System.Drawing</a></p>
<p><a href="http://biztechmagazine.com/print_friendly.asp?item_id=270">http://biztechmagazine.com/print_friendly.asp?item_id=270</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.whitworth.org/2008/08/07/a-collection-of-links-for-simple-net-bar-charts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.447 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-07-12 23:57:33 -->
