<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: PHP Templating Celebrity Deathmatch!</title>
	<atom:link href="http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/feed/" rel="self" type="application/rss+xml" />
	<link>http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/</link>
	<description>Observations of a mid-level engineer in dot-com.</description>
	<lastBuildDate>Thu, 02 Jul 2009 10:34:57 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Templates vs Includes e internacionalización &#124; Iván de la Jara</title>
		<link>http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-328</link>
		<dc:creator>Templates vs Includes e internacionalización &#124; Iván de la Jara</dc:creator>
		<pubDate>Wed, 03 Dec 2008 09:28:03 +0000</pubDate>
		<guid isPermaLink="false">http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-328</guid>
		<description>[...] estado mirando este blog y me he quedado a gusto en como lo ha comprobado Rob Peck. Sobretodo porque no conocía Blitz como [...]</description>
		<content:encoded><![CDATA[<p>[...] estado mirando este blog y me he quedado a gusto en como lo ha comprobado Rob Peck. Sobretodo porque no conocía Blitz como [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Panu</title>
		<link>http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-45</link>
		<dc:creator>Panu</dc:creator>
		<pubDate>Wed, 12 Sep 2007 09:52:10 +0000</pubDate>
		<guid isPermaLink="false">http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-45</guid>
		<description>It would be nice to know how for example eaccelerator affects the results. Also if all comments are removed from the smarty class file it get&#039;s slightly faster to initialize (or that is what the legend tells :) 

It&#039;s true though that a php extension written in C is always going to be at least a little bit more efficient than similar PHP code.</description>
		<content:encoded><![CDATA[<p>It would be nice to know how for example eaccelerator affects the results. Also if all comments are removed from the smarty class file it get&#8217;s slightly faster to initialize (or that is what the legend tells <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>It&#8217;s true though that a php extension written in C is always going to be at least a little bit more efficient than similar PHP code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexey Rybak</title>
		<link>http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-22</link>
		<dc:creator>Alexey Rybak</dc:creator>
		<pubDate>Thu, 16 Aug 2007 16:07:33 +0000</pubDate>
		<guid isPermaLink="false">http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-22</guid>
		<description>&gt;&gt;I would love to be able to set an absolute path in the 
&gt;&gt;php.ini file or set a custom include path via php
I have this in my todo and will add this very soon. 
http://alexeyrybak.com/blitz/bt/view.php?id=64
Feel free to submit requests/bugs to the bugtracker.</description>
		<content:encoded><![CDATA[<p>&gt;&gt;I would love to be able to set an absolute path in the<br />
&gt;&gt;php.ini file or set a custom include path via php<br />
I have this in my todo and will add this very soon.<br />
<a href="http://alexeyrybak.com/blitz/bt/view.php?id=64" rel="nofollow">http://alexeyrybak.com/blitz/bt/view.php?id=64</a><br />
Feel free to submit requests/bugs to the bugtracker.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: codelemur</title>
		<link>http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-21</link>
		<dc:creator>codelemur</dc:creator>
		<pubDate>Thu, 16 Aug 2007 15:01:01 +0000</pubDate>
		<guid isPermaLink="false">http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-21</guid>
		<description>Hi Ryan!

Thanks for the comments!

I didn&#039;t actually write Blitz; that would be Alexey in the comments above. I just tested it. :P

However, what you are wanting to do, if it&#039;s not possible in the Blitz documentation, could easily be accompished by extending the Blitz class and overriding the constructor. You could define a template path, then do something like this:

define(TEMPLATE_PATH,&quot;/path/to/template/&quot;);

class tpl extends Blitz {
  function __construct($tpl) {
    parent::__construct(TEMPLATE_PATH.$tpl);
  }
}

Of course, in doing this you are adding additional overhead that will affect the speed of Blitz.

Cheers!</description>
		<content:encoded><![CDATA[<p>Hi Ryan!</p>
<p>Thanks for the comments!</p>
<p>I didn&#8217;t actually write Blitz; that would be Alexey in the comments above. I just tested it. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>However, what you are wanting to do, if it&#8217;s not possible in the Blitz documentation, could easily be accompished by extending the Blitz class and overriding the constructor. You could define a template path, then do something like this:</p>
<p>define(TEMPLATE_PATH,&#8221;/path/to/template/&#8221;);</p>
<p>class tpl extends Blitz {<br />
  function __construct($tpl) {<br />
    parent::__construct(TEMPLATE_PATH.$tpl);<br />
  }<br />
}</p>
<p>Of course, in doing this you are adding additional overhead that will affect the speed of Blitz.</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-20</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Thu, 16 Aug 2007 12:50:51 +0000</pubDate>
		<guid isPermaLink="false">http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-20</guid>
		<description>I just installed this on our server and started testing some simple includes and basic variables for an aplication we are writing. So far I am very happy with the ease it was installed, the ease in which you can get started and the performance. I was using a very lightweight templating solution and this one blows it away. Great Job!

My comment would be in regards to the template file path. I would love to be able to set an absolute path in the php.ini file or set a custom include path via php. This would save a ton of time overall in large implementations from writing:

$tpl = new Blitz(’ui/html/login.tpl’);

to just:

$tpl = new Blitz(’login.tpl’);

I could set the constant as referenced above but that really doesn&#039;t save me anything.

Keep up the great work!</description>
		<content:encoded><![CDATA[<p>I just installed this on our server and started testing some simple includes and basic variables for an aplication we are writing. So far I am very happy with the ease it was installed, the ease in which you can get started and the performance. I was using a very lightweight templating solution and this one blows it away. Great Job!</p>
<p>My comment would be in regards to the template file path. I would love to be able to set an absolute path in the php.ini file or set a custom include path via php. This would save a ton of time overall in large implementations from writing:</p>
<p>$tpl = new Blitz(’ui/html/login.tpl’);</p>
<p>to just:</p>
<p>$tpl = new Blitz(’login.tpl’);</p>
<p>I could set the constant as referenced above but that really doesn&#8217;t save me anything.</p>
<p>Keep up the great work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alexey rybak</title>
		<link>http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-16</link>
		<dc:creator>alexey rybak</dc:creator>
		<pubDate>Wed, 15 Aug 2007 19:40:14 +0000</pubDate>
		<guid isPermaLink="false">http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-16</guid>
		<description>&gt;&gt; You get mega bonus points for using examples from my favorite movie
oh dude you too ;)</description>
		<content:encoded><![CDATA[<p>&gt;&gt; You get mega bonus points for using examples from my favorite movie<br />
oh dude you too <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mudkicker.com &#187; Template Engines...</title>
		<link>http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-15</link>
		<dc:creator>mudkicker.com &#187; Template Engines...</dc:creator>
		<pubDate>Wed, 15 Aug 2007 07:10:46 +0000</pubDate>
		<guid isPermaLink="false">http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-15</guid>
		<description>[...] before using it, I recommend all of my readers to read this blog entry written by Rob [...]</description>
		<content:encoded><![CDATA[<p>[...] before using it, I recommend all of my readers to read this blog entry written by Rob [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Undefined variable &#187; Blog Archive &#187; PHP Templating Celebrity Deathmatch!</title>
		<link>http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-13</link>
		<dc:creator>Undefined variable &#187; Blog Archive &#187; PHP Templating Celebrity Deathmatch!</dc:creator>
		<pubDate>Wed, 15 Aug 2007 02:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-13</guid>
		<description>[...] Good article on comparison between Smarty and  Blitz.  [...]</description>
		<content:encoded><![CDATA[<p>[...] Good article on comparison between Smarty and  Blitz.  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: developercast.com &#187; Rob Peck&#8217;s Blog: PHP Templating Celebrity Deathmatch!</title>
		<link>http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-11</link>
		<dc:creator>developercast.com &#187; Rob Peck&#8217;s Blog: PHP Templating Celebrity Deathmatch!</dc:creator>
		<pubDate>Tue, 14 Aug 2007 21:42:35 +0000</pubDate>
		<guid isPermaLink="false">http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-11</guid>
		<description>[...] Code Lemur blog (as penned by Rob Peck) has a new post - a &#8220;deathmatch&#8221; for two of the PHP-associated templating solutions out there in a [...]</description>
		<content:encoded><![CDATA[<p>[...] Code Lemur blog (as penned by Rob Peck) has a new post &#8211; a &#8220;deathmatch&#8221; for two of the PHP-associated templating solutions out there in a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: developercast.com &#187; Brian Moon&#8217;s Blog: PHP Template tests (and Blitz)</title>
		<link>http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-10</link>
		<dc:creator>developercast.com &#187; Brian Moon&#8217;s Blog: PHP Template tests (and Blitz)</dc:creator>
		<pubDate>Tue, 14 Aug 2007 14:42:47 +0000</pubDate>
		<guid isPermaLink="false">http://codelemur.wordpress.com/2007/08/10/php-templating-celebrity-deathmatch/#comment-10</guid>
		<description>[...] Tests were even done to compare it to several of the other popular templating frameworks currently offered.    &#160; [...]</description>
		<content:encoded><![CDATA[<p>[...] Tests were even done to compare it to several of the other popular templating frameworks currently offered.    &nbsp; [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
