<?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>Jukka-Pekka Keisala &#187; XML</title>
	<atom:link href="http://www.jpkeisala.com/blog/category/programming/xml/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jpkeisala.com/blog</link>
	<description>Ranting finn</description>
	<lastBuildDate>Sun, 14 Feb 2010 11:47:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Understanding UTF and ANSI encoding</title>
		<link>http://www.jpkeisala.com/blog/2009/01/understanding-utf-and-ansi-encoding/</link>
		<comments>http://www.jpkeisala.com/blog/2009/01/understanding-utf-and-ansi-encoding/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 13:47:04 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[XML]]></category>
		<category><![CDATA[Encoding]]></category>

		<guid isPermaLink="false">http://www.jpkeisala.com/blog/?p=495</guid>
		<description><![CDATA[I am pretty sure that I am not the only one who have had trouble with encoding when dealing with XML especially when reading from system to another. I found a good post that I will paste here mostly for my own reference next time when someone asks why I cannot read his ANSI XML [...]]]></description>
			<content:encoded><![CDATA[<p>I am pretty sure that I am not the only one who have had trouble with encoding when dealing with XML especially when reading from system to another. I found a good post that I will paste here mostly for my own reference next time when someone asks why I cannot read his ANSI XML even he puts UTF-8 on the XML definition.</p>
<p>&#8211;clip&#8211;</p>
<p><span style="font-weight: bold;">he Basics</span><br />
Letters are represented in a computer by numeric codes. Pretty much everybody agrees that, when the computer sees a code of 100 (decimal), it represents a lowercase &#8220;d&#8221;. We don&#8217;t all agree on what 250 represents, and therein lies the rub.</p>
<p><span style="font-weight: bold;">ASCII vs ANSI</span><br />
We commonly refer to character encoding as a letter&#8217;s &#8220;ASCII value,&#8221; when we really mean &#8220;ANSI value.&#8221; A lot of the time that&#8217;s sufficient, but in fact the ASCII standard is pretty much obsolete.</p>
<p>ASCII (American Standard Code for Information Interchange) is a 7-bit standard that has been around since the late 1950s (its current incarnation dates from 1968). It defines 128 different characters, which is more than enough for English: upper- and lowercase letters, punctuation, numerals, control codes (remember control-c?), and nonprinting codes such as tab, return, and backspace.</p>
<p>ASCII and ANSI are pretty good as long as you are western European. These two mappings are extremely limited in that they may only code (i.e. assign a number to) 256 letters, so that there is no space to include other glyphs from other languages.</p>
<p><span style="font-weight: bold;">Unicode</span><br />
Unicode fixes the limitations of ASCII and ANSI, by providing enough space for over a million different symbols. Like the above two systems, each character is given a number, so that Russian ? is 042F, and the Korean won symbol ? is 20A9. (Note that all Unicode numbers are Hexadecimal, meaning that one counts by 16’s not 10’s, not a problem as users really don’t need to know the mapping numbers anyway.) So, although not yet totally comprehensive, Unicode covers most of the world’s writing systems. Most importantly, the mapping is consistent, so that any user anywhere on any computer has the same encoding as everyone else, no matter what font is being used.</p>
<p>So Unicode is a map, a chart of (what will one day be) all of the characters, letters, symbols, punctuation marks, etc. necessary for writing all of the world’s languages past and present.</p>
<p>What is the difference between <span style="font-weight: bold;">UTF-8, UTF-16</span>?<br />
UTF-8 uses variable byte to store a Unicode. In different code range, it has its own code length, varies from 1 byte to 6 bytes. Because it varies from 8 bits (1 byte), it is so called &#8220;UTF-8&#8243;. UTF-8 is suitable for using on Internet, networks or some kind of applications that needs to use slow connection.</p>
<p>Unicode (or UCS) Transformation Format, 16-bit encoding form. The UTF-16 is the Unicode Transformation Format that serializes a Unicode scalar value (code point) as a sequence of two bytes, in either big-endian or little-endian format. Because it is grouped by 16-bits (2 bytes), it is also called &#8220;UTF-16&#8243;, which is the most commonly used standard.</p>
<p>Source: http://forum.iopus.com/viewtopic.php?t=2783</p>
<p>&#8211;clip&#8211;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpkeisala.com/blog/2009/01/understanding-utf-and-ansi-encoding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Sharing Extensions for RSS and OPML</title>
		<link>http://www.jpkeisala.com/blog/2005/11/simple_sharing_extensions_for_rss_and_op/</link>
		<comments>http://www.jpkeisala.com/blog/2005/11/simple_sharing_extensions_for_rss_and_op/#comments</comments>
		<pubDate>Mon, 21 Nov 2005 22:30:42 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.jpkeisala.com/blog/?p=297</guid>
		<description><![CDATA[Microsoft has unveiled a new proposal called SSE, which stands for Simple Sharing Extensions for RSS and OPML. The SSE specification is under a Creative Commons license ? Attribution-ShareAlike.
This is looking really interesting, there is more blog posts about it at Dave Winer&#8217;s Scripting News, TechCrunch and Alex Barnett.
]]></description>
			<content:encoded><![CDATA[<p>Microsoft has unveiled a new proposal called SSE, which stands for <a href="http://msdn.microsoft.com/xml/rss/sse/">Simple Sharing Extensions</a> for RSS and OPML. The SSE specification is under a Creative Commons license ? Attribution-ShareAlike.<br />
This is looking really interesting, there is more blog posts about it at <a href="http://www.scripting.com/2005/11/21.html#sharingAtSoManyLevels">Dave Winer&#8217;s Scripting News</a>, <a href="http://www.techcrunch.com/2005/11/21/new-companies-will-be-built-with-sse/">TechCrunch</a> and <a href="http://blogs.msdn.com/alexbarn/archive/2005/11/21/495253.aspx">Alex Barnett</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpkeisala.com/blog/2005/11/simple_sharing_extensions_for_rss_and_op/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving to vectorial</title>
		<link>http://www.jpkeisala.com/blog/2005/09/moving_to_vectorial/</link>
		<comments>http://www.jpkeisala.com/blog/2005/09/moving_to_vectorial/#comments</comments>
		<pubDate>Sun, 18 Sep 2005 19:41:08 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.jpkeisala.com/blog/?p=296</guid>
		<description><![CDATA[Last 1.5 years I have been drifting towards Linux world since Microsoft has been pretty much dead when it comes to interesting stuff for web developers. I can see that Microsoft is working hard on creating new API&#8217;s like XAML which is (IMHO) from web developer&#8217;s point of view quite useless. Hopefully someone in Microsoft [...]]]></description>
			<content:encoded><![CDATA[<p>Last 1.5 years I have been drifting towards Linux world since Microsoft has been pretty much dead when it comes to interesting stuff for web developers. I can see that Microsoft is working hard on creating new API&#8217;s like <a href="http://www.xaml.net/">XAML</a> which is (IMHO) from web developer&#8217;s point of view quite useless. Hopefully someone in Microsoft soon wakes up for <a href="http://www.w3.org/TR/SVG/">SVG</a>.</p>
<p>I have been running latest <a href="http://www.ubuntulinux.org/">Ubuntu</a> on my laptop which works like a charm. But still I have windows in dual boot because I need to sometimes work on Photoshop, Flash and Visual Studio. But slowly I have started to move my development environment to Linux.</p>
<p>I think SVG is going to be big in following years; SVG has more potential than XAML simply because SVG was designed for web and it&#8217;s part of web standard. It will revolutionize interface in internet as well as on operating systems. Therefore I have decided to start move to SVG world with the <a href="http://www.mono-project.com/">Mono</a>, <a href="http://www.cairographics.org/">Cairo</a> and <a href="http://www.gtk.org/">Gtk+</a>. Gtk+ is a library used to build GUI applications on UNIX and the heart of the <a href="http://www.gnome.org/">Gnome desktop</a>. Gtk+ is built on top of the 2D graphics engine Cairo which released version 1.0 in August: every widget is now written using Cairo operations and most importantly developers can now draw their own widgets using the PDF-like rendering model offered by Cairo.</p>
<p>Cairo also brings to the end user nice touches like anti-aliased rendering for a more pleasant experience. Gtk builds on this new functionality to bring vector-based themes to the desktop as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpkeisala.com/blog/2005/09/moving_to_vectorial/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>AJAX links</title>
		<link>http://www.jpkeisala.com/blog/2005/05/ajax_links/</link>
		<comments>http://www.jpkeisala.com/blog/2005/05/ajax_links/#comments</comments>
		<pubDate>Sun, 29 May 2005 20:34:16 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[JavaScripting]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[WebDesign]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.jpkeisala.com/blog/?p=350</guid>
		<description><![CDATA[Developers and designers have come really crazy about AJAX. I started to look for AJAX framework for some simple form validation and I found huge amount of code samples and frameworks which are under development or already on version 5.0. 

Intresting links for .NET developers

How to create the Google Suggest feature with ASP.NET 2.0 
Enhanced [...]]]></description>
			<content:encoded><![CDATA[<p>Developers and designers have come really crazy about AJAX. I started to look for AJAX framework for some simple form validation and I found huge amount of code samples and frameworks which are under development or already on version 5.0. </p>
<p><span id="more-350"></span></p>
<p><strong>Intresting links for .NET developers</strong></p>
<ul>
<li><a href="http://dotnetjunkies.com/WebLog/anoras/archive/2004/12/12/36161.aspx">How to create the Google Suggest feature with ASP.NET 2.0 </a></li>
<li><a href="http://scottonwriting.net/sowblog/posts/2964.aspx">Enhanced Client-Side Script Features in ASP.NET 2.0 </a></li>
<li><a href="http://msdn.microsoft.com/msdnmag/issues/04/08/CuttingEdge/">Script Callbacks in ASP.NET (includes techniques for doing this in ASP.NET 1.1) </a></li>
<li><a href="http://www.codeproject.com/aspnet/ScriptCallbackFramework.asp">Implement Script Callback Framework in ASP.NET 1.x </a></li>
<li><a href="http://www.codeproject.com/aspnet/AlvaroRemoteScripting.asp">Remote Scripting (class library &amp; javascript library for working with client script callbacks) </a></li>
<li><a href="http://www.aspnetresources.com/blog/remote_javascript.aspx">Remote Scriptease (general info about several types of techniques for doing this pre-ASP.NET 2.0) </a></li>
<li><a href="http://weblogs.asp.net/mschwarz/"> AJAX Wrapper for .NET </a>See also( <a href="http://ajax.schwarz-interactive.de/">http://ajax.schwarz-interactive.de/</a>) </li>
<li><a href="http://weblogs.asp.net/bleroy/archive/2005/04/08/397761.aspx">Fun with callbacks Part 1: What&#8217;s in the ASP.NET box? (info and samples for using remote callbacks with ASP.NET 2.0) </a></li>
<li><a href="http://weblogs.asp.net/bleroy/archive/0001/01/01/400792.aspx">Fun with callbacks Part 2: The RefreshPanel (code sample for creating a Panel control with support for client-side refreshing) </a></li>
<li><a href="http://support.microsoft.com/Default.aspx?id=893659">Dynamic Page updates using XMLHTTP (interesting example that uses an ASP.NET web service and SOAP to retrieve the postback data). </a></li>
<li><a href="http://www.codebetter.com/blogs/ben.reichelt/archive/2005/04/11/61767.aspx">Cross Domain XmlHttpRequests ( Ajax) (using client-side calls to get data from a different domain in a way that doesn&#8217;t cause problems in Firefox or IE SP2).</a></li>
<li><a href="http://www.codebetter.com/blogs/ben.reichelt/archive/2005/04/22/62301.aspx">Ajax Post Request (POSTing data to the server handler rather than sending a GET request) </a></li>
<li><a href="http://mcgiv.com/blog/ajax/">AJAX Library for ASP.NET (an HttpHandler and attribute based framework for working with objects and client-side postbacks) </a>See also(<a href="http://mcgiv.com/blog/">http://mcgiv.com/blog/</a>)</li>
</ul>
<p><strong>From Sourceforge<br />
</strong></p>
<ul>
<li><a href="http://sourceforge.net/projects/ajaxnet/">Ajax.NET is an implementation of the AJAX technology used by Google, Orkut, Flickr, &#8230; for the .NET environment. Call server side methods as if they were on the clientside. </a></li>
<li><a href="http://glm-ajax.sourceforge.net/">The AJAX (asynchronous Javascript And XML) Framework is a cross browser framework that allows developers to quickly develop web pages that can call web services and server pages through javascript without having to submit the current page. </a></li>
</ul>
<p><strong>Other interesting stuff </strong></p>
<ul>
<li><a href="http://www.ajaxian.com/">http://www.ajaxian.com/</a></li>
<li><a href="http://www.fiftyfoureleven.com/resources/programming/xmlhttprequest">http://www.fiftyfoureleven.com/resources/programming/xmlhttprequest</a></li>
<li><a href="http://www.modernmethod.com/sajax/index.phtml">http://www.modernmethod.com/sajax/index.phtml</a></li>
<li><a href="http://www.bigbold.com/rssdigest/examples/ajax.php">http://www.bigbold.com/rssdigest/examples/ajax.php</a></li>
<li><a href="http://www.quirksmode.org/blog/archives/2005/03/ajax_promise_or.html">http://www.quirksmode.org/blog/archives/2005/03/ajax_promise_or.html</a></li>
<li><a href="http://www.ajaxpatterns.org/">Collection of AJAX Design Patterns</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jpkeisala.com/blog/2005/05/ajax_links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AJAX  framework</title>
		<link>http://www.jpkeisala.com/blog/2005/05/ajax_framework/</link>
		<comments>http://www.jpkeisala.com/blog/2005/05/ajax_framework/#comments</comments>
		<pubDate>Tue, 17 May 2005 13:28:00 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[JavaScripting]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.jpkeisala.com/blog/?p=273</guid>
		<description><![CDATA[With Backbase software you can quickly create user-friendly and highly interactive Rich Internet Applications. These applications are based on Web Standards and can be viewed in almost any modern web browser without installing any plug-ins.
http://www.backbase.com/
]]></description>
			<content:encoded><![CDATA[<p>With Backbase software you can quickly create user-friendly and highly interactive Rich Internet Applications. These applications are based on Web Standards and can be viewed in almost any modern web browser without installing any plug-ins.<br />
<a href="http://www.backbase.com/">http://www.backbase.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpkeisala.com/blog/2005/05/ajax_framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asynchronous JavaScript + XML</title>
		<link>http://www.jpkeisala.com/blog/2005/03/asynchronous_javascript_xml/</link>
		<comments>http://www.jpkeisala.com/blog/2005/03/asynchronous_javascript_xml/#comments</comments>
		<pubDate>Fri, 25 Mar 2005 15:35:12 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[JavaScripting]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.jpkeisala.com/blog/?p=295</guid>
		<description><![CDATA[Jesse James Garrett writes at Adaptive Path about Ajax: A New Approach to Web Applications. A new cool way of asynchronous data retrieval using XMLHttpRequest and Document Object Model and JavaScript binding everything together.
]]></description>
			<content:encoded><![CDATA[<p>Jesse James Garrett writes at Adaptive Path about <a href="http://www.adaptivepath.com/publications/essays/archives/000385.php">Ajax: A New Approach to Web Applications</a>. A new cool way of asynchronous data retrieval using <a href="http://www.xml.com/pub/a/2005/02/09/xml-http-request.html">XMLHttpRequest</a> and <a href="http://www.scottandrew.com/weblog/articles/dom_1">Document Object Model</a> and <a href="http://www.crockford.com/javascript/javascript.html">JavaScript</a> binding everything together.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpkeisala.com/blog/2005/03/asynchronous_javascript_xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Replace linebreak with HTML &lt;br&gt;</title>
		<link>http://www.jpkeisala.com/blog/2005/02/replace_linebreak_with_alt_br_agt/</link>
		<comments>http://www.jpkeisala.com/blog/2005/02/replace_linebreak_with_alt_br_agt/#comments</comments>
		<pubDate>Thu, 10 Feb 2005 13:46:19 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.jpkeisala.com/blog/?p=283</guid>
		<description><![CDATA[&#60;!&#8211; ********************************************************************** &#8211;&#62;
&#60;!&#8211; ******** Replace all CRLF with &#60;br /&#62; ******************************** &#8211;&#62;
&#60;!&#8211; ******** i.e. Insert carriage returns ******************************** &#8211;&#62;
&#60;!&#8211; ******** Source located at: ****************************************** &#8211;&#62;

&#60;!&#8211; ******** http://www.dpawson.co.uk/xsl/sect2/N8321.html#d10224e153 **** &#8211;&#62;
&#60;!&#8211; ********************************************************************** &#8211;&#62;
&#60;xsl:template name=&#8221;br-replace&#8221;&#62;
   &#60;xsl: param name=&#8221;word&#8221;/&#62;
   &#60;xsl:choose&#62;
      &#60;xsl:when test=&#8221;contains($word,&#8217;&#38;#x0D;&#8217;)&#8221;&#62;
         [...]]]></description>
			<content:encoded><![CDATA[<p>&lt;!&#8211; ********************************************************************** &#8211;&gt;<br />
&lt;!&#8211; ******** Replace all CRLF with &lt;br /&gt; ******************************** &#8211;&gt;<br />
&lt;!&#8211; ******** i.e. Insert carriage returns ******************************** &#8211;&gt;<br />
&lt;!&#8211; ******** Source located at: ****************************************** &#8211;&gt;<br />
<span><br />
&lt;!&#8211; ******** <a href="http://www.dpawson.co.uk/xsl/sect2/N8321.html#d10224e153">http://www.dpawson.co.uk/xsl/sect2/N8321.html#d10224e153</a> **** &#8211;&gt;</span><br />
&lt;!&#8211; ********************************************************************** &#8211;&gt;<br />
&lt;xsl:template name=&#8221;br-replace&#8221;&gt;<br />
   &lt;xsl: param name=&#8221;word&#8221;/&gt;<br />
   &lt;xsl:choose&gt;<br />
      &lt;xsl:when test=&#8221;contains($word,&#8217;&amp;#x0D;&#8217;)&#8221;&gt;<br />
         &lt;xsl:value-of select=&#8221;substring-before($word,&#8217;&amp;#x0D;&#8217;)&#8221;/&gt;<br />
            &lt;br/&gt;<br />
         &lt;xsl:call-template name=&#8221;br-replace&#8221;&gt;<br />
            &lt;xsl:with-param Name=&#8221;word&#8221; select=&#8221;substring-after($word,&#8217;&amp;#x0D;&#8217;)&#8221;/&gt;<br />
         &lt;/xsl:call-template&gt;<br />
      &lt;/xsl:when&gt;</p>
<p>      &lt;xsl:otherwise&gt;<br />
         &lt;xsl:value-of select=&#8221;$word&#8221;/&gt;<br />
      &lt;/xsl:otherwise&gt;<br />
   &lt;/xsl:choose&gt;   <br />
&lt;/xsl:template&gt;</p>
<p>Here&#8217;s the call:<br />
&lt;xsl:call-template name=&#8221;br-replace&#8221;&gt;<br />
   &lt;xsl:with-param name=&#8221;word&#8221; select=&#8221;.&#8221;/&gt;<br />
&lt;/xsl:call-template&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpkeisala.com/blog/2005/02/replace_linebreak_with_alt_br_agt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XHTML and business</title>
		<link>http://www.jpkeisala.com/blog/2004/09/xhtml_and_business/</link>
		<comments>http://www.jpkeisala.com/blog/2004/09/xhtml_and_business/#comments</comments>
		<pubDate>Thu, 16 Sep 2004 18:25:16 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.jpkeisala.com/blog/?p=268</guid>
		<description><![CDATA[Rakesh Pai writes The Economics of XHTML. Intresting reading for anyone who wants to know how to reduce costs by using xhtml instead html.
]]></description>
			<content:encoded><![CDATA[<p>Rakesh Pai writes <a href="http://piecesofrakesh.blogspot.com/2004/09/economics-of-xhtml.html" title="The Economics of XHTML">The Economics of XHTML</a>. Intresting reading for anyone who wants to know how to reduce costs by using xhtml instead html.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpkeisala.com/blog/2004/09/xhtml_and_business/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox got neat feature</title>
		<link>http://www.jpkeisala.com/blog/2004/09/firefox_got_neat_feature/</link>
		<comments>http://www.jpkeisala.com/blog/2004/09/firefox_got_neat_feature/#comments</comments>
		<pubDate>Tue, 14 Sep 2004 17:19:17 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.jpkeisala.com/blog/?p=282</guid>
		<description><![CDATA[Live Bookmarks is a new technology in Firefox that lets you view RSS news and blog headlines in the bookmarks toolbar or bookmarks menu.  With one glance, quickly see the latest headlines from your favorite sites.  Go directly to the articles that interest you &#8212; saving you time.
See picture below:

As picture tells there [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Live Bookmarks</strong> is a new technology in Firefox that lets you view RSS news and blog headlines in the bookmarks toolbar or bookmarks menu.  With one glance, quickly see the latest headlines from your favorite sites.  Go directly to the articles that interest you &#8212; saving you time.</p>
<p>See picture below:<br />
<img src="/v6/uploads/subscribeToRSS.gif"  alt="Subscribe to RSS on Firefox" /></p>
<p>As picture tells there is a little RSS button on page when there is a rss feed available for page contents. When you click it Firefox creates new folder into bookmarks with feed links and titles.<br />
Niceee&#8230;</p>
<p>More information in <a href="http://www.mozilla.org/products/firefox/live-bookmarks.html">Mozilla.org<br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpkeisala.com/blog/2004/09/firefox_got_neat_feature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Surfing XML sites</title>
		<link>http://www.jpkeisala.com/blog/2004/08/surfing_xml_sites/</link>
		<comments>http://www.jpkeisala.com/blog/2004/08/surfing_xml_sites/#comments</comments>
		<pubDate>Fri, 27 Aug 2004 02:30:41 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.jpkeisala.com/blog/?p=281</guid>
		<description><![CDATA[Seems like Kurt Cagle is back on blogging at BlogSpot with he?s new Metaphorical Web -website. I also notice that Kurt Cagle is on XML Developers Conference talking about XSLT2 on .NET. Too bad this conference is in U.S a bit too far for me to go another continent. &#61516;
Legendary XSLT books by Michael Kay [...]]]></description>
			<content:encoded><![CDATA[<p>Seems like Kurt Cagle is back on blogging at BlogSpot with he?s new <a href="http://metaphoricalweb.blogspot.com/">Metaphorical Web</a> -website. I also notice that Kurt Cagle is on <a href="http://www.sellsbrothers.com/conference/">XML Developers Conference</a> talking about XSLT2 on .NET. Too bad this conference is in U.S a bit too far for me to go another continent. &#61516;</p>
<p>Legendary XSLT books by Michael Kay are now in print. <a href="http://www.biglist.com/lists/xsl-list/archives/200408/threads.html#00944">Here</a> is related discussion in xsl-list about XSLT 2.0&#8243; and &#8220;XPath 2.0&#8243; books.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jpkeisala.com/blog/2004/08/surfing_xml_sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
