<?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"
	>
<channel>
	<title>Comments on: Nice bits of symfony: Web Debug Toolbar</title>
	<atom:link href="http://morethanseven.net/posts/nice-bits-of-symfony-web-debug-toolbar/feed/" rel="self" type="application/rss+xml" />
	<link>http://morethanseven.net/posts/nice-bits-of-symfony-web-debug-toolbar/</link>
	<description>Morethanseven is where Gareth Rushgrove plays with the web</description>
	<pubDate>Fri, 08 Aug 2008 20:52:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: ArkInfotec.com &#187; Blog Archive &#187; Useful in-browser development tools for PHP</title>
		<link>http://morethanseven.net/posts/nice-bits-of-symfony-web-debug-toolbar/#comment-8881</link>
		<dc:creator>ArkInfotec.com &#187; Blog Archive &#187; Useful in-browser development tools for PHP</dc:creator>
		<pubDate>Tue, 05 Aug 2008 08:33:17 +0000</pubDate>
		<guid isPermaLink="false">http://morethanseven.net/posts/nice-bits-of-symfony-web-debug-toolbar/#comment-8881</guid>
		<description>[...] tracing tools, a couple of frameworks have their own, more or less specific, tools. Symfony&#8217;s Debug Toolbar is probably the most impressive (And in contrast, Zend Framework the least), even providing [...]</description>
		<content:encoded><![CDATA[<p>[...] tracing tools, a couple of frameworks have their own, more or less specific, tools. Symfony&#8217;s Debug Toolbar is probably the most impressive (And in contrast, Zend Framework the least), even providing [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Datawinds &#187; Blog Archive &#187; Useful in-browser development tools for PHP</title>
		<link>http://morethanseven.net/posts/nice-bits-of-symfony-web-debug-toolbar/#comment-8831</link>
		<dc:creator>Datawinds &#187; Blog Archive &#187; Useful in-browser development tools for PHP</dc:creator>
		<pubDate>Mon, 09 Jun 2008 06:09:31 +0000</pubDate>
		<guid isPermaLink="false">http://morethanseven.net/posts/nice-bits-of-symfony-web-debug-toolbar/#comment-8831</guid>
		<description>[...] tracing tools, a couple of frameworks have their own, more or less specific, tools. Symfony&#8217;s Debug Toolbar is probably the most impressive (And in contrast, Zend Framework the least), even providing [...]</description>
		<content:encoded><![CDATA[<p>[...] tracing tools, a couple of frameworks have their own, more or less specific, tools. Symfony&#8217;s Debug Toolbar is probably the most impressive (And in contrast, Zend Framework the least), even providing [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SitePoint Blogs &#187; Useful in-browser development tools for PHP</title>
		<link>http://morethanseven.net/posts/nice-bits-of-symfony-web-debug-toolbar/#comment-8780</link>
		<dc:creator>SitePoint Blogs &#187; Useful in-browser development tools for PHP</dc:creator>
		<pubDate>Mon, 12 May 2008 21:54:11 +0000</pubDate>
		<guid isPermaLink="false">http://morethanseven.net/posts/nice-bits-of-symfony-web-debug-toolbar/#comment-8780</guid>
		<description>[...] tracing tools, a couple of frameworks have their own, more or less specific, tools. Symfony&#8217;s Debug Toolbar is probably the most impressive (And in contrast, Zend Framework the least), even providing [...]</description>
		<content:encoded><![CDATA[<p>[...] tracing tools, a couple of frameworks have their own, more or less specific, tools. Symfony&#8217;s Debug Toolbar is probably the most impressive (And in contrast, Zend Framework the least), even providing [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Pennell</title>
		<link>http://morethanseven.net/posts/nice-bits-of-symfony-web-debug-toolbar/#comment-8192</link>
		<dc:creator>Matthew Pennell</dc:creator>
		<pubDate>Sun, 30 Dec 2007 20:36:33 +0000</pubDate>
		<guid isPermaLink="false">http://morethanseven.net/posts/nice-bits-of-symfony-web-debug-toolbar/#comment-8192</guid>
		<description>CodeIgniter has a sort-of debug mode (triggered by calling a method in the controller) that spits out a nicely formatted list of stack calls and queries at the bottom of the page - like you say, it's useful when you're trying to track down database bottlenecks (although the logging class is great too, if you can run that in Terminal when testing).</description>
		<content:encoded><![CDATA[<p>CodeIgniter has a sort-of debug mode (triggered by calling a method in the controller) that spits out a nicely formatted list of stack calls and queries at the bottom of the page &#8211; like you say, it&#8217;s useful when you&#8217;re trying to track down database bottlenecks (although the logging class is great too, if you can run that in Terminal when testing).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sarat Pediredla</title>
		<link>http://morethanseven.net/posts/nice-bits-of-symfony-web-debug-toolbar/#comment-8178</link>
		<dc:creator>Sarat Pediredla</dc:creator>
		<pubDate>Wed, 26 Dec 2007 21:28:16 +0000</pubDate>
		<guid isPermaLink="false">http://morethanseven.net/posts/nice-bits-of-symfony-web-debug-toolbar/#comment-8178</guid>
		<description>This is definitely a nice thing in Symfony with the "toolbar" being a feature of symfony.

I can't remember rails but CakePHP in "dev" or "debug" mode shows pretty much the same debug messages although I have to admit they are neither so prettily formatted nor unobtrusive. However, that is just a matter of some CSS and Javascript trickery on the debug div. 

What is interesting though is looking at the log in the first image, the symfony framework seems to be modelled on the Java servlet + Struts based model where you have a Contextthat handles a Request that passes through Filters and is then handled by a Action and finally rendered by a View. Very interesting from our perspective as daily Struts 2 users. Symfony might be an easier leap for us than CakePHP and certainly something worth looking into for us.</description>
		<content:encoded><![CDATA[<p>This is definitely a nice thing in Symfony with the &#8220;toolbar&#8221; being a feature of symfony.</p>
<p>I can&#8217;t remember rails but CakePHP in &#8220;dev&#8221; or &#8220;debug&#8221; mode shows pretty much the same debug messages although I have to admit they are neither so prettily formatted nor unobtrusive. However, that is just a matter of some CSS and Javascript trickery on the debug div. </p>
<p>What is interesting though is looking at the log in the first image, the symfony framework seems to be modelled on the Java servlet + Struts based model where you have a Contextthat handles a Request that passes through Filters and is then handled by a Action and finally rendered by a View. Very interesting from our perspective as daily Struts 2 users. Symfony might be an easier leap for us than CakePHP and certainly something worth looking into for us.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
