<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">

<channel>
	<title>yergler.net &#187; mozCC</title>
	<atom:link href="http://yergler.net/blog/category/projects/mozcc/feed/" rel="self" type="application/rss+xml" />
	<link>http://yergler.net</link>
	<description>Because eventually I&#039;ll be right. Theoretically.</description>
	<lastBuildDate>Wed, 23 May 2012 01:10:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Web Progress Notifications in Fennec</title>
		<link>http://yergler.net/blog/2011/04/04/web-progress-notifications-in-fennec/</link>
		<comments>http://yergler.net/blog/2011/04/04/web-progress-notifications-in-fennec/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 03:41:18 +0000</pubDate>
		<dc:creator>Nathan Yergler</dc:creator>
				<category><![CDATA[mozCC]]></category>
		<category><![CDATA[fennec]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[mozcc]]></category>
		<category><![CDATA[OpenAttribute]]></category>

		<guid isPermaLink="false">http://yergler.net/?p=1889</guid>
		<description><![CDATA[Working on OpenAttribute for Firefox Mobile (Fennec) yesterday, one of the first challenges I faced was how to get notification that a page had finished loading. In the desktop version, I attach a listener for all tabs using gBrowser.addTabsProgressListener. Unfortunately with browsers running in their own processes, this approach doesn&#8217;t work on Fennec. I spent [...]]]></description>
			<content:encoded><![CDATA[<p>Working on <a href="http://openattribute.com/">OpenAttribute</a> for Firefox Mobile (Fennec) yesterday, one of the first challenges I faced was how to get notification that a page had finished loading. In the desktop version, I attach a listener for all tabs using <code>gBrowser.addTabsProgressListener</code>. Unfortunately with browsers running in their own processes, this approach doesn&#8217;t work on Fennec. I spent quite a bit of time trying different approaches, all with the intent of creating a progress listener and attaching it myself. The <a href="https://wiki.mozilla.org/Mobile/Fennec/Extensions/Electrolysis">Electrolysis wiki page</a> says that one of the nice side effects of the message passing model is that <a href="https://wiki.mozilla.org/Mobile/Fennec/Extensions/Electrolysis#Good_News">this problem is easy to solve</a>, but it sure didn&#8217;t feel easy.</p>
<p>I don&#8217;t remember why I eventually started looking at the <a href="https://hg.mozilla.org/mobile-browser/file/8167d57cab8e/chrome/content/">mobile-browser source tree</a>, but as I looked through <a href="https://hg.mozilla.org/mobile-browser/file/8167d57cab8e/chrome/content/browser.js">browser.js</a>, <a href="https://hg.mozilla.org/mobile-browser/file/8167d57cab8e/chrome/content/browser.js#l1327">there it was</a>:</p>
<p><code>  messageManager.addMessageListener("Content:StateChange", this);</code></p>
<p>It turns out it <em>is</em> really easy: you can listen for <code>Content:StateChange</code> or <code>Content:LocationChange</code>, and get access to the same details you&#8217;d normally have in the <code>WebProgressListener</code> implementation.</p>
]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2011/04/04/web-progress-notifications-in-fennec/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Unexpected Attribution</title>
		<link>http://yergler.net/blog/2011/04/03/unexpected-attribution/</link>
		<comments>http://yergler.net/blog/2011/04/03/unexpected-attribution/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 17:53:00 +0000</pubDate>
		<dc:creator>Nathan Yergler</dc:creator>
				<category><![CDATA[mozCC]]></category>
		<category><![CDATA[fennec]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mozcc]]></category>
		<category><![CDATA[OpenAttribute]]></category>

		<guid isPermaLink="false">http://yergler.net/?p=1881</guid>
		<description><![CDATA[I&#8217;m working on adding support for Firefox Mobile to OpenAttribute this weekend. I&#8217;d hoped to get that done in time for the official launch, but, well, things have been a little busy. Firefox Mobile (Fennec) uses Electrolysis, a multi-process architecture that&#8217;s a little different from what I&#8217;m used to. Looking at the documentation and APIs, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on adding support for <a href="https://www.mozilla.com/en-US/mobile/">Firefox Mobile</a> to <a href="http://openattribute.com/">OpenAttribute</a> this weekend. I&#8217;d hoped to get that done in time for the official launch, but, well, <a href="https://identi.ca/notice/68556261">things have been a little busy</a>. Firefox Mobile (Fennec) uses <a href="https://wiki.mozilla.org/Mobile/Fennec/Extensions/Electrolysis">Electrolysis</a>, a multi-process architecture that&#8217;s a little different from what I&#8217;m used to. Looking at the documentation and APIs, it actually looks a little closer to Chrome&#8217;s extension architecture. I was looking at <a href="https://people.mozilla.com/~mfinkle/tutorials/">tutorial videos</a> yesterday, and downloaded Mark Finkle&#8217;s <a href="https://people.mozilla.com/~mfinkle/tutorials/blank-addon.zip">boilerplate addon</a> to get a better look at the overlays. </p>
<p>As I explored the boilerplate, I opened the build script. Imagine my surprise when I read this comment at the top of the script:</p>
<p><code><br />
#!/bin/bash<br />
# build.sh -- builds JAR and XPI files for mozilla extensions<br />
#   by Nickolay Ponomarev <asqueella@gmail.com><br />
#   (original version based on Nathan Yergler's build script)<br />
# Most recent version is at &lt;http://kb.mozillazine.org/Bash_build_script&gt;<br />
</code></p>
<p>I have to assume this is based on the build script I developed for MozCC in 2004. I doubt anything from the original still survives (or at least I hope not), but appreciate the credit.</p>
]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2011/04/03/unexpected-attribution/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Minor update for OpenAttribute</title>
		<link>http://yergler.net/blog/2010/12/31/minor-update-for-openattribute/</link>
		<comments>http://yergler.net/blog/2010/12/31/minor-update-for-openattribute/#comments</comments>
		<pubDate>Fri, 31 Dec 2010 21:02:03 +0000</pubDate>
		<dc:creator>Nathan Yergler</dc:creator>
				<category><![CDATA[mozCC]]></category>
		<category><![CDATA[add-on]]></category>
		<category><![CDATA[cc]]></category>
		<category><![CDATA[drumbeat]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mozcc]]></category>
		<category><![CDATA[OpenAttribute]]></category>

		<guid isPermaLink="false">http://yergler.net/?p=1840</guid>
		<description><![CDATA[I&#8217;ve just pushed a minor update to OpenAttribute to github. It&#8217;s minor in terms of user-facing functionality, but improves support for one important use case, licensing of &#8220;objects&#8221; in a page. Summary: OpenAttribute 0.8.1 (XPI) fixes Issues 1, 2, 3, and 5. All users should install this update. CC REL is Creative Commons&#8217; recommended way [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just pushed a minor update to <a href="https://github.com/nyergler/openattribute-firefox">OpenAttribute to github</a>. It&#8217;s minor in terms of user-facing functionality, but improves support for one important use case, licensing of &#8220;objects&#8221; in a page.</p>
<blockquote><p><em><strong>Summary:</strong></em> <a href="https://github.com/nyergler/openattribute-firefox">OpenAttribute</a> 0.8.1 (<a href="https://github.com/downloads/nyergler/openattribute-firefox/openattribute-0.8.1.xpi">XPI</a>) fixes Issues <a href="https://github.com/nyergler/openattribute-firefox/issues/closed#issue/1">1</a>, <a href="https://github.com/nyergler/openattribute-firefox/issues/closed#issue/2">2</a>, <a href="https://github.com/nyergler/openattribute-firefox/issues/closed#issue/3">3</a>, and <a href="https://github.com/nyergler/openattribute-firefox/issues/closed#issue/5">5</a>. All users should install this update.</p></blockquote>
<p><a href="http://wiki.creativecommons.org/CC_REL">CC REL</a> is Creative Commons&#8217; recommended way to describe licenses and licensed works. It builds on <a href="http://rdfa.info/">RDFa</a>, a W3 recommendation, and allows publishers to specify the license and other related information about a work. One of the advantages of building on RDFa was that we could scope the assertions in the page, making it unambiguous (for software) what was being licensed: the page, a particular image or video, or even a specific portion of text. While the initial release of OpenAttribute properly detected the license, it was unable to display the results.</p>
<p>Creative Commons licenses are self-describing using CC REL: a tool (like OpenAttribute) can dereference the license and discover information like the human readable name, version, and permissions/requirements/prohibitions. While Igor&#8217;s code from GSoC used the <a href="http://api.creativecommons.org/docs/">CC API</a> to retrieve this information, it was clear to me that using the license itself is preferable: using self-describing resources on the web allows everyone to play, without registration or integration. </p>
<p>OpenAttribute 0.8 had a somewhat naive implementation of license dereferencing and parsing, which caused problems when there were multiple licensed objects in a page. In the 0.8 release, only information about the last object was displayed in the dialog. OpenAttribute 0.8.1 includes a new <a href="https://github.com/nyergler/openattribute-firefox/blob/master/module/license.js">licenseloader</a> component, which implements some simple serialization for these requests. If multiple requests are made, they&#8217;re queued and dereferenced/processed in order.</p>
<hr noshade />
<p>You&#8217;ll note that OpenAttribute isn&#8217;t available from AMO yet. That&#8217;s partially because I&#8217;d like to have some more testing before making it available there. If you try it out and find bugs or have feature requests, you can file those on the <a href="https://github.com/nyergler/openattribute-firefox/issues">github project</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2010/12/31/minor-update-for-openattribute/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Licenses &amp; Attribution in Firefox: OpenAttribute</title>
		<link>http://yergler.net/blog/2010/12/29/licenses-attribution-in-firefox-openattribute/</link>
		<comments>http://yergler.net/blog/2010/12/29/licenses-attribution-in-firefox-openattribute/#comments</comments>
		<pubDate>Thu, 30 Dec 2010 00:00:52 +0000</pubDate>
		<dc:creator>Nathan Yergler</dc:creator>
				<category><![CDATA[mozCC]]></category>
		<category><![CDATA[add-on]]></category>
		<category><![CDATA[cc]]></category>
		<category><![CDATA[drumbeat]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mozcc]]></category>
		<category><![CDATA[OpenAttribute]]></category>

		<guid isPermaLink="false">http://yergler.net/?p=1828</guid>
		<description><![CDATA[Seven years ago I started working on MozCC, an add-on for Firefox that exposed Creative Commons license information embedded in web pages. Little did I know that add-on would be the start of a career with CC, eventually leading me to San Francisco, and subsequently around the globe to talk about CC&#8217;s technology. MozCC was [...]]]></description>
			<content:encoded><![CDATA[<p>Seven years ago I started working on MozCC, an add-on for Firefox that exposed Creative Commons license information embedded in web pages. Little did I know that add-on would be the start of a career with CC, eventually leading me to San Francisco, and subsequently around the globe to talk about CC&#8217;s technology. MozCC was dropped from active maintenance somewhere around Firefox 3, but of the tools I built during my first couple years at CC, it&#8217;s the one I still get the most questions about.</p>
<p>This summer, Igor Lukanin <a href="http://labs.creativecommons.org/2010/07/11/gsoc-firefox-extension-status-report/">worked</a> on a Google Summer of Code project for CC to develop a replacement for MozCC, an add-on for Firefox that would expose license and attribution information. While the project wasn&#8217;t totally successful, it did produce an add-on that detected CC licenses in pages, and exposed details about them.</p>
<p>Last month I had the opportunity to attend <a href="http://learningfreedomandtheweb.org/folio/">Learning, Freedom, and the Web</a>, the first <a href="http://drumbeat.org/">Mozilla Drumbeat </a> Festival, in Barcelona, Spain. One of the issues identified by attendees was that, while there are plenty of works being licensed under CC licenses, knowing how to properly attribute re-use is still a challenge. How many times have we seen presentations made up of beautiful photos, with a simple &#8220;CC licensed, Flickr&#8221; under each (if that)? The proposed solution was an <a href="https://wiki.mozilla.org/Drumbeat/Attribution_generator">attribution generator</a>: a tool that would generate reasonable attribution for CC licensed works, based on information available.</p>
<p>I&#8217;ve spent the past month or so hacking on Igor&#8217;s code in my spare time, using it as the basis of an attribution generator for Firefox. The result is OpenAttribute (<a href="http://etherpad.mozilla.com:9000/OpenAttribute-names">working name</a>, selected by the Drumbeat group), which is available for testing on Firefox 3.6 and above (I&#8217;ve been testing with 3.6 and 4.0b8 on Linux). As <a href="http://en.wikipedia.org/wiki/Shirley_Bassey">Dame Shirley Bassey</a> <a href="http://en.wikipedia.org/wiki/History_Repeating_(song)">sang</a>, this is &#8220;all just a little bit of history repeating.&#8221; </p>
<p><a href="http://yergler.net/media/2010/12/Screenshot-Radical-Decoupling-Designing-for-Web-3.0-Mozilla-Firefox-4.0-Beta-8.png"><img src="/media/2010/12/Screenshot-Radical-Decoupling-Designing-for-Web-3.0-Mozilla-Firefox-4.0-Beta-8-300x148.png" alt="" title="OpenAttribute license information" width="300" height="148" class="aligncenter size-medium wp-image-1829" /></a></p>
<p>OpenAttribute is an add-on that displays a small &#8220;CC&#8221; icon in the URL bar when license information is present. Clicking that icon displays the page&#8217;s license information and, importantly, copy and paste HTML you can use to attribute the work. You can click the &#8220;More Information&#8221; button to display the details on licensed objects in the page.</p>
<p><a href="http://yergler.net/media/2010/12/openattribute-page-info.png"><img src="/media/2010/12/openattribute-page-info-300x229.png" alt="" title="License details in Page Info" width="300" height="229" class="aligncenter size-medium wp-image-1831" /></a></p>
<p>There&#8217;s still work to be done, but at this point I think it&#8217;s ready for broader testing. You can <a href="https://github.com/downloads/nyergler/openattribute-firefox/openattribute-0.8.xpi">download the add-on</a> and find <a href="https://github.com/nyergler/openattribute-firefox">the code</a> on github. Feedback, questions, suggestions should all probably go to the <a href="http://groups.google.com/group/attrib-generator/topics?hl=en">attrib-generator Google Group</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2010/12/29/licenses-attribution-in-firefox-openattribute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MozCC Resources Moved</title>
		<link>http://yergler.net/blog/2006/05/16/mozcc-resources-moved/</link>
		<comments>http://yergler.net/blog/2006/05/16/mozcc-resources-moved/#comments</comments>
		<pubDate>Tue, 16 May 2006 17:27:29 +0000</pubDate>
		<dc:creator>Nathan Yergler</dc:creator>
				<category><![CDATA[aside]]></category>
		<category><![CDATA[mozCC]]></category>

		<guid isPermaLink="false">http://yergler.net/blog/2006/05/16/mozcc-resources-moved/</guid>
		<description><![CDATA[MozCC will be getting some much-needed attention this summer (wink, wink, nudge, nudge), so I took the opportunity to move the web content from my web server over to Creative Commons&#8217; server. You can find the new MozCC page &#8220;here&#8221;:http://wiki.creativecommons.org/MozCC, and downloads are over at &#8220;updates.mozilla.org&#8221;:https://addons.mozilla.org/firefox/363/.]]></description>
			<content:encoded><![CDATA[<p>MozCC will be getting some much-needed attention this summer (wink, wink, nudge, nudge), so I took the opportunity to move the web content from my web server over to Creative Commons&#8217; server.  You can find the new MozCC page &#8220;here&#8221;:http://wiki.creativecommons.org/MozCC, and downloads are over at &#8220;updates.mozilla.org&#8221;:https://addons.mozilla.org/firefox/363/.</p>
]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2006/05/16/mozcc-resources-moved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mozCC on addons.mozilla.org</title>
		<link>http://yergler.net/blog/2006/01/24/mozcc-on-addonsmozillaorg/</link>
		<comments>http://yergler.net/blog/2006/01/24/mozcc-on-addonsmozillaorg/#comments</comments>
		<pubDate>Tue, 24 Jan 2006 14:16:57 +0000</pubDate>
		<dc:creator>Nathan Yergler</dc:creator>
				<category><![CDATA[aside]]></category>
		<category><![CDATA[mozCC]]></category>

		<guid isPermaLink="false">http://yergler.net/blog/2006/01/24/mozcc-on-addonsmozillaorg/</guid>
		<description><![CDATA[&#8220;mozCC&#8221;:/projects/mozcc is now hosted over at &#8220;addons.mozilla.org&#8221;:https://addons.mozilla.org/extensions/moreinfo.php?id=363&#038;application=firefox. I&#8217;ll be distributing all future releases from there &#8212; it&#8217;s just easier to have them manage the update information, even if there is a slight delay to go through their approval process. So you may want to reinstall&#8230; or just keep reading this blog.]]></description>
			<content:encoded><![CDATA[<p>&#8220;mozCC&#8221;:/projects/mozcc is now hosted over at &#8220;addons.mozilla.org&#8221;:https://addons.mozilla.org/extensions/moreinfo.php?id=363&#038;application=firefox.  I&#8217;ll be distributing all future releases from there &#8212; it&#8217;s just easier to have them manage the update information, even if there is a slight delay to go through their approval process.  So you may want to reinstall&#8230; or just keep reading this blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2006/01/24/mozcc-on-addonsmozillaorg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mozCC updated, adds support for Flock</title>
		<link>http://yergler.net/blog/2006/01/06/mozcc-now-with-support-for-flock/</link>
		<comments>http://yergler.net/blog/2006/01/06/mozcc-now-with-support-for-flock/#comments</comments>
		<pubDate>Sat, 07 Jan 2006 01:00:03 +0000</pubDate>
		<dc:creator>Nathan Yergler</dc:creator>
				<category><![CDATA[aside]]></category>
		<category><![CDATA[mozCC]]></category>

		<guid isPermaLink="false">http://yergler.net/blog/2006/01/06/mozcc-now-with-support-for-flock/</guid>
		<description><![CDATA[Yeah, an upgrade for &#8220;mozCC&#8221;:/projects/mozcc. Now it should work more consistently on Windows XP and (more interestingly) support &#8220;Flock&#8221;:http://flock.com.]]></description>
			<content:encoded><![CDATA[<p>Yeah, an upgrade for &#8220;mozCC&#8221;:/projects/mozcc.  Now it should work more consistently on Windows XP and (more interestingly) support &#8220;Flock&#8221;:http://flock.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2006/01/06/mozcc-now-with-support-for-flock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mozCC Updates</title>
		<link>http://yergler.net/blog/2005/12/15/mozcc-updates/</link>
		<comments>http://yergler.net/blog/2005/12/15/mozcc-updates/#comments</comments>
		<pubDate>Thu, 15 Dec 2005 15:12:09 +0000</pubDate>
		<dc:creator>Nathan Yergler</dc:creator>
				<category><![CDATA[mozCC]]></category>

		<guid isPermaLink="false">http://yergler.net/blog/archives/2005/12/15/mozcc-updates</guid>
		<description><![CDATA[So Hal pointed out that mozCC 1.1.4 (the latest release) doesn&#8217;t work right on Windows XP. Unfortunately he&#8217;s right. Well, sort of. When I installed it with Firefox 1.5 on Windows XP Professional, the (CC) icon shows up in the status bar, but none of the license attribute icons (by, share-alike, etc) show up. It [...]]]></description>
			<content:encoded><![CDATA[<p>So Hal pointed out that <a href="http://yergler.net/projects/mozcc/install">mozCC 1.1.4</a> (the latest release) doesn&#8217;t work right on Windows XP.  Unfortunately he&#8217;s right.  Well, sort of.  When I installed it with Firefox 1.5 on Windows XP Professional, the (CC) icon shows up in the status bar, but none of the license attribute icons (by, share-alike, etc) show up.  It appears that this is actually a line-endings problem: the icon graphic files are flagged as ASCII in CVS, and were apparently borked when I checked them out of CVS to do the build on Windows.</p>
<p>So this of course demands an updated build, but I&#8217;m choosing to hold off for just a little while.  See, I&#8217;ve been promising a new and improved mozCC for months.  And whlie I know I won&#8217;t have time to really do much in the near future, I would like to do a few updates. See the <a href="http://yergler.net/yiki/MozCc/UpcomingFeatures">upcoming features</a> page in the Yiki (<a href="http://yergler.net/yiki/WhatsAYiki">what&#8217;s a yiki?</a>) for details.</p>
]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2005/12/15/mozcc-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mozCC 1.1.3 for Firefox 1.5 Beta 2</title>
		<link>http://yergler.net/blog/2005/10/09/mozcc-113-for-firefox-15-beta-2/</link>
		<comments>http://yergler.net/blog/2005/10/09/mozcc-113-for-firefox-15-beta-2/#comments</comments>
		<pubDate>Sun, 09 Oct 2005 18:53:52 +0000</pubDate>
		<dc:creator>Nathan Yergler</dc:creator>
				<category><![CDATA[mozCC]]></category>

		<guid isPermaLink="false">http://yergler.net/blog/?p=343</guid>
		<description><![CDATA[Maybe it&#8217;s just the hacking environment here at the Summit, but I&#8217;ve been hella productive today. In regards to my &#8220;last post&#8221;:http://yergler.net/blog/archives/2005/10/09/mozcc-with-firefox-15-beta-2, there&#8217;s an update for &#8220;MozCC&#8221;:http://yergler.net/projects/mozcc available. A couple of details: * The new release, 1.1.3, adds compatibility for Firefox 1.5 Beta 2 and adds support for metadata linked in the header with a [...]]]></description>
			<content:encoded><![CDATA[<p>Maybe it&#8217;s just the hacking environment here at the Summit, but I&#8217;ve been hella productive today.  In regards to my &#8220;last post&#8221;:http://yergler.net/blog/archives/2005/10/09/mozcc-with-firefox-15-beta-2, there&#8217;s an update for &#8220;MozCC&#8221;:http://yergler.net/projects/mozcc available.  A couple of details:</p>
<p>* The new release, 1.1.3, adds compatibility for Firefox 1.5 Beta 2 and adds support for metadata linked in the header with a <code>&lt;link rel="metadata" ...&gt;</code> tag.<br />
* Using the update manager you should be able automagically upgrade MozCC if you are using 1.5 Beta 2; the update specification won&#8217;t offer it to you if you&#8217;re not using Beta 2, because&#8230;<br />
* &#8230;this release hasn&#8217;t been tested with _<strong>anything</strong>_ other than Firefox 1.5 Beta 2.<br />
* When Firefox 1.5 is finally released, MozCC will break until we release an update.  This is intentional and I&#8217;ll try to get it updated shortly after the release (barring some late breaking bug this should be a trivial update).</p>
<p>If you want to download the new release directly, you can find it &#8220;here&#8221;:http://drop.creativecommons.org/mozcc/releases/mozcc-1.1.3.xpi.</p>
]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2005/10/09/mozcc-113-for-firefox-15-beta-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MozCC with Firefox 1.5 Beta 2</title>
		<link>http://yergler.net/blog/2005/10/09/mozcc-with-firefox-15-beta-2/</link>
		<comments>http://yergler.net/blog/2005/10/09/mozcc-with-firefox-15-beta-2/#comments</comments>
		<pubDate>Sun, 09 Oct 2005 15:47:04 +0000</pubDate>
		<dc:creator>Nathan Yergler</dc:creator>
				<category><![CDATA[mozCC]]></category>

		<guid isPermaLink="false">http://yergler.net/blog/?p=342</guid>
		<description><![CDATA[Just a quick note to head off the stream of email I&#8217;ve been receiving (yes, both of them): &#8220;mozCC&#8221;:http://yergler.net/projects/mozcc doesn&#8217;t work with &#8220;Firefox 1.5 Beta 2&#8243;:http://www.mozilla.org/products/firefox/releases/1.5beta2.html. Actually if you tried to install it, you&#8217;d be told it&#8217;s not compatible, since mozCC 1.1.2 claims it&#8217;s only compatible with Firefox 1.4 (the internal version for Beta 1). [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick note to head off the stream of email I&#8217;ve been receiving (yes, both of them): &#8220;mozCC&#8221;:http://yergler.net/projects/mozcc doesn&#8217;t work with &#8220;Firefox 1.5 Beta 2&#8243;:http://www.mozilla.org/products/firefox/releases/1.5beta2.html.</p>
<p>Actually if you tried to install it, you&#8217;d be told it&#8217;s not compatible, since mozCC 1.1.2 claims it&#8217;s only compatible with Firefox 1.4 (the internal version for Beta 1).  At first I thought this was gratuitous version incrementing, and then I discovered that after incrementing the supported version in mozCC, it doesn&#8217;t work.  At all.  I&#8217;ve tracked down the problem and hope to have a release out later today or tomorrow that fixes both this compatibility issue as well as a rather embarassing issue pointed out by Jeff yesterday.  Stay tuned.</p>
<p>*UPDATE*: Just to be clear, it&#8217;s not really _gratuitious_ per say to increment the version from 1.4 to 1.4.1 &#8212; I just assumed it had gone to 1.5; mea culpa.  Also, the update is &#8220;now available&#8221;:http://yergler.net/blog/archives/2005/10/09/mozcc-113-for-firefox-15-beta-2.</p>
]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2005/10/09/mozcc-with-firefox-15-beta-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

