<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3" -->
<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/"
	>

<channel>
	<title>girasquid.com</title>
	<link>http://girasquid.com/blog</link>
	<description>Amass</description>
	<pubDate>Fri, 28 Nov 2008 22:48:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3</generator>
	<language>en</language>
			<item>
		<title>slideLeft and slideRight in jQuery</title>
		<link>http://girasquid.com/blog/2008/11/28/slideleft-and-slideright-in-jquery/</link>
		<comments>http://girasquid.com/blog/2008/11/28/slideleft-and-slideright-in-jquery/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 22:48:00 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[javascript]]></category>

		<category><![CDATA[animate]]></category>

		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://girasquid.com/blog/2008/11/28/slideleft-and-slideright-in-jquery/</guid>
		<description><![CDATA[If you&#8217;ve ever wanted to slideLeft or slideRight in jQuery, you may have noticed that you&#8230;can&#8217;t. You can slideUp and slideDown, but not slideLeft or slideRight. Why is this? I don&#8217;t know. I do know that getting those effects is a single line, though:


obj.animate&#40;&#123;width:'show'&#125;&#41;;
obj.animate&#40;&#123;width:'hide'&#125;&#41;;
obj.animate&#40;&#123;width:'toggle'&#125;&#41;;



Simple, and easy to use. But why isn&#8217;t it in the core?]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve ever wanted to slideLeft or slideRight in jQuery, you may have noticed that you&#8230;can&#8217;t. You can slideUp and slideDown, but not slideLeft or slideRight. Why is this? I don&#8217;t know. I do know that getting those effects is a single line, though:</p>


<div class="wp_syntax"><div class="code"><pre class="javascript javascript" style="font-family:monospace;">obj.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>width<span style="color: #339933;">:</span><span style="color: #3366CC;">'show'</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>;
obj.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>width<span style="color: #339933;">:</span><span style="color: #3366CC;">'hide'</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>;
obj.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>width<span style="color: #339933;">:</span><span style="color: #3366CC;">'toggle'</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>;</pre></div></div>



<p>Simple, <strong>and</strong> easy to use. But why isn&#8217;t it in the core?</p>]]></content:encoded>
			<wfw:commentRss>http://girasquid.com/blog/2008/11/28/slideleft-and-slideright-in-jquery/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wiping and updating your database with Django</title>
		<link>http://girasquid.com/blog/2008/11/19/wiping-and-updating-your-database-with-django/</link>
		<comments>http://girasquid.com/blog/2008/11/19/wiping-and-updating-your-database-with-django/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 17:59:50 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://girasquid.com/blog/2008/11/19/wiping-and-updating-your-database-with-django/</guid>
		<description><![CDATA[Have you ever made changes to your models and needed to wipe your database clean? It&#8217;s a lot easier than one might think:


./manage.py sqlclear &#60;app&#62; &#124; ./manage.py dbshell


]]></description>
			<content:encoded><![CDATA[<p>Have you ever made changes to your models and needed to wipe your database clean? It&#8217;s a lot easier than one might think:</p>


<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">./manage.py sqlclear &lt;app&gt; | ./manage.py dbshell</pre></div></div>


]]></content:encoded>
			<wfw:commentRss>http://girasquid.com/blog/2008/11/19/wiping-and-updating-your-database-with-django/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dumping your Django sqlite database to a file</title>
		<link>http://girasquid.com/blog/2008/10/17/dumping-your-django-sqlite-database-to-a-file/</link>
		<comments>http://girasquid.com/blog/2008/10/17/dumping-your-django-sqlite-database-to-a-file/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 18:01:48 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<category><![CDATA[django]]></category>

		<category><![CDATA[dump]]></category>

		<category><![CDATA[sqlite]]></category>

		<guid isPermaLink="false">http://girasquid.com/blog/2008/10/17/dumping-your-django-sqlite-database-to-a-file/</guid>
		<description><![CDATA[Need to dump your Django project&#8217;s sqlite database to a file? Turns out it&#8217;s as easy as a one-liner:


echo '.dump' &#124; ./manage.py dbshell &#62; dump.sql



]]></description>
			<content:encoded><![CDATA[<p>Need to dump your Django project&#8217;s sqlite database to a file? Turns out it&#8217;s as easy as a one-liner:</p>


<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">echo '.dump' | ./manage.py dbshell &gt; dump.sql</pre></div></div>



]]></content:encoded>
			<wfw:commentRss>http://girasquid.com/blog/2008/10/17/dumping-your-django-sqlite-database-to-a-file/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dispatch tables with PHP</title>
		<link>http://girasquid.com/blog/2008/10/15/dispatch-tables-with-php/</link>
		<comments>http://girasquid.com/blog/2008/10/15/dispatch-tables-with-php/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 03:50:06 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[frustrations]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[wargh]]></category>

		<guid isPermaLink="false">http://girasquid.com/blog/2008/10/15/dispatch-tables-with-php/</guid>
		<description><![CDATA[Dispatch tables are a pain to try and work with in PHP. Apparently 5.3 will support them nicely, but until then you&#8217;re stuck with one of these two options:


// Method 1
$actions = array&#40;'bar' =&#62; create_function&#40;'','baz();'&#41;&#41;;
$actions&#91;$token&#93;&#40;&#41;;
&#160;
// Method 2
$actions = array&#40;'bar' =&#62; 'baz'&#41;;
call_user_func&#40;$actions&#91;$token&#93;&#41;;



It&#8217;s a pain, but that&#8217;s what you have to do.

]]></description>
			<content:encoded><![CDATA[<p>Dispatch tables are a <strong>pain</strong> to try and work with in PHP. Apparently 5.3 will support them nicely, but until then you&#8217;re stuck with one of these two options:</p>


<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// Method 1</span>
<span style="color: #000088;">$actions</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="">'bar'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">create_function</span><span style="color: #009900;">&#40;</span><span style="">''</span><span style="color: #339933;">,</span><span style="">'baz();'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>;
<span style="color: #000088;">$actions</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$token</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>;
&nbsp;
<span style="color: #666666; font-style: italic;">// Method 2</span>
<span style="color: #000088;">$actions</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="">'bar'</span> <span style="color: #339933;">=&gt;</span> <span style="">'baz'</span><span style="color: #009900;">&#41;</span>;
<span style="color: #990000;">call_user_func</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$actions</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$token</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>;</pre></div></div>



<p>It&#8217;s a pain, but that&#8217;s what you have to do.</p>

]]></content:encoded>
			<wfw:commentRss>http://girasquid.com/blog/2008/10/15/dispatch-tables-with-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>301 redirects with Nginx</title>
		<link>http://girasquid.com/blog/2008/10/06/301-redirects-with-nginx/</link>
		<comments>http://girasquid.com/blog/2008/10/06/301-redirects-with-nginx/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 15:41:29 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[django]]></category>

		<category><![CDATA[webdev]]></category>

		<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">http://girasquid.com/blog/2008/10/06/301-redirects-with-nginx/</guid>
		<description><![CDATA[I recently had to put in place some 301 redirects for a few domains, so that they all pointed to one specific domain. When you&#8217;re using Nginx + Apache, this is done by using an Nginx config:


server {
	listen	80;
	server_name .domain.com;
&#160;
	rewrite	^(.*) http://otherdomain.com$1 permanent;
}


]]></description>
			<content:encoded><![CDATA[<p>I recently had to put in place some 301 redirects for a few domains, so that they all pointed to one specific domain. When you&#8217;re using Nginx + Apache, this is done by using an Nginx config:</p>


<div class="wp_syntax"><div class="code"><pre class="nginx" style="font-family:monospace;">server {
	listen	80;
	server_name .domain.com;
&nbsp;
	rewrite	^(.*) http://otherdomain.com$1 permanent;
}</pre></div></div>


]]></content:encoded>
			<wfw:commentRss>http://girasquid.com/blog/2008/10/06/301-redirects-with-nginx/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Recursive Line Count</title>
		<link>http://girasquid.com/blog/2008/10/02/recursive-line-count/</link>
		<comments>http://girasquid.com/blog/2008/10/02/recursive-line-count/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 18:14:41 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[scripting]]></category>

		<category><![CDATA[linecount]]></category>

		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://girasquid.com/blog/2008/10/02/recursive-line-count/</guid>
		<description><![CDATA[I often get curious about just how many lines of code I&#8217;ve written for a particular project. This short snippet will determine that for you, when run from within the project directory:


for file in `find . -type f`; do cat $file; done &#124; wc -l


]]></description>
			<content:encoded><![CDATA[<p>I often get curious about just how many lines of code I&#8217;ve written for a particular project. This short snippet will determine that for you, when run from within the project directory:</p>


<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">for file in `find . -type f`; do cat $file; done | wc -l</pre></div></div>


]]></content:encoded>
			<wfw:commentRss>http://girasquid.com/blog/2008/10/02/recursive-line-count/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to clear the cache in Django</title>
		<link>http://girasquid.com/blog/2008/09/23/how-to-clear-the-cache-in-django/</link>
		<comments>http://girasquid.com/blog/2008/09/23/how-to-clear-the-cache-in-django/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 19:46:41 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<category><![CDATA[django]]></category>

		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://girasquid.com/blog/2008/09/23/how-to-clear-the-cache-in-django/</guid>
		<description><![CDATA[Recently, I was tasked with building a &#8216;clear cache&#8217; button for a Django project. While this is something that I&#8217;m sure a lot of people have approached, none of them seem to have shared their code. Here&#8217;s what I came up with:


1
2
3
4
5
6
7
8
9
10
11
12
from django.core.cache import cache
try:
	cache._cache.clear&#40;&#41;	# in-memory caching
except AttributeError:
	# try filesystem caching next
	old = cache._cull_frequency
	old_max = [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I was tasked with building a &#8216;clear cache&#8217; button for a Django project. While this is something that I&#8217;m sure a lot of people have approached, none of them seem to have shared their code. Here&#8217;s what I came up with:</p>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td class="code"><pre class="python python" style="font-family:monospace;"><span style="color: #ff7700;font-weight:bold;">from</span> django.<span style="color: black;">core</span>.<span style="color: black;">cache</span> <span style="color: #ff7700;font-weight:bold;">import</span> cache
<span style="color: #ff7700;font-weight:bold;">try</span>:
	cache._cache.<span style="color: black;">clear</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>	<span style="color: #808080; font-style: italic;"># in-memory caching</span>
<span style="color: #ff7700;font-weight:bold;">except</span> <span style="color: #008000;">AttributeError</span>:
	<span style="color: #808080; font-style: italic;"># try filesystem caching next</span>
	old = cache._cull_frequency
	old_max = cache._max_entries
	cache._max_entries = 0
	cache._cull_frequency = <span style="color: #ff4500;">1</span>
	cache._cull<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
	cache._cull_frequency = old
	cache._max_entries = old_max</pre></td></tr></table></div>


]]></content:encoded>
			<wfw:commentRss>http://girasquid.com/blog/2008/09/23/how-to-clear-the-cache-in-django/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fixing _default_ VirtualHost overlaps</title>
		<link>http://girasquid.com/blog/2008/09/16/fixing-_default_-virtualhost-overlaps/</link>
		<comments>http://girasquid.com/blog/2008/09/16/fixing-_default_-virtualhost-overlaps/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 17:08:08 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[apache]]></category>

		<category><![CDATA[servers]]></category>

		<category><![CDATA[webapps]]></category>

		<category><![CDATA[webdev]]></category>

		<guid isPermaLink="false">http://girasquid.com/blog/2008/09/16/fixing-_default_-virtualhost-overlaps/</guid>
		<description><![CDATA[I&#8217;m currently working on setting up a server at work, and one of the things that we have been working on adding is a placeholder page for any requests that go to the server but don&#8217;t have a website currently set up for them. I added this configuration file, and symlinked it as 000-default in [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently working on setting up a server at work, and one of the things that we have been working on adding is a placeholder page for any requests that go to the server but don&#8217;t have a website currently set up for them. I added this configuration file, and symlinked it as 000-default in <strong>/etc/apache2/sites-enabled/</strong>:</p>


<div class="wp_syntax"><div class="code"><pre class="apache apache" style="font-family:monospace;">&lt;<span style="color: #000000; font-weight:bold;">VirtualHost</span> *:<span style="color: #ff0000;">8080</span>&gt;
	<span style="color: #00007f;">ServerName</span> *
	<span style="color: #00007f;">LogLevel</span> info
	<span style="color: #00007f;">DocumentRoot</span> /www/placeholder/website/
	<span style="color: #00007f;">ErrorLog</span>  /www/placeholder/logs/error.log
	<span style="color: #00007f;">CustomLog</span> /www/placeholder/logs/access.log combined
&nbsp;
&lt;/<span style="color: #000000; font-weight:bold;">VirtualHost</span>&gt;</pre></div></div>



<p>However, after adding that configuration file and restarting apache, these are the messages I got:</p>


<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;"> * Stopping web server apache2
[Tue Sep 16 16:59:07 2008] [warn] _default_ VirtualHost overlap on port 8080, the first has precedence
   ...done.
 * Starting web server apache2
[Tue Sep 16 16:59:08 2008] [warn] _default_ VirtualHost overlap on port 8080, the first has precedence
   ...done.</pre></div></div>



<p>&#8230;And after that happened, you could <strong>only</strong> access the placeholder site. The fix was simple, however - just add these two lines to your primary <strong>apache2.conf</strong>:</p>


<div class="wp_syntax"><div class="code"><pre class="apache apache" style="font-family:monospace;"><span style="color: #00007f;">ServerName</span> 127.0.0.1
<span style="color: #00007f;">NameVirtualHost</span> *:<span style="color: #ff0000;">8080</span></pre></div></div>



<p>And that&#8217;s all there was to it! Once that was finished, the placeholder page (and all the other pages on that server) worked like a charm.</p>]]></content:encoded>
			<wfw:commentRss>http://girasquid.com/blog/2008/09/16/fixing-_default_-virtualhost-overlaps/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using Capistrano to deploy Rails apps without Source Control</title>
		<link>http://girasquid.com/blog/2008/07/17/using-capistrano-to-deploy-rails-apps-without-source-control/</link>
		<comments>http://girasquid.com/blog/2008/07/17/using-capistrano-to-deploy-rails-apps-without-source-control/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 14:30:17 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[capistrano]]></category>

		<category><![CDATA[deploy]]></category>

		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://girasquid.com/blog/2008/07/17/using-capistrano-to-deploy-rails-apps-without-source-control/</guid>
		<description><![CDATA[Someone I take very seriously does a lot of Ruby on Rails work - and as a result of that, I figured that I should at least take a look at the framework.
Over the weekend, I whipped up a quick little app, without using source control - it&#8217;s a quick project, and I&#8217;m not really [...]]]></description>
			<content:encoded><![CDATA[<p>Someone I take very seriously does a lot of Ruby on Rails work - and as a result of that, I figured that I should at least take a look at the framework.</p>
<p>Over the weekend, I whipped up a quick little app, without using source control - it&#8217;s a quick project, and I&#8217;m not really concerned if it suddenly vanishes into the ether.</p>
<p>However, when it finally came time to deploy it, there was a bit of a hiccup: Capistrano&#8217;s deployment process usually involves <b>some sort</b> of source control - whether that&#8217;s Subversion, CVS, Darcs, or something different entirely(like Git).</p>
<p>Luckily however, getting Capistrano to deploy your app when it&#8217;s not under source control is a matter of only 3 lines of code, inside <strong>deploy.rb</strong>:</p>


<div class="wp_syntax"><div class="code"><pre class="ruby ruby" style="font-family:monospace;">set <span style="color:#ff3333; font-weight:bold;">:repository</span>, <span style="color:#996600;">&quot;.&quot;</span>
set <span style="color:#ff3333; font-weight:bold;">:scm</span>, <span style="color:#ff3333; font-weight:bold;">:none</span>
set <span style="color:#ff3333; font-weight:bold;">:deploy_via</span>, <span style="color:#ff3333; font-weight:bold;">:copy</span></pre></div></div>



<p>Once you&#8217;ve made those changes, all you need to do is run your deployment commands from within your project&#8217;s directory - and Capistrano will copy all the files over for you, without requiring you to have them under source control.</p>]]></content:encoded>
			<wfw:commentRss>http://girasquid.com/blog/2008/07/17/using-capistrano-to-deploy-rails-apps-without-source-control/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DotNetNuke&#8217;s IE7 printer-friendly bug - fixed!</title>
		<link>http://girasquid.com/blog/2008/07/15/dotnetnukes-ie7-printer-friendly-bug-fixed/</link>
		<comments>http://girasquid.com/blog/2008/07/15/dotnetnukes-ie7-printer-friendly-bug-fixed/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 22:07:00 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<category><![CDATA[bug]]></category>

		<category><![CDATA[dotnetnuke]]></category>

		<guid isPermaLink="false">http://girasquid.com/blog/2008/07/15/dotnetnukes-ie7-printer-friendly-bug-fixed/</guid>
		<description><![CDATA[If you&#8217;ve worked much with DotNetNuke, you may have noticed a bit of an odd bug: if you use IE7 and click on the printer icon next to a module for a printer-friendly page, the CSS on the page you clicked the icon on&#8230;breaks.
This is because the way that DotNetNuke&#8217;s module actions work is to [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve worked much with DotNetNuke, you may have noticed a bit of an odd bug: if you use IE7 and click on the printer icon next to a module for a printer-friendly page, the CSS on the page you clicked the icon on&#8230;breaks.</p>
<p>This is because the way that DotNetNuke&#8217;s module actions work is to inject Javascript into the page, using Response.Write() - having a &lt;script&gt; tag at the start of the HTML document makes IE7 throw up.</p>
<p>The fix is actually very simple(for a developer), however - you need to download the DotNetNuke source, and change line 159 of Library\Components\Skins\ActionBase.vb to this:</p>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>159
</pre></td><td class="code"><pre class="vb vb" style="font-family:monospace;">Page.<span style="color: #66cc66;">ClientScript</span>.<span style="color: #66cc66;">RegisterStartupScript</span><span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">Me</span>.<span style="color: #66cc66;">GetType</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>, <span style="color: #ff0000;">&quot;DotNetNuke.NewWindow&quot;</span>, <span style="color: #b1b100;">String</span>.<span style="color: #b1b100;">Format</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;&lt;script&gt;window.open('{0}','_blank')&lt;/script&gt;&quot;</span>, <span style="color: #b1b100;">Command</span>.<span style="color: #66cc66;">Url</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span></pre></td></tr></table></div>



<p>Once that&#8217;s finished, build your DotNetNuke library - and copy the resulting DotNetNuke.dll into the bin directory of any website that you want to add the fix to. If you&#8217;re feeling <b>really</b> lazy, you can download my copy of the dll(built for version 4.8.4) below:</p>
<p>
<a href='http://girasquid.com/downloads/DotNetNuke.dll'>DotNetNuke IE7 print bugfix DLL</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://girasquid.com/blog/2008/07/15/dotnetnukes-ie7-printer-friendly-bug-fixed/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
