<?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: Output Filters in Zend_View</title>
	<atom:link href="http://matthewturland.com/2008/06/04/output-filters-in-zend_view/feed/" rel="self" type="application/rss+xml" />
	<link>http://matthewturland.com/2008/06/04/output-filters-in-zend_view/</link>
	<description></description>
	<lastBuildDate>Mon, 08 Mar 2010 16:47:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Raymond Kolbe</title>
		<link>http://matthewturland.com/2008/06/04/output-filters-in-zend_view/comment-page-1/#comment-274</link>
		<dc:creator>Raymond Kolbe</dc:creator>
		<pubDate>Sun, 06 Sep 2009 03:44:10 +0000</pubDate>
		<guid isPermaLink="false">tag:ishouldbecoding.com,2008:output-filters-in-zend_view/1212539327#comment-274</guid>
		<description>I found this page while looking into making my own CSS/JS minifier. I modified your preg so it will minify even more stuff:

// Characters we want to look for so we can replace them
$search = array(
    &#039;&#124;(/\*.*?\*/)&#124;&#039;,            // Comment tags
    &#039;/&gt;\s+/&#039;, &#039;/\s+&lt;/&#039;,         // spaces before/after &gt; or 
    &#039;/[\x0A\x0D\x20\x09]+/&#039;,    // returns, multiple spaces/tabs
    &#039;/\s?;\s?/&#039;,                // spaces before/after ;
    &#039;/\s?{\s?/&#039;,                // spaces before/after {
    &#039;/\s?}\s?/&#039;                 // spaces before/after }
);

// Replacements for aforementioned characters
$replace = array(&#039;&#039;, &#039;&gt;&#039;, &#039;&lt;&#039;, &#039;=&quot;&quot; &#039;,=&quot;&quot; &#039;;&#039;,=&quot;&quot; &#039;{&#039;,=&quot;&quot; &#039;}&#039;);=&quot;&quot; performed=&quot;&quot; minification=&quot;&quot; (queue=&quot;&quot; mad=&quot;&quot; scientist=&quot;&quot; laugh)=&quot;&quot; $minified=&quot;preg_replace($search,&quot; $replace,=&quot;&quot; $buffer);=&quot;&quot;&gt;</description>
		<content:encoded><![CDATA[<p>I found this page while looking into making my own CSS/JS minifier. I modified your preg so it will minify even more stuff:</p>
<p>// Characters we want to look for so we can replace them<br />
$search = array(<br />
    &#8216;|(/\*.*?\*/)|&#8217;,            // Comment tags<br />
    &#8216;/&gt;\s+/&#8217;, &#8216;/\s+&lt;/&#8217;,         // spaces before/after &gt; or<br />
    &#8216;/[\x0A\x0D\x20\x09]+/&#8217;,    // returns, multiple spaces/tabs<br />
    &#8216;/\s?;\s?/&#8217;,                // spaces before/after ;<br />
    &#8216;/\s?{\s?/&#8217;,                // spaces before/after {<br />
    &#8216;/\s?}\s?/&#8217;                 // spaces before/after }<br />
);</p>
<p>// Replacements for aforementioned characters<br />
$replace = array(&#8221;, &#8216;&gt;&#8217;, &#8216;&lt;&#8217;, &#8216;=&quot;&quot; &#8216;,=&quot;&quot; &#8216;;&#8217;,=&quot;&quot; &#8216;{&#8216;,=&quot;&quot; &#8216;}&#8217;);=&quot;&quot; performed=&quot;&quot; minification=&quot;&quot; (queue=&quot;&quot; mad=&quot;&quot; scientist=&quot;&quot; laugh)=&quot;&quot; $minified=&quot;preg_replace($search,&quot; $replace,=&quot;&quot; $buffer);=&quot;&quot;&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Clay</title>
		<link>http://matthewturland.com/2008/06/04/output-filters-in-zend_view/comment-page-1/#comment-245</link>
		<dc:creator>Steve Clay</dc:creator>
		<pubDate>Sat, 21 Mar 2009 19:59:34 +0000</pubDate>
		<guid isPermaLink="false">tag:ishouldbecoding.com,2008:output-filters-in-zend_view/1212539327#comment-245</guid>
		<description>FYI, &lt;a href=&quot;http://code.google.com/p/minify/wiki/ComponentClasses&quot;&gt;Minify_HTML&lt;/a&gt; is a simple class for minifying markup fragments or pages (and can run callbacks on embedded CSS/Javascript).</description>
		<content:encoded><![CDATA[<p>FYI, <a href="http://code.google.com/p/minify/wiki/ComponentClasses">Minify_HTML</a> is a simple class for minifying markup fragments or pages (and can run callbacks on embedded CSS/Javascript).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Minify css in ZendFramework &#124; GS Design</title>
		<link>http://matthewturland.com/2008/06/04/output-filters-in-zend_view/comment-page-1/#comment-244</link>
		<dc:creator>Minify css in ZendFramework &#124; GS Design</dc:creator>
		<pubDate>Wed, 11 Mar 2009 09:10:01 +0000</pubDate>
		<guid isPermaLink="false">tag:ishouldbecoding.com,2008:output-filters-in-zend_view/1212539327#comment-244</guid>
		<description>...t:pageTracker._trackPageview(&#039;/outbound/article/http://ishouldbecoding.com/&#039;);&quot;&gt;Matthew Turland&lt;/a&gt; &lt;a href=&quot;http://ishouldbecoding.com/2008/06/04/output-filters-in-zend_view&quot;&gt;Minify Filter&lt;/a&gt; for Zend Framework i decided to implement the &lt;a href=&quot;http://code.google.com/p/minify/&quot;&gt;...</description>
		<content:encoded><![CDATA[<p>&#8230;t:pageTracker._trackPageview(&#8216;/outbound/article/http://ishouldbecoding.com/&#8217;);&#8221;>Matthew Turland <a href="http://ishouldbecoding.com/2008/06/04/output-filters-in-zend_view">Minify Filter</a> for Zend Framework i decided to implement the <a href="http://code.google.com/p/minify/">&#8230;</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matsu</title>
		<link>http://matthewturland.com/2008/06/04/output-filters-in-zend_view/comment-page-1/#comment-243</link>
		<dc:creator>matsu</dc:creator>
		<pubDate>Sat, 28 Feb 2009 17:28:15 +0000</pubDate>
		<guid isPermaLink="false">tag:ishouldbecoding.com,2008:output-filters-in-zend_view/1212539327#comment-243</guid>
		<description>Thank you for the great artcle.
This is what I&#039;m looking for!</description>
		<content:encoded><![CDATA[<p>Thank you for the great artcle.<br />
This is what I&#8217;m looking for!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Turland&#8217;s Blog:  Output Filters in Zend_View &#124; Development Blog With Code Updates : Developercast.com</title>
		<link>http://matthewturland.com/2008/06/04/output-filters-in-zend_view/comment-page-1/#comment-195</link>
		<dc:creator>Matthew Turland&#8217;s Blog:  Output Filters in Zend_View &#124; Development Blog With Code Updates : Developercast.com</dc:creator>
		<pubDate>Thu, 05 Jun 2008 16:26:39 +0000</pubDate>
		<guid isPermaLink="false">tag:ishouldbecoding.com,2008:output-filters-in-zend_view/1212539327#comment-195</guid>
		<description>... all posts in Development&quot; rel=&quot;category tag&quot;&gt;Development&lt;/a&gt;   Matthew Turland has written up &lt;a href=&quot;http://ishouldbecoding.com/2008/06/04/output-filters-in-zend_view&quot;&gt;a new tutorial&lt;/a&gt; explaining something that’s “currently very well documented” in the Zend Framewor...</description>
		<content:encoded><![CDATA[<p>&#8230; all posts in Development&#8221; rel=&#8221;category tag&#8221;>Development   Matthew Turland has written up <a href="http://ishouldbecoding.com/2008/06/04/output-filters-in-zend_view">a new tutorial</a> explaining something that’s “currently very well documented” in the Zend Framewor&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
