<?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: Faster Page Loads &#8211; Bundle Your CSS and Javascript with lighttpd</title>
	<atom:link href="http://www.cakephp.nu/faster-page-loads-bundle-your-css-and-javascript-lighttpd-mod_magnet-lua/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cakephp.nu/faster-page-loads-bundle-your-css-and-javascript-lighttpd-mod_magnet-lua</link>
	<description>Cake and cookies by Jippi</description>
	<lastBuildDate>Fri, 06 Nov 2009 19:47:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Laatste Nieuws</title>
		<link>http://www.cakephp.nu/faster-page-loads-bundle-your-css-and-javascript-lighttpd-mod_magnet-lua/comment-page-1#comment-9191</link>
		<dc:creator>Laatste Nieuws</dc:creator>
		<pubDate>Thu, 30 Jul 2009 18:49:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.cakephp.nu/lighttpd-mod_magnet-written-lua-concat-script#comment-9191</guid>
		<description>Can anyone tell me how I disable bundling in development mode? Its very very annoying during development...</description>
		<content:encoded><![CDATA[<p>Can anyone tell me how I disable bundling in development mode? Its very very annoying during development&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lischet cms</title>
		<link>http://www.cakephp.nu/faster-page-loads-bundle-your-css-and-javascript-lighttpd-mod_magnet-lua/comment-page-1#comment-8542</link>
		<dc:creator>Lischet cms</dc:creator>
		<pubDate>Fri, 03 Jul 2009 22:09:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.cakephp.nu/lighttpd-mod_magnet-written-lua-concat-script#comment-8542</guid>
		<description>Basically, what the plugin does is:

    1 it combines multiple CSS or Javascript files into one big file (bundle) 
    2 it compacts this bundle by removing whitespace and comments 
    3 it caches the bundle by using Rails default page caching mechanism
    4 it creates an “accesspoint” to the bundle by adding a route.
I was using this already, but nice tutorial anyway...</description>
		<content:encoded><![CDATA[<p>Basically, what the plugin does is:</p>
<p>    1 it combines multiple CSS or Javascript files into one big file (bundle)<br />
    2 it compacts this bundle by removing whitespace and comments<br />
    3 it caches the bundle by using Rails default page caching mechanism<br />
    4 it creates an “accesspoint” to the bundle by adding a route.<br />
I was using this already, but nice tutorial anyway&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CMS Website</title>
		<link>http://www.cakephp.nu/faster-page-loads-bundle-your-css-and-javascript-lighttpd-mod_magnet-lua/comment-page-1#comment-8511</link>
		<dc:creator>CMS Website</dc:creator>
		<pubDate>Thu, 02 Jul 2009 23:45:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.cakephp.nu/lighttpd-mod_magnet-written-lua-concat-script#comment-8511</guid>
		<description>I just added “mod_compress” to the modules in the array “server.modules” and
# {{{ mod_compress
compress.cache-dir = &quot;/var/www/cache/&quot;
compress.filetype = (&quot;text/css&quot;, &quot;text/javascript&quot; )
#
in the /etc/lighttpd/lighttpd.conf file.  Obviously I created the directory /var/www/cache giving to it the permission needed by lighttpd to write there.

 And that’s just a small part of the unlimited capacities of Lighttpd!</description>
		<content:encoded><![CDATA[<p>I just added “mod_compress” to the modules in the array “server.modules” and</p>
<ol>
<li>{{{ mod_compress
</li>
</ol>
<p>compress.cache-dir = &#8220;/var/www/cache/&#8221;<br />
compress.filetype = (&#8220;text/css&#8221;, &#8220;text/javascript&#8221; )</p>
<ol>
<li>
</li>
</ol>
<p>in the /etc/lighttpd/lighttpd.conf file.  Obviously I created the directory /var/www/cache giving to it the permission needed by lighttpd to write there.</p>
<p> And that’s just a small part of the unlimited capacities of Lighttpd!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sander</title>
		<link>http://www.cakephp.nu/faster-page-loads-bundle-your-css-and-javascript-lighttpd-mod_magnet-lua/comment-page-1#comment-7842</link>
		<dc:creator>Sander</dc:creator>
		<pubDate>Mon, 08 Jun 2009 19:38:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.cakephp.nu/lighttpd-mod_magnet-written-lua-concat-script#comment-7842</guid>
		<description>Hi,

I want some of .js, .css files to be loaded before HTML contents. How can I able to do with your code.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I want some of .js, .css files to be loaded before HTML contents. How can I able to do with your code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eve - Photostock Expert</title>
		<link>http://www.cakephp.nu/faster-page-loads-bundle-your-css-and-javascript-lighttpd-mod_magnet-lua/comment-page-1#comment-3895</link>
		<dc:creator>Eve - Photostock Expert</dc:creator>
		<pubDate>Thu, 15 Jan 2009 12:46:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.cakephp.nu/lighttpd-mod_magnet-written-lua-concat-script#comment-3895</guid>
		<description>WOW! nice tutorial! that&#039;s what I exactly need. You are explaining in such a simple and straightforward! why others can&#039;t do it as you&#039;ve done? may be it&#039;s a talent... thanx a lot!</description>
		<content:encoded><![CDATA[<p>WOW! nice tutorial! that&#8217;s what I exactly need. You are explaining in such a simple and straightforward! why others can&#8217;t do it as you&#8217;ve done? may be it&#8217;s a talent&#8230; thanx a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mercurycomplex.com - Lighttpd plugin mod_concat</title>
		<link>http://www.cakephp.nu/faster-page-loads-bundle-your-css-and-javascript-lighttpd-mod_magnet-lua/comment-page-1#comment-1831</link>
		<dc:creator>mercurycomplex.com - Lighttpd plugin mod_concat</dc:creator>
		<pubDate>Tue, 16 Sep 2008 08:06:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.cakephp.nu/lighttpd-mod_magnet-written-lua-concat-script#comment-1831</guid>
		<description>[...] More information: * Apache mod_concat * Article on concatenating file requests * Alternative lighttpd solution [...]</description>
		<content:encoded><![CDATA[<div style="margin: 1em;">
<p>
[...] More information: * Apache mod_concat * Article on concatenating file requests * Alternative lighttpd solution [...]
</p>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Combining CSS &#38; JS with mod_concat: Code Concatenation</title>
		<link>http://www.cakephp.nu/faster-page-loads-bundle-your-css-and-javascript-lighttpd-mod_magnet-lua/comment-page-1#comment-949</link>
		<dc:creator>Combining CSS &#38; JS with mod_concat: Code Concatenation</dc:creator>
		<pubDate>Fri, 01 Aug 2008 14:44:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.cakephp.nu/lighttpd-mod_magnet-written-lua-concat-script#comment-949</guid>
		<description>[...] solution, though I will leave it to you to dig in further as it seems to be fairly involved. This blog post by Christian Winther should help get you [...]</description>
		<content:encoded><![CDATA[<div style="margin: 1em;">
<p>
[...] solution, though I will leave it to you to dig in further as it seems to be fairly involved. This blog post by Christian Winther should help get you [...]
</p>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: redvasily</title>
		<link>http://www.cakephp.nu/faster-page-loads-bundle-your-css-and-javascript-lighttpd-mod_magnet-lua/comment-page-1#comment-902</link>
		<dc:creator>redvasily</dc:creator>
		<pubDate>Wed, 30 Jul 2008 12:56:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.cakephp.nu/lighttpd-mod_magnet-written-lua-concat-script#comment-902</guid>
		<description>Hi,

It seems that you posted a script with an error in line 62. There&#039;s a reference to unitialised variable &quot;match&quot; - should be &quot;files&quot; instead

At least it works for me with &quot;files&quot;</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>It seems that you posted a script with an error in line 62. There&#8217;s a reference to unitialised variable &#8220;match&#8221; &#8211; should be &#8220;files&#8221; instead</p>
<p>At least it works for me with &#8220;files&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: combining-js-and-css-files-using-small-script-and-lighty - NerdBase-Blog</title>
		<link>http://www.cakephp.nu/faster-page-loads-bundle-your-css-and-javascript-lighttpd-mod_magnet-lua/comment-page-1#comment-564</link>
		<dc:creator>combining-js-and-css-files-using-small-script-and-lighty - NerdBase-Blog</dc:creator>
		<pubDate>Sun, 29 Jun 2008 18:36:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.cakephp.nu/lighttpd-mod_magnet-written-lua-concat-script#comment-564</guid>
		<description>[...] Links des Artikels http://rakaz.nl/extra/code/combine Bunde css/js with lighty andlua [...]</description>
		<content:encoded><![CDATA[<div style="margin: 1em;">
<p>
[...] Links des Artikels <a href="http://rakaz.nl/extra/code/combine">http://rakaz.nl/extra/code/combine</a> Bunde css/js with lighty andlua [...]
</p>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: 2ge</title>
		<link>http://www.cakephp.nu/faster-page-loads-bundle-your-css-and-javascript-lighttpd-mod_magnet-lua/comment-page-1#comment-83</link>
		<dc:creator>2ge</dc:creator>
		<pubDate>Tue, 18 Mar 2008 15:37:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.cakephp.nu/lighttpd-mod_magnet-written-lua-concat-script#comment-83</guid>
		<description>This is really good news, congratulations. Also nice guide, thanks.</description>
		<content:encoded><![CDATA[<p>This is really good news, congratulations. Also nice guide, thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
