<?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: Shrink the size of your javascript with js min (the php way)</title>
	<atom:link href="http://gggeek.altervista.org/2006/12/22/shrink-the-size-of-your-javascript-with-js-min-the-php-way/feed/" rel="self" type="application/rss+xml" />
	<link>http://gggeek.altervista.org/2006/12/22/shrink-the-size-of-your-javascript-with-js-min-the-php-way/</link>
	<description>il mago di eZ</description>
	<lastBuildDate>Tue, 10 Nov 2009 10:48:35 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: cgo2</title>
		<link>http://gggeek.altervista.org/2006/12/22/shrink-the-size-of-your-javascript-with-js-min-the-php-way/comment-page-1/#comment-1004</link>
		<dc:creator>cgo2</dc:creator>
		<pubDate>Fri, 30 Mar 2007 13:20:50 +0000</pubDate>
		<guid isPermaLink="false">http://gggeek.altervista.org/2006/12/22/shrink-the-size-of-your-javascript-with-js-min-the-php-way/#comment-1004</guid>
		<description>Hi,

Thanks for this work ! I made a version that use more PHP native functions to speed up the process (though the gain is not huge). I get rid of code dealing with files too, because it&#039;s easier to use PHP functions (like file_get_contents) and minify it as a string.

Test page is here : http://www.the-asw.com/public/web/myjsmin/
More explainations here (in french) : http://www.the-asw.com/post/2007/03/28/Une-version-optimisee-pour-PHP-de-JSMin

Regards</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks for this work ! I made a version that use more PHP native functions to speed up the process (though the gain is not huge). I get rid of code dealing with files too, because it&#8217;s easier to use PHP functions (like file_get_contents) and minify it as a string.</p>
<p>Test page is here : <a href="http://www.the-asw.com/public/web/myjsmin/" rel="nofollow">http://www.the-asw.com/public/web/myjsmin/</a><br />
More explainations here (in french) : <a href="http://www.the-asw.com/post/2007/03/28/Une-version-optimisee-pour-PHP-de-JSMin" rel="nofollow">http://www.the-asw.com/post/2007/03/28/Une-version-optimisee-pour-PHP-de-JSMin</a></p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: giunta_gaetano</title>
		<link>http://gggeek.altervista.org/2006/12/22/shrink-the-size-of-your-javascript-with-js-min-the-php-way/comment-page-1/#comment-912</link>
		<dc:creator>giunta_gaetano</dc:creator>
		<pubDate>Tue, 06 Mar 2007 21:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://gggeek.altervista.org/2006/12/22/shrink-the-size-of-your-javascript-with-js-min-the-php-way/#comment-912</guid>
		<description>As you can easily read in the comments in the code ;)

&lt;?php
  define(&#039;JSMIN_AS_LIB&#039;, true); // prevents auto-run on include
  include(&#039;jsmin.php&#039;);
  // create the JSMin class, indicating no output file is desired
  $jsMin = new JSMin($this_string, false);
  $out = $jsMin-&gt;minify();
?&gt;</description>
		<content:encoded><![CDATA[<p>As you can easily read in the comments in the code <img src='http://gggeek.altervista.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>< ?php<br />
  define('JSMIN_AS_LIB', true); // prevents auto-run on include<br />
  include('jsmin.php');<br />
  // create the JSMin class, indicating no output file is desired<br />
  $jsMin = new JSMin($this_string, false);<br />
  $out = $jsMin->minify();<br />
?></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TM4B SMS Gateway</title>
		<link>http://gggeek.altervista.org/2006/12/22/shrink-the-size-of-your-javascript-with-js-min-the-php-way/comment-page-1/#comment-909</link>
		<dc:creator>TM4B SMS Gateway</dc:creator>
		<pubDate>Tue, 06 Mar 2007 15:44:22 +0000</pubDate>
		<guid isPermaLink="false">http://gggeek.altervista.org/2006/12/22/shrink-the-size-of-your-javascript-with-js-min-the-php-way/#comment-909</guid>
		<description>Without sounding stupid... how would i use this class assuming that the entire js content is a string contained within $this_string.</description>
		<content:encoded><![CDATA[<p>Without sounding stupid&#8230; how would i use this class assuming that the entire js content is a string contained within $this_string.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wiktor</title>
		<link>http://gggeek.altervista.org/2006/12/22/shrink-the-size-of-your-javascript-with-js-min-the-php-way/comment-page-1/#comment-735</link>
		<dc:creator>Wiktor</dc:creator>
		<pubDate>Sun, 04 Feb 2007 03:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://gggeek.altervista.org/2006/12/22/shrink-the-size-of-your-javascript-with-js-min-the-php-way/#comment-735</guid>
		<description>This is what I searched! :) I combined your class with the php port of Dean Edward&#039;s packer. It works like a charm! Fantastic! Thank you! :))</description>
		<content:encoded><![CDATA[<p>This is what I searched! <img src='http://gggeek.altervista.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I combined your class with the php port of Dean Edward&#8217;s packer. It works like a charm! Fantastic! Thank you! <img src='http://gggeek.altervista.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
]]></content:encoded>
	</item>
</channel>
</rss>
