<?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>Pratthost Developer Zone &#187; Uncategorized</title>
	<atom:link href="http://devzone.pratthost.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://devzone.pratthost.com</link>
	<description>A resource for web developers</description>
	<lastBuildDate>Tue, 29 Jun 2010 18:47:11 +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>Magento: Add Javascript to Home Page Only (Or Any CMS Page)</title>
		<link>http://devzone.pratthost.com/2010/03/08/magento-add-javascript-to-home-page-only-or-any-cms-page/</link>
		<comments>http://devzone.pratthost.com/2010/03/08/magento-add-javascript-to-home-page-only-or-any-cms-page/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 19:49:26 +0000</pubDate>
		<dc:creator>Josh Pratt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://devzone.pratthost.com/?p=382</guid>
		<description><![CDATA[Have you ever needed to include a javascript file to the home page only to run that sweet slideshow you have displayed (or any other reason)? Fortunately, you don&#8217;t have to modify any of the layout files, or add it to your head.phtml file. CMS pages in Magento allow you to modify the layout XML [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-60" title="Magento Icon" src="http://devzone.pratthost.com/wp-content/uploads/2008/09/magento_icon.jpg" alt="Magento Icon" width="67" height="67" /></p>
<p>Have you ever needed to include a javascript file to the home page only to run that sweet slideshow you have displayed (or any other reason)?  Fortunately, you don&#8217;t have to modify any of the layout files, or add it to your head.phtml file.  CMS pages in Magento allow you to modify the layout XML specific to that page.  So, all you need to do is open up the CMS page in Magento that you want to add the javascript to, click on the &#8220;Custom Design&#8221; tab on the left, and in the &#8220;Layout Update XML&#8221; field add the following:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;reference</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;head&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;addItem&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;type<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>skin_js<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/type<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;script<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>yourfile.js<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/script<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/reference<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>Or, if you want to just put the javascript in the /js/ directory of your app, you can change the &#8220;skin_js&#8221; to just &#8220;js&#8221;.  </p>
]]></content:encoded>
			<wfw:commentRss>http://devzone.pratthost.com/2010/03/08/magento-add-javascript-to-home-page-only-or-any-cms-page/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Magento:  Import Tier Pricing using API</title>
		<link>http://devzone.pratthost.com/2010/03/04/magento-import-tier-pricing-using-api/</link>
		<comments>http://devzone.pratthost.com/2010/03/04/magento-import-tier-pricing-using-api/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 16:52:41 +0000</pubDate>
		<dc:creator>Josh Pratt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://devzone.pratthost.com/?p=367</guid>
		<description><![CDATA[Yet another thing that would be nice if Magento allowed you to import through the admin interface. But, at least there is the API to utilize, and fortunately importing Tier Pricing for products is quite easy. I will provide you with a script and CSV format to get started quickly. Important Note: Be sure that [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-60" title="Magento Icon" src="http://devzone.pratthost.com/wp-content/uploads/2008/09/magento_icon.jpg" alt="Magento Icon" width="67" height="67" /></p>
<p>Yet another thing that would be nice if Magento allowed you to import through the admin interface.  But, at least there is the API to utilize, and fortunately importing Tier Pricing for products is quite easy.  I will provide you with a script and CSV format to get started quickly.</p>
<p><strong>Important Note:</strong> Be sure that wherever you are running the script, you have SOAP installed/enabled.  You can run it from anywhere that has it, as you are providing the script with a URL of a Magento installation.  If your server doesn&#8217;t have it, you can install PHP and SOAP on your local machine and run it off of there if you&#8217;d like.</p>
<p>First thing you are going to need to do, if you haven&#8217;t done it already, is to setup an API user in your installation of Magento.  Go to System &gt;&gt; Web Services &gt;&gt; Users and setup an account.  Be sure that the role you give that user has access to tier pricing.</p>
<p>Next, create a PHP file where ever you want.  I chose to put it in /api-scripts/ and I called it &#8220;tier-pricing-import.php&#8221;.  Be sure to replace the four values I&#8217;ve highlighted with your own values:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #990000;">error_reporting</span><span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">E_ALL</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">ini_set</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'display_errors'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'1'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$proxy</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> SoapClient<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://[YOUR-WEBSITE-URL]/api/soap/?wsdl'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$sessionId</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$proxy</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">login</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'[YOUR-WEBSERVICE-USERNAME]'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'[YOUR-WEBSERVICE-PASSWORD]'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$row</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$handle</span> <span style="color: #339933;">=</span> <span style="color: #990000;">fopen</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'[YOUR-CSV-FILENAME].csv'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'r'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span> <span style="color: #339933;">=</span> <span style="color: #990000;">fgetcsv</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$handle</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">30</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">','</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!==</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$row</span> <span style="color: #339933;">!=</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$tierPrices</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$sku</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$data</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000088;">$tierPrices</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
            <span style="color: #0000ff;">'website'</span>           <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$data</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>
            <span style="color: #0000ff;">'customer_group_id'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$data</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>
            <span style="color: #0000ff;">'qty'</span>               <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$data</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">3</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>
            <span style="color: #0000ff;">'price'</span>             <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$data</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">4</span><span style="color: #009900;">&#93;</span>
        <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        try <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$proxy</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">call</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$sessionId</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'product_tier_price.update'</span><span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$sku</span><span style="color: #339933;">,</span> <span style="color: #000088;">$tierPrices</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span> catch <span style="color: #009900;">&#40;</span>Exception <span style="color: #000088;">$e</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$errors</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">'Error for SKU '</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$sku</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">': '</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$e</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getMessage</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000088;">$row</span><span style="color: #339933;">++;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Finally, create your CSV.  You&#8217;ll want 5 columns:</p>
<ul>
<li>website_id: Integer value for your website id.  Use &#8216;all&#8217; for all websites</li>
<li>cust_group: Integer value for the customer group it will be applied to.  Use &#8216;all&#8217; to apply it to all groups</li>
<li>sku: The product sku that the tier pricing will be applied to</li>
<li>price_qty: The quantity the price is applied to (x and above)</li>
<li>price: The price</li>
</ul>
<p>Be sure to include the header row.  Here is an example of how the csv should look:</p>
<table border="1">
<tr>
<td>website_id</td>
<td>cust_group</td>
<td>sku</td>
<td>price_qty</td>
<td>price</td>
</tr>
<tr>
<td>1</td>
<td>3</td>
<td>XB60</td>
<td>10</td>
<td>25.99</td>
</tr>
<tr>
<td>1</td>
<td>3</td>
<td>XB60</td>
<td>50</td>
<td>20.99</td>
</tr>
<tr>
<td>all</td>
<td>all</td>
<td>RDX300</td>
<td>15</td>
<td>8</td>
</tr>
</table>
<p>
Just include the csv in the same directory as your php file, then in your browser, type in the URL of the php file and run it.  It will import your tier pricing very quickly.  I haven&#8217;t built in any sort of messages that let you know when it&#8217;s done, or if there were any errors or anything.  This is as bare-bones as it gets, but it works as needed.  I hope you find it useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://devzone.pratthost.com/2010/03/04/magento-import-tier-pricing-using-api/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Magento 1.4 Released</title>
		<link>http://devzone.pratthost.com/2010/03/02/magento-1-4-released/</link>
		<comments>http://devzone.pratthost.com/2010/03/02/magento-1-4-released/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 14:44:46 +0000</pubDate>
		<dc:creator>Josh Pratt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://devzone.pratthost.com/?p=365</guid>
		<description><![CDATA[It&#8217;s a bit late to be posting this, as 1.4 was released at least a couple weeks ago now. But, I just wanted to at least comment on it. I am extremely thrilled at some of the improvements. There are too many to list and discuss now, so if you want a full list, you [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://devzone.pratthost.com/wp-content/uploads/2008/09/magento_icon.jpg" alt="Magento Icon" title="Magento Icon" width="67" height="67" class="alignleft size-full wp-image-60" /></p>
<p>It&#8217;s a bit late to be posting this, as 1.4 was released at least a couple weeks ago now.  But, I just wanted to at least comment on it.  I am extremely thrilled at some of the improvements.  There are too many to list and discuss now, so if you want a full list, you can check it out on <a href="http://www.magentocommerce.com/download/release_notes">Magento&#8217;s website</a>.</p>
<p>Perhaps the best improvement has been done with the addition of the WYSIWYG built-in to Magento (we finally don&#8217;t have to use the Fontis or Bouncing Orange extensions!).  The widgets are also awesome, and really extends the usability and flexibility for clients.</p>
<p>Another much appreciated, but small fix, is the ability for Magento to remember what you were trying to do in the backend.  Pre-1.4, if your admin session timed out and you had to log back in, you would be sent to the dashboard, no matter where you were at before.  1.4 now knows what you were clicking on, and sends you there after you login.</p>
<p>They also finally added what they call &#8220;custom variables&#8221;.  This allows you to create variables such as a company phone number or address.  You can then use the variable call on your transactional email templates and if you ever need to edit the phone number or address, you only have to do it in one place, instead of on every email.</p>
<p>There will always be a list of things that the community wishes Magento had that 1.4 still doesn&#8217;t have.  But, let&#8217;s look at what it does have (which is quite impressive), remember that it just keeps getting better over time, and also remember that the price tag is $0.  Don&#8217;t forget that you don&#8217;t have to use OSCommerce or ZenCart anymore too.</p>
]]></content:encoded>
			<wfw:commentRss>http://devzone.pratthost.com/2010/03/02/magento-1-4-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trying It Again</title>
		<link>http://devzone.pratthost.com/2010/03/01/trying-it-again/</link>
		<comments>http://devzone.pratthost.com/2010/03/01/trying-it-again/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 04:11:29 +0000</pubDate>
		<dc:creator>Josh Pratt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://devzone.pratthost.com/?p=363</guid>
		<description><![CDATA[My boss today encouraged all of us to make a point to contribute more frequently to the web community at our staff meeting. I&#8217;ve been back in more development, especially with Magento lately, so it seems that I should try and revive the blog. This will be my second attempt to get back into regular [...]]]></description>
			<content:encoded><![CDATA[<p>My boss today encouraged all of us to make a point to contribute more frequently to the web community at our staff meeting.  I&#8217;ve been back in more development, especially with Magento lately, so it seems that I should try and revive the blog.  This will be my second attempt to get back into regular updates, so no promises.  I am glad to see though that over 200 people regularly visit my website each day, so it&#8217;s still useful.  That is encouraging.</p>
]]></content:encoded>
			<wfw:commentRss>http://devzone.pratthost.com/2010/03/01/trying-it-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Voice: Anyone Have Any Invites?</title>
		<link>http://devzone.pratthost.com/2009/11/17/google-voice-anyone-have-any-invites/</link>
		<comments>http://devzone.pratthost.com/2009/11/17/google-voice-anyone-have-any-invites/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 02:03:22 +0000</pubDate>
		<dc:creator>Josh Pratt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://devzone.pratthost.com/?p=352</guid>
		<description><![CDATA[I was recently invited by a friend to join Google Voice. I am quite shocked at how cool this service is, and how easy it is to use. Perhaps I just haven&#8217;t experienced something like this before (well, I haven&#8217;t), but it seemed like I jumped 10 years into the future as far as the [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://devzone.pratthost.com/wp-content/uploads/2009/11/google-voice-logo.png" alt="Google Voice" title="Google Voice" width="67" height="27" class="alignleft size-full wp-image-60" /></p>
<p>I was recently invited by a friend to join Google Voice.  I am quite shocked at how cool this service is, and how easy it is to use.  Perhaps I just haven&#8217;t experienced something like this before (well, I haven&#8217;t), but it seemed like I jumped 10 years into the future as far as the process in setting it up.</p>
<p>I won&#8217;t go into detail now about it, as I&#8217;m still learning the ropes.  Maybe another post later.  But, I have a few people that I know that could really use it, and I know there are plenty of unused invites out there still.  So, if you would be willing to part with one or two, please let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://devzone.pratthost.com/2009/11/17/google-voice-anyone-have-any-invites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back Again!</title>
		<link>http://devzone.pratthost.com/2009/10/09/back-again/</link>
		<comments>http://devzone.pratthost.com/2009/10/09/back-again/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 12:36:02 +0000</pubDate>
		<dc:creator>Josh Pratt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://devzone.pratthost.com/?p=342</guid>
		<description><![CDATA[It&#8217;s been quite a long time since I last updated my blog. But, I think I&#8217;m ready for another season of blogging for a while. And to kick it off &#8211; I am going to post the Magento Multiple Image Import Module that I created the other day. Expect it soon!]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been quite a long time since I last updated my blog.  But, I think I&#8217;m ready for another season of blogging for a while.  And to kick it off &#8211; I am going to post the Magento Multiple Image Import Module that I created the other day.  Expect it soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://devzone.pratthost.com/2009/10/09/back-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basecamp: Todo Templates Script</title>
		<link>http://devzone.pratthost.com/2009/02/08/basecamp-todo-templates-script/</link>
		<comments>http://devzone.pratthost.com/2009/02/08/basecamp-todo-templates-script/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 21:26:58 +0000</pubDate>
		<dc:creator>Josh Pratt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://devzone.pratthost.com/?p=337</guid>
		<description><![CDATA[If you want an easy way to add and manage todo lists templates for your projects (if they tend to have the same type of checklists &#8211; such as website pre-launch checklists), then this script is for you. It&#8217;s a simple method of maintaining todo list templates, and adding them to any of the projects [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://devzone.pratthost.com/wp-content/uploads/2008/10/icon_basecamp.jpg" alt="" title="Basecamp Icon" width="68" height="68" class="alignleft size-medium wp-image-181" /></p>
<p> If you want an easy way to add and manage todo lists templates for your projects (if they tend to have the same type of checklists &#8211; such as website pre-launch checklists), then this script is for you.  It&#8217;s a simple method of maintaining todo list templates, and adding them to any of the projects in your Basecamp account, with ease.</p>
<p>What you do is simply create a new project specifically for keeping your todo lists under your company in Basecamp.  You then supply the script with that project id, and your Basecamp login information, and you are set to go.  Simply add some todo lists and items, then navigate to the script on your server, and it is dynamically populated for you.</p>
<p>You can check out the details by clicking the link above in the page navigation or click the following to read more details and download the <a href="http://devzone.pratthost.com/basecamp-todo-templates/">Basecamp Todo List Template</a> script.</p>
<p>If you have any questions, or if you have any feature requests, please post a comment.  I hope you will find it a useful tool!</p>
]]></content:encoded>
			<wfw:commentRss>http://devzone.pratthost.com/2009/02/08/basecamp-todo-templates-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
