<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: How To Make IE Cache Less</title>
	<atom:link href="http://www.thesamet.com/blog/2006/07/14/making-ie-cache-less/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thesamet.com/blog/2006/07/14/making-ie-cache-less/</link>
	<description>The Ramblings of a Freelance Software Developer</description>
	<pubDate>Sat, 22 Nov 2008 01:50:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: SeriousUser</title>
		<link>http://www.thesamet.com/blog/2006/07/14/making-ie-cache-less/#comment-6782</link>
		<dc:creator>SeriousUser</dc:creator>
		<pubDate>Tue, 17 Jun 2008 04:39:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.thesamet.com/blog/2006/07/14/making-ie-cache-less/#comment-6782</guid>
		<description>Sorry, I made such a novice error. Please disregard the previous message. Thank you for providing this code snippet.</description>
		<content:encoded><![CDATA[<p>Sorry, I made such a novice error. Please disregard the previous message. Thank you for providing this code snippet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SeriousUser</title>
		<link>http://www.thesamet.com/blog/2006/07/14/making-ie-cache-less/#comment-6781</link>
		<dc:creator>SeriousUser</dc:creator>
		<pubDate>Tue, 17 Jun 2008 04:34:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.thesamet.com/blog/2006/07/14/making-ie-cache-less/#comment-6781</guid>
		<description>Thanks for your reply. I tried implementing this in my code but it just seems to break it. Without adding the decorator, I am receiving the data fine in JSON format. However, if I include the
&lt;code&gt;@strongly_expire&lt;/code&gt;
before my function header, it seems to break it and no data comes through. Any thoughts?</description>
		<content:encoded><![CDATA[<p>Thanks for your reply. I tried implementing this in my code but it just seems to break it. Without adding the decorator, I am receiving the data fine in JSON format. However, if I include the<br />
<code>@strongly_expire</code><br />
before my function header, it seems to break it and no data comes through. Any thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nadav</title>
		<link>http://www.thesamet.com/blog/2006/07/14/making-ie-cache-less/#comment-6780</link>
		<dc:creator>Nadav</dc:creator>
		<pubDate>Fri, 13 Jun 2008 17:14:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.thesamet.com/blog/2006/07/14/making-ie-cache-less/#comment-6780</guid>
		<description>Just in the top of the controller module.</description>
		<content:encoded><![CDATA[<p>Just in the top of the controller module.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SeriousUser</title>
		<link>http://www.thesamet.com/blog/2006/07/14/making-ie-cache-less/#comment-6779</link>
		<dc:creator>SeriousUser</dc:creator>
		<pubDate>Fri, 13 Jun 2008 17:12:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.thesamet.com/blog/2006/07/14/making-ie-cache-less/#comment-6779</guid>
		<description>Where did you add your decorator definition? The code for 
&lt;code&gt;def strongly_expire(func):&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Where did you add your decorator definition? The code for<br />
<code>def strongly_expire(func):</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Making a Flickr Killer With TurboGears - Part 2: A Flickr Clone in 37 Minutes Flat &#183; Nadav Samet's Blog</title>
		<link>http://www.thesamet.com/blog/2006/07/14/making-ie-cache-less/#comment-1883</link>
		<dc:creator>Making a Flickr Killer With TurboGears - Part 2: A Flickr Clone in 37 Minutes Flat &#183; Nadav Samet's Blog</dc:creator>
		<pubDate>Tue, 20 Feb 2007 11:22:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.thesamet.com/blog/2006/07/14/making-ie-cache-less/#comment-1883</guid>
		<description>[...] the cached old image, we add a random argument to the URL. You can see a related post describing how to prevent browsers from caching. To make the image() controller method accept this argument and ignore it, its definition becomes:  [...]</description>
		<content:encoded><![CDATA[<p>[...] the cached old image, we add a random argument to the URL. You can see a related post describing how to prevent browsers from caching. To make the image() controller method accept this argument and ignore it, its definition becomes:  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: From here to eternity &#187; Blog Archive &#187; Serving files with Cherrypy and the browser cache?</title>
		<link>http://www.thesamet.com/blog/2006/07/14/making-ie-cache-less/#comment-577</link>
		<dc:creator>From here to eternity &#187; Blog Archive &#187; Serving files with Cherrypy and the browser cache?</dc:creator>
		<pubDate>Wed, 27 Sep 2006 09:23:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.thesamet.com/blog/2006/07/14/making-ie-cache-less/#comment-577</guid>
		<description>[...] Obviously you can make the date as old as you want. All this was provided by a google search and in cherrypy you can set these within a decorator as described here. Note that the code at the link is cherrypy v2.2 so response.headers is used rather than response.headerMap (and I don&#8217;t know the relevance for cherrypy 3.x). [...]</description>
		<content:encoded><![CDATA[<p>[...] Obviously you can make the date as old as you want. All this was provided by a google search and in cherrypy you can set these within a decorator as described here. Note that the code at the link is cherrypy v2.2 so response.headers is used rather than response.headerMap (and I don&#8217;t know the relevance for cherrypy 3.x). [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.226 seconds -->
<!-- Cached page served by WP-Cache -->
