<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Automatically Version Your CSS and JavaScript&#160;Files</title>
	<atom:link href="http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/feed/" rel="self" type="application/rss+xml" />
	<link>http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/</link>
	<description>Everyone needs a hug.</description>
	<lastBuildDate>Mon, 16 Nov 2009 21:43:07 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: stv</title>
		<link>http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/comment-page-2/#comment-24777</link>
		<dc:creator>stv</dc:creator>
		<pubDate>Thu, 05 Jun 2008 14:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/#comment-24777</guid>
		<description>&lt;p&gt;How do you deploy? If you use a tool like Ant, you may include a tag into HTML files, and replace it with version value when deploying app. For instance,&lt;/p&gt;

&lt;p&gt;And your ant file may include the following code in deploy task:

    

&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>How do you deploy? If you use a tool like Ant, you may include a tag into HTML files, and replace it with version value when deploying app. For instance,</p>

<p>And your ant file may include the following code in deploy task:

    

</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Rory</title>
		<link>http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/comment-page-2/#comment-24767</link>
		<dc:creator>Rory</dc:creator>
		<pubDate>Fri, 16 May 2008 03:24:18 +0000</pubDate>
		<guid isPermaLink="false">http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/#comment-24767</guid>
		<description>&lt;p&gt;Let&#039;s try that again, with formatting.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;
&lt;?phpfunction&#160;autoVer($url){&#160;&#160;&#160;&#160;$name&#160;=&#160;explode(&#039;.&#039;,$url);&#160;&#160;&#160;&#160;$lastext&#160;=&#160;array_pop($name)&#160;;&#160;&#160;&#160;&#160;array_push($name,filemtime($_SERVER[&#039;DOCUMENT_ROOT&#039;].$url),$lastext);&#160;&#160;&#160;&#160;$fullname&#160;=&#160;implode(&#039;.&#039;,$name)&#160;;&#160;&#160;&#160;&#160;echo&#160;$fullname&#160;;}?&gt;

&lt;/code&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Let&#8217;s try that again, with formatting.</p>

<p><code>
&lt;?phpfunction&nbsp;autoVer($url){&nbsp;&nbsp;&nbsp;&nbsp;$name&nbsp;=&nbsp;explode('.',$url);&nbsp;&nbsp;&nbsp;&nbsp;$lastext&nbsp;=&nbsp;array_pop($name)&nbsp;;&nbsp;&nbsp;&nbsp;&nbsp;array_push($name,filemtime($_SERVER['DOCUMENT_ROOT'].$url),$lastext);&nbsp;&nbsp;&nbsp;&nbsp;$fullname&nbsp;=&nbsp;implode('.',$name)&nbsp;;&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;$fullname&nbsp;;}?&gt;

</code></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Rory</title>
		<link>http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/comment-page-2/#comment-24766</link>
		<dc:creator>Rory</dc:creator>
		<pubDate>Fri, 16 May 2008 03:22:59 +0000</pubDate>
		<guid isPermaLink="false">http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/#comment-24766</guid>
		<description>&lt;p&gt;function autoVer($url){
    $name = explode(&#039;.&#039;,$url);
    $lastext = array_pop($name) ;
    array_push($name,filemtime($_SERVER[&#039;DOCUMENT_ROOT&#039;].$url),$lastext);
    $fullname = implode(&#039;.&#039;,$name) ;
    echo $fullname ;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>function autoVer($url){
    $name = explode(&#8216;.&#8217;,$url);
    $lastext = array_pop($name)&#160;;
    array_push($name,filemtime($_SERVER[&#8216;DOCUMENT_ROOT&#8217;].$url),$lastext);
    $fullname = implode(&#8216;.&#8217;,$name)&#160;;
    echo $fullname&#160;;</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Rory</title>
		<link>http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/comment-page-2/#comment-24765</link>
		<dc:creator>Rory</dc:creator>
		<pubDate>Fri, 16 May 2008 03:22:18 +0000</pubDate>
		<guid isPermaLink="false">http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/#comment-24765</guid>
		<description>&lt;p&gt;I revised autoVer to squash a couple of bugs. First, if the filename had more than one period in it, the number would be inserted multiple times. Second, if the file were in the root directory, it wouldn&#039;t be handled properly.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I revised autoVer to squash a couple of bugs. First, if the filename had more than one period in it, the number would be inserted multiple times. Second, if the file were in the root directory, it wouldn&#8217;t be handled properly.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/comment-page-2/#comment-24757</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Thu, 08 May 2008 11:40:36 +0000</pubDate>
		<guid isPermaLink="false">http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/#comment-24757</guid>
		<description>&lt;p&gt;Tank you for this perfect information. I will try it in WordPress&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Tank you for this perfect information. I will try it in WordPress</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Hypotheek</title>
		<link>http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/comment-page-2/#comment-24754</link>
		<dc:creator>Hypotheek</dc:creator>
		<pubDate>Sun, 04 May 2008 02:11:55 +0000</pubDate>
		<guid isPermaLink="false">http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/#comment-24754</guid>
		<description>&lt;p&gt;@ voetbalnieuws&lt;/p&gt;

&lt;p&gt;Your juice? These are no follows... 
So you&#039;d better do some real linkbuilding ;-)&lt;/p&gt;

&lt;p&gt;Ask some other expert at www.hypotheekindex.nl and remember, just like at particletree; sharing information is a great way to achieve your final goals!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@ voetbalnieuws</p>

<p>Your juice? These are no follows&#8230; 
So you&#8217;d better do some real linkbuilding ;-)</p>

<p>Ask some other expert at <a href="http://www.hypotheekindex.nl" rel="nofollow">http://www.hypotheekindex.nl</a> and remember, just like at particletree; sharing information is a great way to achieve your final goals!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Ali Fuat Arslan</title>
		<link>http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/comment-page-2/#comment-24752</link>
		<dc:creator>Ali Fuat Arslan</dc:creator>
		<pubDate>Fri, 02 May 2008 11:38:51 +0000</pubDate>
		<guid isPermaLink="false">http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/#comment-24752</guid>
		<description>&lt;p&gt;I am speechless !!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I am speechless&#160;!!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Clayton Booker</title>
		<link>http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/comment-page-2/#comment-24746</link>
		<dc:creator>Clayton Booker</dc:creator>
		<pubDate>Thu, 17 Apr 2008 22:55:12 +0000</pubDate>
		<guid isPermaLink="false">http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/#comment-24746</guid>
		<description>&lt;p&gt;somnambulic electrotonicity ovispermary stratonic promodernistic epiphanous crucial doubtably
&lt;a href=&quot;http://www.nickelodeon.com.au/&quot; rel=&quot;nofollow&quot;&gt;The Nickelodeon Online Treehouse&lt;/a&gt;
 http://aleph0.clarku.edu/~djoyce/mathhist/&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>somnambulic electrotonicity ovispermary stratonic promodernistic epiphanous crucial doubtably
<a href="http://www.nickelodeon.com.au/" rel="nofollow">The Nickelodeon Online Treehouse</a>
 <a href="http://aleph0.clarku.edu/~djoyce/mathhist/" rel="nofollow">http://aleph0.clarku.edu/~djoyce/mathhist/</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: alex fibrom</title>
		<link>http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/comment-page-2/#comment-24727</link>
		<dc:creator>alex fibrom</dc:creator>
		<pubDate>Mon, 31 Mar 2008 23:25:30 +0000</pubDate>
		<guid isPermaLink="false">http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/#comment-24727</guid>
		<description>&lt;p&gt;hi.your desing is perfect.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>hi.your desing is perfect.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Williams</title>
		<link>http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/comment-page-2/#comment-24714</link>
		<dc:creator>Ryan Williams</dc:creator>
		<pubDate>Fri, 14 Mar 2008 16:06:41 +0000</pubDate>
		<guid isPermaLink="false">http://particletree.com/notebook/automatically-version-your-css-and-javascript-files/#comment-24714</guid>
		<description>&lt;p&gt;He has nofollow on the links so you aren&#039;t going to get any PR at all.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>He has nofollow on the links so you aren&#8217;t going to get any PR at all.</p>]]></content:encoded>
	</item>
</channel>
</rss>
