<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ajax Bestiary &#187; Firebug</title>
	<atom:link href="http://www.ajaxbestiary.com/tag/firebug/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ajaxbestiary.com</link>
	<description>AJAX Development, News, Techniques &#38; More</description>
	<lastBuildDate>Wed, 01 Feb 2012 12:46:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Expand your debugging aresnal with pi.debugger</title>
		<link>http://www.ajaxbestiary.com/2008/04/08/expand-your-debugging-aresnal-with-pidebugger/</link>
		<comments>http://www.ajaxbestiary.com/2008/04/08/expand-your-debugging-aresnal-with-pidebugger/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 15:28:10 +0000</pubDate>
		<dc:creator>Don Albrecht</dc:creator>
				<category><![CDATA[Misc Toolkits]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Widget]]></category>
		<category><![CDATA[debugger]]></category>
		<category><![CDATA[Firebug]]></category>

		<guid isPermaLink="false">http://www.ajaxbestiary.com/?p=317</guid>
		<description><![CDATA[pi.debugger is a new debug console that acts as a graceful counterpart to firebug.  I&#8217;ve  and Firebug is an awesome tool for debugging, hands down.  Unfortunately, it is Firefox specific and has to be installed on the clients machine. Firebug lite is great, but it is extremely limited and provides little more than a logging [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p><a href="http://www.ajaxbestiary.com/wp-content/uploads/2008/04/pidebugger.png"><img class="alignnone size-full wp-image-318" title="pidebugger" src="http://www.ajaxbestiary.com/wp-content/uploads/2008/04/pidebugger.png" alt="" width="500" height="151" /></a></p>
<p>pi.debugger is a new debug console that acts as a graceful counterpart to firebug.  I&#8217;ve  and Firebug is an awesome tool for debugging, hands down.  Unfortunately, it is Firefox specific and has to be installed on the clients machine.</p>
<p>Firebug lite is great, but it is extremely limited and provides little more than a logging console.  pi.debugger sits somewhere in between.  It&#8217;s not as full featured as firebug, but it does provide the ever useful evaluation console as well as a DOM browser.</p>
<p>Check it out here:</p>
<p><a href="http://code.google.com/p/pi-js/">http://code.google.com/p/pi-js/</a></p>
<p>And test drive it here:</p>
<p><a href="http://kodfabrik.com/app/pi.debugger/">http://kodfabrik.com/app/pi.debugger/</a></p>
<p><img src="http://www.ajaxbestiary.com/?voyeur=1"></p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.ajaxbestiary.com/2008/04/08/expand-your-debugging-aresnal-with-pidebugger/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Simplify Debugging With Firebug Lite</title>
		<link>http://www.ajaxbestiary.com/2007/12/03/simplify-debugging-with-firebug-lite/</link>
		<comments>http://www.ajaxbestiary.com/2007/12/03/simplify-debugging-with-firebug-lite/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 19:37:31 +0000</pubDate>
		<dc:creator>Don Albrecht</dc:creator>
				<category><![CDATA[Misc Toolkits]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Cross-Browser]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Firebug]]></category>

		<guid isPermaLink="false">http://www.ajaxbestiary.com/2007/12/03/simplify-debugging-with-firebug-lite/</guid>
		<description><![CDATA[Most of us are familiar with Firebug, the powerful &#38; straightforward debugging extension for firefox.  You may not be familiar with it&#8217;s little brother, Firebug lite. Firebug lite is exactly as it sounds, a light-weight firebug console for any browser.  Simply include the firebug script tag in any page and you&#8217;re console.log(); operations will work [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p><img src="http://www.ajaxbestiary.com/wp-content/uploads/2007/12/firebuglite.png" alt="Firebug Lite in Safari" />Most of us are familiar with Firebug, the powerful &amp; straightforward debugging extension for firefox.  You may not be familiar with it&#8217;s little brother, Firebug lite.</p>
<p>Firebug lite is exactly as it sounds, a light-weight firebug console for any browser.  Simply include the firebug script tag in any page and you&#8217;re console.log(); operations will work on any browser (IE, Safari, Firefox &amp; More).  What&#8217;s more, if Firebug is installed in Firefox, it logs to the full Firebug console.  You can pull up the console by hitting F12 or CTRL + SHIFT + L at any time.</p>
<p>Don&#8217;t want to bother with hitting F12 every time you reload?  Just attach a debug=&#8221;true&#8221; attribute to the html element (&lt;html debug=&#8221;true&#8221;&gt; ).</p>
<p><strong>But wait, There&#8217;s more.</strong></p>
<p>Firebug Lite has an even littler sibling called Firebugx.  Replace the call to firebug.js with a call to firebugx.js and you neutralize any console calls in your code without having to hunt them down or find / replace.  Something that would have saved me a whole heap of trouble with the last <a href="http://www.ajaxbestiary.com/2007/12/02/blueprint-layout-tool-03/#comments">BLT</a> deployment.</p>
<p>Download Firebug Lite at:</p>
<p><a href="http://www.getfirebug.com/lite.html">http://www.getfirebug.com/lite.html </a></p>
<p><img src="http://www.ajaxbestiary.com/?voyeur=1"></p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.ajaxbestiary.com/2007/12/03/simplify-debugging-with-firebug-lite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Streamline Your Code &#8211; Test &#8211; Debug Cycle with Fireclipse</title>
		<link>http://www.ajaxbestiary.com/2007/10/26/streamline-your-code-test-debug-cycle-with-fireclipse/</link>
		<comments>http://www.ajaxbestiary.com/2007/10/26/streamline-your-code-test-debug-cycle-with-fireclipse/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 14:08:55 +0000</pubDate>
		<dc:creator>Don Albrecht</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Firebug]]></category>
		<category><![CDATA[Handy Scripts]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://www.ajaxbestiary.com/2007/10/26/streamline-your-code-test-debug-cycle-with-fireclipse/</guid>
		<description><![CDATA[Although there are some comments that it may not be ready for Prime Time.  Fireclipse may be the tool you need to supercharge your development cycle.  What it is An Eclipse Plugin &#38; Expanded version of Firebug. The Expanded Firebug provides an Eclipse Tab within the browser environment.  The Eclipse plugin integrates the Firebug console [...]]]></description>
			<content:encoded><![CDATA[
<!-- google_ad_section_start -->
<p>Although there are some comments that it may not be ready for Prime Time.  Fireclipse may be the tool you need to supercharge your development cycle.</p>
<p><strong> What it is</strong></p>
<p>An Eclipse Plugin &amp; Expanded version of Firebug.</p>
<p>The Expanded Firebug provides an Eclipse Tab within the browser environment.  The Eclipse plugin integrates the Firebug console into eclipse.</p>
<p>Get it Online Here: <a href="http://www.almaden.ibm.com/u/bartonjj/fireclipse/index.html">http://www.almaden.ibm.com/u/bartonjj/fireclipse/index.html </a></p>
<p><img src="http://www.ajaxbestiary.com/?voyeur=1"></p>
<!-- google_ad_section_end -->
]]></content:encoded>
			<wfw:commentRss>http://www.ajaxbestiary.com/2007/10/26/streamline-your-code-test-debug-cycle-with-fireclipse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

