<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Mark Finkle's Weblog</title>
	
	<link>http://starkravingfinkle.org/blog</link>
	<description />
	<pubDate>Sat, 22 Nov 2008 07:16:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/weborama" type="application/rss+xml" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site.</feedburner:browserFriendly><item>
		<title>Adblock Plus comes to Prism</title>
		<link>http://feeds.feedburner.com/~r/weborama/~3/461585271/</link>
		<comments>http://starkravingfinkle.org/blog/2008/11/adblock-plus-comes-to-prism/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 07:16:11 +0000</pubDate>
		<dc:creator>Mark Finkle</dc:creator>
		
		<category><![CDATA[Mozilla]]></category>

		<category><![CDATA[WebRunner]]></category>

		<guid isPermaLink="false">http://starkravingfinkle.org/blog/?p=318</guid>
		<description><![CDATA[Wladimir Palant announced yesterday that Adblock Plus 1.0rc1 will ship with support for Prism 0.9! Pretty cool stuff. Many Prism users have asked about getting support for popular Firefox add-ons. Adblock Plus has been at the top of the list. Thanks Wladimir.
For those add-on developers out there wondering what changes need to be made to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://adblockplus.org/blog/">Wladimir Palant</a> announced yesterday that Adblock Plus 1.0rc1 will ship with <a href="http://adblockplus.org/development-builds/added-support-for-prism-09">support for Prism 0.9</a>! Pretty cool stuff. Many <a href="https://developer.mozilla.org/en/Prism">Prism</a> users have asked about getting support for popular Firefox add-ons. <a href="https://addons.mozilla.org/en-US/firefox/addon/1865">Adblock Plus</a> has been at the top of the list. Thanks Wladimir.</p>
<p>For those add-on developers out there wondering what changes need to be made to Adblock Plus to support Prism, here is the <a href="http://hg.mozdev.org/adblockplus/rev/1b45d99bf5a6">patch</a>. Wladimir does a great job keeping the code clean. He also worked around a bug in Prism 0.9 that has been fixed on our trunk.</p>
<p><a href="http://www.luckydisasters.com">Lucky Disasters</a> has also been collecting some <a href="http://www.luckydisasters.com/2008/11/06/prism-information-in-depth/">useful information</a> for Prism add-on developers.</p>
<img src="http://feeds.feedburner.com/~r/weborama/~4/461585271" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://starkravingfinkle.org/blog/2008/11/adblock-plus-comes-to-prism/feed/</wfw:commentRss>
		<feedburner:origLink>http://starkravingfinkle.org/blog/2008/11/adblock-plus-comes-to-prism/</feedburner:origLink></item>
		<item>
		<title>Adding Mochitests to a XULRunner Application</title>
		<link>http://feeds.feedburner.com/~r/weborama/~3/461239557/</link>
		<comments>http://starkravingfinkle.org/blog/2008/11/adding-mochitests-to-a-xulrunner-application/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 22:28:56 +0000</pubDate>
		<dc:creator>Mark Finkle</dc:creator>
		
		<category><![CDATA[Mobile]]></category>

		<category><![CDATA[Mozilla]]></category>

		<category><![CDATA[XULExplorer]]></category>

		<guid isPermaLink="false">http://starkravingfinkle.org/blog/?p=317</guid>
		<description><![CDATA[Last weekend I decide to add some Mochitest unit testing to XUL Explorer, one of my XULRunner based applications. Luckily, this is something Dave Townsend already did with a different XULRunner application, McCoy. It was pretty easy to use Dave&#8217;s McCoy patch as a basis for getting things working in XUL Explorer. I used XULRunner [...]]]></description>
			<content:encoded><![CDATA[<p>Last weekend I decide to add some <a href="https://developer.mozilla.org/en/Mochitest">Mochitest</a> unit testing to <a href="https://developer.mozilla.org/en/XUL_Explorer">XUL Explorer</a>, one of my XULRunner based applications. Luckily, this is something <a href="http://www.oxymoronical.com">Dave Townsend</a> already did with a different XULRunner application, <a href="https://developer.mozilla.org/En/McCoy">McCoy</a>. It was pretty easy to use Dave&#8217;s McCoy <a href="https://bugzilla.mozilla.org/attachment.cgi?id=319953&#038;action=edit">patch</a> as a basis for getting things working in XUL Explorer. I used XULRunner 1.9.0.4 for building XUL Explorer and, amazingly, my unit tests ran on the first try! Here&#8217;s the <a href="http://viewvc.svn.mozilla.org/vc?view=rev&#038;revision=20121">changeset</a>.</p>
<p>Next, I started working on adding the same support to <a href="http://wiki.mozilla.org/Mobile">Fennec</a>. I hit a snag because of changes in Mozilla 1.9.1 to support new types of testing. I made a <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465823">patch</a> (reviewed and waiting to land) that makes things work again. We are hoping that some of the tweaks needed by Dave&#8217;s patch can be rolled into the mainline Mochitests system.</p>
<p>Now that I have some experience under my belt, I plan to add some docs no <a href="http://developer.mozilla.org">MDC</a>.  I also plan to add the necessary code templates to XUL Explorer and <a href="https://wiki.mozilla.org/FizzyPop">FizzyPop</a> application generators, so anyone making a new XUL application automatically get Mochitest support.</p>
<p>Thanks Dave <img src='http://starkravingfinkle.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/weborama/~4/461239557" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://starkravingfinkle.org/blog/2008/11/adding-mochitests-to-a-xulrunner-application/feed/</wfw:commentRss>
		<feedburner:origLink>http://starkravingfinkle.org/blog/2008/11/adding-mochitests-to-a-xulrunner-application/</feedburner:origLink></item>
		<item>
		<title>Mozilla Developer and User Groups</title>
		<link>http://feeds.feedburner.com/~r/weborama/~3/460855306/</link>
		<comments>http://starkravingfinkle.org/blog/2008/11/mozilla-developer-and-user-groups/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 15:20:52 +0000</pubDate>
		<dc:creator>Mark Finkle</dc:creator>
		
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://starkravingfinkle.org/blog/?p=316</guid>
		<description><![CDATA[I started working at Mozilla Corporation as a platform evangelist and was able to get up to speed fairly quickly, in a large part because of help from various community members.  In my evangelism role, I really enjoyed getting to travel around and talk about Mozilla technology to anybody who wanted to listen. The [...]]]></description>
			<content:encoded><![CDATA[<p>I started working at Mozilla Corporation as a platform evangelist and was able to get up to speed fairly quickly, in a large part because of help from various community members.  In my evangelism role, I really enjoyed getting to travel around and talk about Mozilla technology to anybody who wanted to listen. The <a href="http://wiki.mozilla.org/DeveloperDays">Developer Day</a> meet-ups were especially fun. I&#8217;m on the Mozilla Mobile team now, but still like to do evangelism work when I can.</p>
<p>One problem we had with Developer Days was trying to figure out where &#8220;concentrations&#8221; of Mozilla developers, or people interested in Mozilla development, were located. It made it hard to plan locations for Developer Day events. Recently, someone on IRC asked about Mozilla User Groups and if there was anyone located near him (Rayleigh/Durham area in this case). I couldn&#8217;t give him any definitive answer, but it did get us talking about how we could start collection information about where Mozilla developers are located and if they meet periodically. The only such group I know of is the <a href="http://groups.google.ca/group/northwestmozdev">NorthWestMozDev</a> group.</p>
<p>What other groups are out there? Perhaps using <a href="http://www.meetup.com/">Meetup</a> might be a good way to can track of various Mozilla groups. There are already <a href="http://mozilla.meetup.com/">Mozilla</a> and <a href="http://xul.meetup.com/">XUL</a> categories on Meetup. Hopefully, this could help other interested developers meet people and get involved with Mozilla. It can also help Mozilla find great locations to have Developer Day events.</p>
<p>You don&#8217;t need to be a hard core Mozilla developer. Developer Days are focused on anybody with an interest in Mozilla projects, products or technologies.</p>
<img src="http://feeds.feedburner.com/~r/weborama/~4/460855306" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://starkravingfinkle.org/blog/2008/11/mozilla-developer-and-user-groups/feed/</wfw:commentRss>
		<feedburner:origLink>http://starkravingfinkle.org/blog/2008/11/mozilla-developer-and-user-groups/</feedburner:origLink></item>
		<item>
		<title>XULRunner 1.9.0.4</title>
		<link>http://feeds.feedburner.com/~r/weborama/~3/456156642/</link>
		<comments>http://starkravingfinkle.org/blog/2008/11/xulrunner-1904/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 16:38:22 +0000</pubDate>
		<dc:creator>Mark Finkle</dc:creator>
		
		<category><![CDATA[Mobile]]></category>

		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://starkravingfinkle.org/blog/?p=315</guid>
		<description><![CDATA[The newest official XULRunner has been released. XULRunner 1.9.0.4 matches the Firefox 3.0.4 release. For XULRunner developers, most of the changes in 1.9.0.4 are related to security fixes.
Runtimes
SDKs
Source tarball
For those interested in the mobile versions of XULRunner, nightly builds of XULRunner for Maemo can be found here. The mobile tinderbox is also up and running.
Want [...]]]></description>
			<content:encoded><![CDATA[<p>The newest official <a href="https://developer.mozilla.org/en/XULRunner">XULRunner</a> has been released. <a href="http://developer.mozilla.org/en/docs/XULRunner_1.9_Release_Notes">XULRunner 1.9.0.4</a> matches the <a href="http://www.mozilla.com/en-US/firefox/3.0.4/releasenotes/">Firefox 3.0.4</a> release. For XULRunner developers, most of the changes in 1.9.0.4 are related to <a href="http://www.mozilla.org/security/known-vulnerabilities/firefox30.html#firefox3.0.4">security fixes</a>.</p>
<p><a href="ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/1.9.0.4/runtimes">Runtimes</a><br />
<a href="ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/1.9.0.4/sdk">SDKs</a><br />
<a href="ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/1.9.0.4/source">Source tarball</a></p>
<p>For those interested in the mobile versions of XULRunner, nightly builds of XULRunner for Maemo can be found <a href="http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mobile-browser-linux-arm/">here</a>. The <a href="http://tinderbox.mozilla.org/showbuilds.cgi?tree=Mobile">mobile tinderbox</a> is also up and running.</p>
<p>Want to get started building XULRunner applications? We have an <a href="https://developer.mozilla.org/en/Getting_started_with_XULRunner">article</a> for that.</p>
<img src="http://feeds.feedburner.com/~r/weborama/~4/456156642" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://starkravingfinkle.org/blog/2008/11/xulrunner-1904/feed/</wfw:commentRss>
		<feedburner:origLink>http://starkravingfinkle.org/blog/2008/11/xulrunner-1904/</feedburner:origLink></item>
		<item>
		<title>XULRunner at MozCamp 2008</title>
		<link>http://feeds.feedburner.com/~r/weborama/~3/438770986/</link>
		<comments>http://starkravingfinkle.org/blog/2008/11/xulrunner-at-mozcamp-2008/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 05:39:30 +0000</pubDate>
		<dc:creator>Mark Finkle</dc:creator>
		
		<category><![CDATA[Mobile]]></category>

		<category><![CDATA[Mozilla]]></category>

		<category><![CDATA[XPCOM]]></category>

		<category><![CDATA[XUL]]></category>

		<guid isPermaLink="false">http://starkravingfinkle.org/blog/?p=312</guid>
		<description><![CDATA[I decided to take a detour in my XULRunner session at MozCamp. I have done several XULRunner talks over the last few years. I usually focus on the functionality built into the platform and discuss the benefits of using Mozilla technologies to develop applications.
This crowd was very Mozilla savvy and many had at least experimented [...]]]></description>
			<content:encoded><![CDATA[<p>I decided to take a detour in my <a href="https://wiki.mozilla.org/EU_MozCamp_2008/Programme/XULRunner">XULRunner session</a> at <a href="https://wiki.mozilla.org/EU_MozCamp_2008">MozCamp</a>. I have done several XULRunner talks over the last few years. I usually focus on the functionality built into the platform and discuss the benefits of using Mozilla technologies to develop applications.</p>
<p>This crowd was very Mozilla savvy and many had at least experimented with building XULRunner applications. So, instead of my normal slide deck, I went with a &#8220;walk-through&#8221; of using the Mozilla build system to <a href="https://developer.mozilla.org/en/Creating_XULRunner_Apps_with_the_Mozilla_Build_System">create a XULRunner application</a>. I did the same with setting up an <a href="https://developer.mozilla.org/En/XULRunner/Application_Update">auto-updating XULRunner application</a>. I think the Mozilla build system is something any XULRunner developer should learn and setting up auto-updating always seems to frustrate developers.</p>
<p>The talk went very well. Thanks to <a href="http://home.kairo.at/blog/">Robert Kaiser</a> for helping me fill in some blanks. We had some good discussion and I could have spent a lot more time covering some of the smaller details. I think I might look into expanding this &#8220;walk-through&#8221; format.</p>
<p>Another topic we talked about was the potential of <a href="https://developer.mozilla.org/en/XULRunner">XULRunner</a> on mobile devices. Many developers are excited to see XULRunner become available for mobile platforms. The ability to move XUL applications from desktops to mobile devices is fairly powerful. <a href="http://starkravingfinkle.org/blog/2008/10/fennec-m9-user-experience-alpha">Fennec</a>, for example, runs just fine on any supported XULRunner platform - without any changes.</p>
<img src="http://feeds.feedburner.com/~r/weborama/~4/438770986" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://starkravingfinkle.org/blog/2008/11/xulrunner-at-mozcamp-2008/feed/</wfw:commentRss>
		<feedburner:origLink>http://starkravingfinkle.org/blog/2008/11/xulrunner-at-mozcamp-2008/</feedburner:origLink></item>
		<item>
		<title>Fennec - Here Comes AMO</title>
		<link>http://feeds.feedburner.com/~r/weborama/~3/438001908/</link>
		<comments>http://starkravingfinkle.org/blog/2008/10/fennec-here-comes-amo/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 12:46:06 +0000</pubDate>
		<dc:creator>Mark Finkle</dc:creator>
		
		<category><![CDATA[Extensions]]></category>

		<category><![CDATA[Mobile]]></category>

		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://starkravingfinkle.org/blog/?p=309</guid>
		<description><![CDATA[Last night, support for Fennec on AMO was pushed live. A big thank you to Mike Morgan and crew for making this happen. There are no recommended Fennec add-ons yet, so you need to search for them. Here are some results, based on the two add-ons I know support Fennec and are on AMO:


Extending this [...]]]></description>
			<content:encoded><![CDATA[<p>Last night, support for <a href="http://wiki.mozilla.org/Mobile">Fennec</a> on <a href="http://addons.mozilla.org">AMO</a> was pushed live. A big thank you to Mike Morgan and crew for making this happen. There are no recommended Fennec add-ons yet, so you need to search for them. Here are some results, based on the <a href="http://starkravingfinkle.org/blog/2008/10/fennec-here-come-the-add-ons/">two add-ons</a> I know support Fennec and are on AMO:</p>
<p><img src="http://starkravingfinkle.org/blog/wp-content/uploads/2008/10/localinstall-fennec-sm.png" alt="" title="localinstall" width="475" height="268" class="alignnone size-full wp-image-310" /></p>
<p><img src="http://starkravingfinkle.org/blog/wp-content/uploads/2008/10/urlfixer-fennec-sm.png" alt="" title="urlfixer" width="475" height="268" class="alignnone size-full wp-image-311" /></p>
<p>Extending this mobile browser is now fully operational!</p>
<img src="http://feeds.feedburner.com/~r/weborama/~4/438001908" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://starkravingfinkle.org/blog/2008/10/fennec-here-comes-amo/feed/</wfw:commentRss>
		<feedburner:origLink>http://starkravingfinkle.org/blog/2008/10/fennec-here-comes-amo/</feedburner:origLink></item>
		<item>
		<title>XUL, Meet HTML - It’s All Good</title>
		<link>http://feeds.feedburner.com/~r/weborama/~3/437648791/</link>
		<comments>http://starkravingfinkle.org/blog/2008/10/xul-meet-html-its-all-good/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 04:11:22 +0000</pubDate>
		<dc:creator>Mark Finkle</dc:creator>
		
		<category><![CDATA[HTML]]></category>

		<category><![CDATA[Mozilla]]></category>

		<category><![CDATA[XUL]]></category>

		<guid isPermaLink="false">http://starkravingfinkle.org/blog/?p=308</guid>
		<description><![CDATA[One of the opportunities I had at MozCamp was to get caught up on the stuff happening in Thunderbird &#038; Calendar. They have a goldmine of great data, functionality and UX possibilities. During some of the sessions and a small ad-hoc discussion, the use of HTML in XUL to create compelling, interesting and useful user [...]]]></description>
			<content:encoded><![CDATA[<p>One of the opportunities I had at <a href="https://wiki.mozilla.org/EU_MozCamp_2008">MozCamp</a> was to get caught up on the stuff happening in Thunderbird &#038; Calendar. They have a goldmine of great data, functionality and UX possibilities. During some of the sessions and a small ad-hoc discussion, the use of HTML in <a href="https://developer.mozilla.org/en/XUL">XUL</a> to create compelling, interesting and useful user interfaces came up. <a href="https://wiki.mozilla.org/Thunderbird:Thunderbird3">Thunderbird 3</a> will be using HTML to enhance to appearance and functionality of message display. <a href="https://wiki.mozilla.org/Calendar:Home_Page">Calendar</a> might be using HTML to do the same for displaying tasks, IIRC. The examples I saw looked great.</p>
<p>I got the feeling that the designers and developers thought that using so much HTML in XUL was, in some way, anti-XUL. <strong>NO WAY!</strong> It&#8217;s my opinion that using HTML in this way - enhancing a user interface - shows the power of XUL. The ability to seamlessly mix different markup languages is quite impressive. How many other UI markup languages can do that?</p>
<p>The use of HTML, SVG and specifically, <code>&lt;canvas&gt;</code> in XUL is not new. You&#8217;ll find many examples of add-ons and applications that go beyond XUL to create elements of the UI. XUL itself uses HTML as a foundation for implementing widgets.</p>
<p>Here are some examples from previous posts on using <a href="http://starkravingfinkle.org/blog/2006/12/xul-clippings/">HTML, SVG</a> and <a href="http://starkravingfinkle.org/blog/2007/01/xul-clippings-canvas/"><code>&lt;canvas&gt;</code></a> in XUL. Start spicing up your XUL UI today.</p>
<img src="http://feeds.feedburner.com/~r/weborama/~4/437648791" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://starkravingfinkle.org/blog/2008/10/xul-meet-html-its-all-good/feed/</wfw:commentRss>
		<feedburner:origLink>http://starkravingfinkle.org/blog/2008/10/xul-meet-html-its-all-good/</feedburner:origLink></item>
		<item>
		<title>Fennec - Here Come The Add-ons</title>
		<link>http://feeds.feedburner.com/~r/weborama/~3/437613652/</link>
		<comments>http://starkravingfinkle.org/blog/2008/10/fennec-here-come-the-add-ons/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 03:20:06 +0000</pubDate>
		<dc:creator>Mark Finkle</dc:creator>
		
		<category><![CDATA[Extensions]]></category>

		<category><![CDATA[Mobile]]></category>

		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://starkravingfinkle.org/blog/?p=307</guid>
		<description><![CDATA[Okay, so it&#8217;s only two add-ons, but it&#8217;s a start. First, MR Tech&#8217;s Local Install from Mel Reyes was updated with support for Fennec. Then, URL Fixer from Chris Finke got support for Fennec.
A big thanks to Mel and Chris for taking the time to support Fennec, even in it&#8217;s alpha condition.
]]></description>
			<content:encoded><![CDATA[<p>Okay, so it&#8217;s only two add-ons, but it&#8217;s a start. First, <a href="http://www.mrtech.com/extensions/local_install/">MR Tech&#8217;s Local Install</a> from Mel Reyes was updated with support for Fennec. Then, <a href="http://www.chrisfinke.com/2008/10/29/url-fixer-now-compatible-with-fennec-mobile-firefox/">URL Fixer</a> from Chris Finke got support for Fennec.</p>
<p>A big thanks to Mel and Chris for taking the time to support <a href="http://wiki.mozilla.org/Mobile">Fennec</a>, even in it&#8217;s <a href="http://starkravingfinkle.org/blog/2008/10/fennec-m9-user-experience-alpha">alpha</a> condition.</p>
<img src="http://feeds.feedburner.com/~r/weborama/~4/437613652" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://starkravingfinkle.org/blog/2008/10/fennec-here-come-the-add-ons/feed/</wfw:commentRss>
		<feedburner:origLink>http://starkravingfinkle.org/blog/2008/10/fennec-here-come-the-add-ons/</feedburner:origLink></item>
		<item>
		<title>Fennec - Size Does Matter</title>
		<link>http://feeds.feedburner.com/~r/weborama/~3/428877196/</link>
		<comments>http://starkravingfinkle.org/blog/2008/10/fennec-size-does-matter/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 19:27:56 +0000</pubDate>
		<dc:creator>Mark Finkle</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://starkravingfinkle.org/blog/?p=306</guid>
		<description><![CDATA[Some of the feedback we received from Fennec Alpha 1 (and we have received a lot, thank you!) has been about the download and &#8220;on disk&#8221; size. Fennec is based on XULRunner, Mozilla&#8217;s runtime platform. Therefore, when you install Fennec, you&#8217;re installing the XULRunner dependency too. Fennec is ~ 1MB in footprint size, while XULRunner [...]]]></description>
			<content:encoded><![CDATA[<p>Some of the feedback we received from <a href="http://starkravingfinkle.org/blog/2008/10/fennec-m9-user-experience-alpha/">Fennec Alpha 1</a> (and we have received a lot, thank you!) has been about the download and &#8220;on disk&#8221; size. Fennec is based on <a href="https://developer.mozilla.org/en/XULRunner">XULRunner</a>, Mozilla&#8217;s runtime platform. Therefore, when you install Fennec, you&#8217;re installing the XULRunner dependency too. Fennec is ~ 1MB in footprint size, while XULRunner is ~ 25MB.</p>
<p>Yes, Fennec&#8217;s overall size is a bit big for a mobile browser. But it is a full blown browser, with all the web support of a desktop browser. It also supports the same add-on system as desktop Mozilla applications, like Firefox, Thunderbird and Songbird.</p>
<p>There&#8217;s another benefit of having XULRunner installed on the device: Any other XUL-based application can use the XULRunner runtime, <strong>without</strong> needing to install anything extra. Applications like <a href="http://chatzilla.rdmsoft.com/xulrunner/">Chatzilla</a>, <a href="http://benjamin.smedbergs.us/xulrunner">XULMine</a>, <a href="http://developer.mozilla.org/en/docs/XUL_Explorer">XULExplorer</a> and <a href="http://developer.mozilla.org/en/docs/Prism">Prism</a> could be installed and launched using the shared XULRunner. Keep in mind, Fennec thinks it &#8220;owns&#8221; that XULRunner and will update it when it needs too.</p>
<p>So, if you installed Fennec A1 and want to create your own XUL-based apps on a mobile device, you have an up-to-date runtime to build on. Here&#8217;s a simple way to <a href="http://developer.mozilla.org/en/Getting_started_with_XULRunner">get started</a> with XULRunner (on mobile too).</p>
<img src="http://feeds.feedburner.com/~r/weborama/~4/428877196" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://starkravingfinkle.org/blog/2008/10/fennec-size-does-matter/feed/</wfw:commentRss>
		<feedburner:origLink>http://starkravingfinkle.org/blog/2008/10/fennec-size-does-matter/</feedburner:origLink></item>
		<item>
		<title>EU MozCamp 2008 &amp; Me</title>
		<link>http://feeds.feedburner.com/~r/weborama/~3/428733722/</link>
		<comments>http://starkravingfinkle.org/blog/2008/10/eu-mozcamp-2008-me/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 16:54:31 +0000</pubDate>
		<dc:creator>Mark Finkle</dc:creator>
		
		<category><![CDATA[Embedding]]></category>

		<category><![CDATA[Extensions]]></category>

		<category><![CDATA[Mobile]]></category>

		<category><![CDATA[Mozilla]]></category>

		<category><![CDATA[XUL]]></category>

		<guid isPermaLink="false">http://starkravingfinkle.org/blog/?p=305</guid>
		<description><![CDATA[I am headed to Barcelona to take part in Mozilla Europe&#8217;s MozCamp 2008 conference. I&#8217;ll be presenting sessions on XULRunner, Fennec Add-ons &#038; Embedding Gecko. If you&#8217;re interested in any of these sessions and have topics you&#8217;d like to see covered, let me know. Commenting here or adding items to the wiki pages are goods [...]]]></description>
			<content:encoded><![CDATA[<p>I am headed to Barcelona to take part in Mozilla Europe&#8217;s <a href="https://wiki.mozilla.org/EU_MozCamp_2008">MozCamp 2008</a> conference. I&#8217;ll be presenting sessions on <a href="https://wiki.mozilla.org/EU_MozCamp_2008/Programme/XULRunner">XULRunner</a>, <a href="https://wiki.mozilla.org/EU_MozCamp_2008/Programme/Fennec_Addons">Fennec Add-ons</a> &#038; <a href="https://wiki.mozilla.org/EU_MozCamp_2008/Programme/Embedding_Gecko">Embedding Gecko</a>. If you&#8217;re interested in any of these sessions and have topics you&#8217;d like to see covered, let me know. Commenting here or adding items to the wiki pages are goods ways to do that.</p>
<p>I also plan to hang around the <a href="https://wiki.mozilla.org/EU_MozCamp_2008/Programme/Prism">Prism</a> session, presented by <a href="http://browsing.justdiscourse.com">Matt Gertner</a>. Prism has some cool features brewing. I hope we get a new release (with samples) out soon.</p>
<img src="http://feeds.feedburner.com/~r/weborama/~4/428733722" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://starkravingfinkle.org/blog/2008/10/eu-mozcamp-2008-me/feed/</wfw:commentRss>
		<feedburner:origLink>http://starkravingfinkle.org/blog/2008/10/eu-mozcamp-2008-me/</feedburner:origLink></item>
	</channel>
</rss>
