<?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>Wink Saville's Blog &#187; firefox</title>
	<atom:link href="http://www.winksaville.com/blog/category/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.winksaville.com/blog</link>
	<description>My personal notes</description>
	<lastBuildDate>Tue, 08 Sep 2009 14:45:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ajax &#8211; responses must have Content-Length</title>
		<link>http://www.winksaville.com/blog/firefox/ajax-responses-must-have-content-length/</link>
		<comments>http://www.winksaville.com/blog/firefox/ajax-responses-must-have-content-length/#comments</comments>
		<pubDate>Sun, 24 Feb 2008 22:30:58 +0000</pubDate>
		<dc:creator>wink</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.winksaville.com/blog/firefox/ajax-responses-must-have-content-length/</guid>
		<description><![CDATA[When responding to an AJAX request, actually when responding to any HTTP/1.1 request that is going to be kept alive you need to have a Content-Length header field even if the the content length is 0.
]]></description>
		<wfw:commentRss>http://www.winksaville.com/blog/firefox/ajax-responses-must-have-content-length/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox/Apache &#8211; debug server side php code</title>
		<link>http://www.winksaville.com/blog/firefox/firefoxapache-debug-server-side-php-code/</link>
		<comments>http://www.winksaville.com/blog/firefox/firefoxapache-debug-server-side-php-code/#comments</comments>
		<pubDate>Fri, 22 Feb 2008 19:10:35 +0000</pubDate>
		<dc:creator>wink</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.winksaville.com/blog/firefox/firefoxapache-debug-server-side-php-code/</guid>
		<description><![CDATA[To apache debug server-side scripts the typical solution is to usr print statements back to the browser. But that won&#8217;t work for AJAX as there isn&#8217;t any place to view the output.
The other method is to log to a file

$fp = fopen(&#8217;debug.php&#8217;, &#8216;ab&#8217;);
fwrite($fp, &#8220;debug data &#8230;&#8221;);
// Then eventually close
fclose($fp);

]]></description>
		<wfw:commentRss>http://www.winksaville.com/blog/firefox/firefoxapache-debug-server-side-php-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://www.winksaville.com/blog/firefox/65/</link>
		<comments>http://www.winksaville.com/blog/firefox/65/#comments</comments>
		<pubDate>Fri, 22 Feb 2008 19:03:16 +0000</pubDate>
		<dc:creator>wink</dc:creator>
				<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.winksaville.com/blog/firefox/65/</guid>
		<description><![CDATA[Debugging Firefox:
*) DOM Inspector:
By default on Ubuntu the firefox DOM inspector isn&#8217;t enabled and when reading &#8220;Programmin Firefox&#8221; it is one of the recommended tools
But it isn&#8217;t enabled by default, apparently this is the case for Windows also where you need to do a custom install to get it. For Ubuntu I installed it via [...]]]></description>
		<wfw:commentRss>http://www.winksaville.com/blog/firefox/65/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox &#8211; Adding preferences</title>
		<link>http://www.winksaville.com/blog/firefox/firefox-adding-preferences/</link>
		<comments>http://www.winksaville.com/blog/firefox/firefox-adding-preferences/#comments</comments>
		<pubDate>Fri, 22 Feb 2008 18:54:23 +0000</pubDate>
		<dc:creator>wink</dc:creator>
				<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.winksaville.com/blog/firefox/firefox-adding-preferences/</guid>
		<description><![CDATA[Adding preferences isn&#8217;t too hard. I followed the instructions here. I had several problems of my own making plus one in the example code. The example code problem was:
 var gMyPrefs = new PrefsWrapper(&#8221;extensions.myextension.&#8221;);
PrefsWrapper needed a number &#8220;1&#8243; appended:

var gMyPrefs = new PrefsWrapper1(&#8221;extensions.myextension.&#8221;);

The other minor problem was &#8220;myextension&#8221; and &#8220;yourextension&#8221; needs to be &#8220;sparkrocket&#8221;.
The problems [...]]]></description>
		<wfw:commentRss>http://www.winksaville.com/blog/firefox/firefox-adding-preferences/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox &#8211; building an extension</title>
		<link>http://www.winksaville.com/blog/firefox/firefox-building-an-extension/</link>
		<comments>http://www.winksaville.com/blog/firefox/firefox-building-an-extension/#comments</comments>
		<pubDate>Fri, 22 Feb 2008 18:34:04 +0000</pubDate>
		<dc:creator>wink</dc:creator>
				<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.winksaville.com/blog/firefox/firefox-building-an-extension/</guid>
		<description><![CDATA[Here&#8217;s an update to this post 7/6/2008:
Use this link from firefox and in particular Setup the Development Environment.
&#8212;-
I used this link as a model for creating an extension which put a button on FF&#8217;s address bar: Building an extension
I more or less followed those instructions: Firefox user interface is written as a .xul file, pronounced [...]]]></description>
		<wfw:commentRss>http://www.winksaville.com/blog/firefox/firefox-building-an-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debugging initialization of Firefox extensions</title>
		<link>http://www.winksaville.com/blog/firefox/debugging-initialization-of-firefox-extensions/</link>
		<comments>http://www.winksaville.com/blog/firefox/debugging-initialization-of-firefox-extensions/#comments</comments>
		<pubDate>Sun, 02 Dec 2007 19:31:59 +0000</pubDate>
		<dc:creator>wink</dc:creator>
				<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://winksaville.com/blog/?p=15</guid>
		<description><![CDATA[That worked beautifully, I wanted to set a break point
on the first line of my code that executed after it loaded.
I ran:
firefox -chrome chrome://venkman/content
and then did &#8220;window.open()&#8221; my code loaded and I
set a future breakpoint on the first statement in the file.
I then checked &#8220;Save Break/Watch Settings On Exit&#8221; in
the file menu and then exited [...]]]></description>
		<wfw:commentRss>http://www.winksaville.com/blog/firefox/debugging-initialization-of-firefox-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FF extensions in MacOSX</title>
		<link>http://www.winksaville.com/blog/firefox/ff-extensions-in-macosx/</link>
		<comments>http://www.winksaville.com/blog/firefox/ff-extensions-in-macosx/#comments</comments>
		<pubDate>Sat, 24 Nov 2007 19:17:42 +0000</pubDate>
		<dc:creator>wink</dc:creator>
				<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://winksaville.com/blog/?p=10</guid>
		<description><![CDATA[For some reason sparkrocket extension isn&#8217;t working on the mac, but interesting enough if I run the browser in the browser by using chrome://browser/content/browser.xul with the sparkrocket extension installed it works perfectly.
I couldn&#8217;t find browser.xul by searching the OS (find . -name &#8216;browser.xul&#8217;). I searched the net and found that it is in a jar [...]]]></description>
		<wfw:commentRss>http://www.winksaville.com/blog/firefox/ff-extensions-in-macosx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
