<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Firefox 3 and XML</title>
	<atom:link href="http://ajaxian.com/archives/firefox-3-and-xml/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/firefox-3-and-xml</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 09 Feb 2012 06:55:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: AlainCOUTHURES</title>
		<link>http://ajaxian.com/archives/firefox-3-and-xml/comment-page-1#comment-269402</link>
		<dc:creator>AlainCOUTHURES</dc:creator>
		<pubDate>Wed, 26 Nov 2008 16:32:27 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4815#comment-269402</guid>
		<description>It&#039;s a pitty that FireFox doesn&#039;t implement the namespace:: axis !!!

I would like to use it for XForms to XHTML+Javascript conversion using XSLT. It works for IE and Opera but not for FF !!!</description>
		<content:encoded><![CDATA[<p>It&#8217;s a pitty that FireFox doesn&#8217;t implement the namespace:: axis !!!</p>
<p>I would like to use it for XForms to XHTML+Javascript conversion using XSLT. It works for IE and Opera but not for FF !!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hbi</title>
		<link>http://ajaxian.com/archives/firefox-3-and-xml/comment-page-1#comment-268274</link>
		<dc:creator>hbi</dc:creator>
		<pubDate>Tue, 21 Oct 2008 08:28:58 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4815#comment-268274</guid>
		<description>Thanks for a great article.
I use XSLT and namespaces heavily in production on a project and I noticed extreme sluggishness in Firefox 3. In fact, FF3 seems slower than all other browsers while Firefox 2 is faster than any other.

Have anyone else come to same or similar conslusion?
Thanks in advance,
Hakan Bilgin</description>
		<content:encoded><![CDATA[<p>Thanks for a great article.<br />
I use XSLT and namespaces heavily in production on a project and I noticed extreme sluggishness in Firefox 3. In fact, FF3 seems slower than all other browsers while Firefox 2 is faster than any other.</p>
<p>Have anyone else come to same or similar conslusion?<br />
Thanks in advance,<br />
Hakan Bilgin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: simongil</title>
		<link>http://ajaxian.com/archives/firefox-3-and-xml/comment-page-1#comment-268270</link>
		<dc:creator>simongil</dc:creator>
		<pubDate>Mon, 20 Oct 2008 22:32:01 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4815#comment-268270</guid>
		<description>Nice to see some improvements to the handling of XML. Whilst XML might seem the forgotten brother to JSON, it&#039;s platform neutrality and web-service heritage still make it a great choice for delivering services direct to the browser and indeed, any application client. I make use of XML extensively in both my consumer app (http://applebox.com.au) and custom development, and find that whilst once I may have thought of switching to JSON to eek out a small performance gain in parsing and consumption, those days are well behind me.</description>
		<content:encoded><![CDATA[<p>Nice to see some improvements to the handling of XML. Whilst XML might seem the forgotten brother to JSON, it&#8217;s platform neutrality and web-service heritage still make it a great choice for delivering services direct to the browser and indeed, any application client. I make use of XML extensively in both my consumer app (<a href="http://applebox.com.au" rel="nofollow">http://applebox.com.au</a>) and custom development, and find that whilst once I may have thought of switching to JSON to eek out a small performance gain in parsing and consumption, those days are well behind me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bjorg</title>
		<link>http://ajaxian.com/archives/firefox-3-and-xml/comment-page-1#comment-268257</link>
		<dc:creator>Bjorg</dc:creator>
		<pubDate>Mon, 20 Oct 2008 13:50:10 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=4815#comment-268257</guid>
		<description>Michael&#039;s notes on XML namespaces are interesting, but it&#039;s wrong to state that namespaces have to be URIs.  They can be anything you like.  For example WebDAV uses xmlns=&quot;DAV:&quot; as namespace.

However, there is a benefit to using a hierarchical scheme like URIs and that is the ability to assign names without a centralized authority.  While on the surface it makes sense to use short prefixes like xhtml: or svg:, having to go through a central authority to standardize them would be an immense bottleneck.  For example, we use xmlns=&quot;http://mindtouch.com/2007/dekiscript&quot; namespace when mixing our DekiScript XML into standard XHTML for processing.  Since we own the domain, we claim right to its URI too.  That makes it kind of simple.  Although following Java&#039;s convention--com.mindtouch.2007.dekiscript--would have been fine too if W3C had recommended that approach.  Though advocating a different structure now doesn&#039;t seem worth the cost of education.

Good examples of the compositional properties of XML namespaces are Atom and it&#039;s various extensions such as GeoRSS and GData.  That said, anybody who groks XML namespaces will eventually shake their head at their inconsistency as applied to attributes and elements.  But that evil is much smaller than the overall benefits of XML namespaces.</description>
		<content:encoded><![CDATA[<p>Michael&#8217;s notes on XML namespaces are interesting, but it&#8217;s wrong to state that namespaces have to be URIs.  They can be anything you like.  For example WebDAV uses xmlns=&#8221;DAV:&#8221; as namespace.</p>
<p>However, there is a benefit to using a hierarchical scheme like URIs and that is the ability to assign names without a centralized authority.  While on the surface it makes sense to use short prefixes like xhtml: or svg:, having to go through a central authority to standardize them would be an immense bottleneck.  For example, we use xmlns=&#8221;http://mindtouch.com/2007/dekiscript&#8221; namespace when mixing our DekiScript XML into standard XHTML for processing.  Since we own the domain, we claim right to its URI too.  That makes it kind of simple.  Although following Java&#8217;s convention&#8211;com.mindtouch.2007.dekiscript&#8211;would have been fine too if W3C had recommended that approach.  Though advocating a different structure now doesn&#8217;t seem worth the cost of education.</p>
<p>Good examples of the compositional properties of XML namespaces are Atom and it&#8217;s various extensions such as GeoRSS and GData.  That said, anybody who groks XML namespaces will eventually shake their head at their inconsistency as applied to attributes and elements.  But that evil is much smaller than the overall benefits of XML namespaces.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

