<?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: Really Simple History: Onwards and upwards</title>
	<atom:link href="http://www.pathf.com/blogs/2007/09/really-simple-h-5/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pathf.com/blogs/2007/09/really-simple-h-5/</link>
	<description>Running commentary about agile development, user experience design and Ajax.</description>
	<lastBuildDate>Fri, 05 Mar 2010 19:33:43 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Mark</title>
		<link>http://www.pathf.com/blogs/2007/09/really-simple-h-5/comment-page-1/#comment-1883</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Wed, 11 Jun 2008 12:09:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=253#comment-1883</guid>
		<description>Whoops, didn&#039;t think the html would be parsed. Here are the three examples:


&lt;code&gt;&lt;!--Example 1:--&gt;&lt;/code&gt;
&lt;code&gt;&lt;a href=&quot;addHistoryEvent();&quot; rel=&quot;nofollow&quot;&gt;add history&lt;/a&gt;&lt;/code&gt;
&lt;code&gt;&lt;/code&gt;
&lt;code&gt;&lt;!--Example 2:--&gt;&lt;/code&gt;
&lt;code&gt;&lt;a href=&quot;rshTestPage.html#one&quot; rel=&quot;nofollow&quot;&gt;add history&lt;/a&gt;&lt;/code&gt;
&lt;code&gt;&lt;/code&gt;
&lt;code&gt;&lt;!--Example 3:--&gt;&lt;/code&gt;
&lt;code&gt;&lt;a href=&quot;rshTestPage_one.html&quot; rel=&quot;nofollow&quot;&gt;add history&lt;/a&gt;&lt;/code&gt;
</description>
		<content:encoded><![CDATA[<p>Whoops, didn&#8217;t think the html would be parsed. Here are the three examples:</p>
<p><code><!--Example 1:--></code><br />
<code><a href="addHistoryEvent();" rel="nofollow">add history</a></code><br />
<code></code><br />
<code><!--Example 2:--></code><br />
<code><a href="rshTestPage.html#one" rel="nofollow">add history</a></code><br />
<code></code><br />
<code><!--Example 3:--></code><br />
<code><a href="rshTestPage_one.html" rel="nofollow">add history</a></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.pathf.com/blogs/2007/09/really-simple-h-5/comment-page-1/#comment-1882</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Wed, 11 Jun 2008 11:57:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=253#comment-1882</guid>
		<description>Hi Brian (and Wael)

After looking into this I discovered that most sitemap generators don&#039;t support RSH links (which is probably due to &quot;javascript&quot; being included in each of them).

This is because RSH links in the demos given are in the following format:

&lt;!--Example 1:--&gt;
&lt;a href=&quot;addHistoryEvent();&quot; rel=&quot;nofollow&quot;&gt;add history&lt;/a&gt;

If you use the url generated by the script in the &#039;href&#039; content and then put the javascript link in &#039;onclick&#039;, you will find that the script is initialised but the link is ignored, yet running a sitemap generator on this will list all links within &#039;href&#039;.

&lt;!--Example 2:--&gt;
&lt;a href=&quot;rshTestPage.html#one&quot; rel=&quot;nofollow&quot;&gt;add history&lt;/a&gt;

I&#039;m not sure if this works so well when you change the linked item dynamically, but this is a decent solution in my opinion for listing items. If this method doesn&#039;t work exactly as planned then perhaps run an .htaccess script that points to the same item and change the url to something like the following:

&lt;!--Example 3:--&gt;
&lt;a href=&quot;rshTestPage_one.html&quot; rel=&quot;nofollow&quot;&gt;add history&lt;/a&gt;

With the .htaccess script the page would then be interpreted by a search bot as an existing page, yet the server would interpret the page as the &#039;href&#039; content given in the second example.</description>
		<content:encoded><![CDATA[<p>Hi Brian (and Wael)</p>
<p>After looking into this I discovered that most sitemap generators don&#8217;t support RSH links (which is probably due to &#8220;javascript&#8221; being included in each of them).</p>
<p>This is because RSH links in the demos given are in the following format:</p>
<p><!--Example 1:--><br />
<a href="addHistoryEvent();" rel="nofollow">add history</a></p>
<p>If you use the url generated by the script in the &#8216;href&#8217; content and then put the javascript link in &#8216;onclick&#8217;, you will find that the script is initialised but the link is ignored, yet running a sitemap generator on this will list all links within &#8216;href&#8217;.</p>
<p><!--Example 2:--><br />
<a href="rshTestPage.html#one" rel="nofollow">add history</a></p>
<p>I&#8217;m not sure if this works so well when you change the linked item dynamically, but this is a decent solution in my opinion for listing items. If this method doesn&#8217;t work exactly as planned then perhaps run an .htaccess script that points to the same item and change the url to something like the following:</p>
<p><!--Example 3:--><br />
<a href="rshTestPage_one.html" rel="nofollow">add history</a></p>
<p>With the .htaccess script the page would then be interpreted by a search bot as an existing page, yet the server would interpret the page as the &#8216;href&#8217; content given in the second example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wael</title>
		<link>http://www.pathf.com/blogs/2007/09/really-simple-h-5/comment-page-1/#comment-344</link>
		<dc:creator>Wael</dc:creator>
		<pubDate>Fri, 04 Jan 2008 18:54:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=253#comment-344</guid>
		<description>&lt;p&gt;Hi Brian,&lt;/p&gt;

&lt;p&gt;First, let me start by saying, thanks!&lt;br /&gt;
I&#039;m new to Ajax and web development. I just implemented history and bookmarking capability with RSH and it seems to be working fine. My question: does this solution also solve the search engine problem. That is, if I have a sitemap with links on all my website pages (i.e. &quot;pages + RSH solution&quot;) and submitted the sitemap to google, will google and other search engines be able to read them and properly index them.&lt;/p&gt;

&lt;p&gt;Thanks,&lt;br /&gt;
- Wael&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>Hi Brian,</p>
<p>First, let me start by saying, thanks!<br />
I&#8217;m new to Ajax and web development. I just implemented history and bookmarking capability with RSH and it seems to be working fine. My question: does this solution also solve the search engine problem. That is, if I have a sitemap with links on all my website pages (i.e. &#8220;pages + RSH solution&#8221;) and submitted the sitemap to google, will google and other search engines be able to read them and properly index them.</p>
<p>Thanks,<br />
- Wael</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wael</title>
		<link>http://www.pathf.com/blogs/2007/09/really-simple-h-5/comment-page-1/#comment-343</link>
		<dc:creator>Wael</dc:creator>
		<pubDate>Fri, 04 Jan 2008 18:52:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=253#comment-343</guid>
		<description>&lt;p&gt;Hi Brian,&lt;/p&gt;

&lt;p&gt;First, let me start by saying, thanks!&lt;br /&gt;
I&#039;m new to Ajax and web development. I just implemented history and bookmarking capability with RSH and it seems to be working fine. My question: does this solution also solve the search engine problem. That is, if I have a sitemap with links on all my website pages (i.e. &quot;pages + RSH solution&quot;) and submitted the sitemap to google, will google and other search engines be able to read them and properly index them.&lt;/p&gt;

&lt;p&gt;Thanks,&lt;br /&gt;
- Wael&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Brian,</p>
<p>First, let me start by saying, thanks!<br />
I&#8217;m new to Ajax and web development. I just implemented history and bookmarking capability with RSH and it seems to be working fine. My question: does this solution also solve the search engine problem. That is, if I have a sitemap with links on all my website pages (i.e. &#8220;pages + RSH solution&#8221;) and submitted the sitemap to google, will google and other search engines be able to read them and properly index them.</p>
<p>Thanks,<br />
- Wael</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ms</title>
		<link>http://www.pathf.com/blogs/2007/09/really-simple-h-5/comment-page-1/#comment-342</link>
		<dc:creator>ms</dc:creator>
		<pubDate>Tue, 20 Nov 2007 14:39:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=253#comment-342</guid>
		<description>&lt;p&gt;Thanks for putting together RSH. I am trying to use it in my code but am confused about the usage. I looked at the usage instructions at Google code, but I could not figure out how to add to history. Can you provide some more details as to when to invoke dhtmlHistory.add and historyStorage.put/get ? &lt;/p&gt;

&lt;p&gt;Thanks for your help. &lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for putting together RSH. I am trying to use it in my code but am confused about the usage. I looked at the usage instructions at Google code, but I could not figure out how to add to history. Can you provide some more details as to when to invoke dhtmlHistory.add and historyStorage.put/get ? </p>
<p>Thanks for your help. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Magnus</title>
		<link>http://www.pathf.com/blogs/2007/09/really-simple-h-5/comment-page-1/#comment-341</link>
		<dc:creator>Magnus</dc:creator>
		<pubDate>Mon, 08 Oct 2007 20:04:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=253#comment-341</guid>
		<description>&lt;p&gt;Looking forward to the next release.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Looking forward to the next release.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad Neuberg</title>
		<link>http://www.pathf.com/blogs/2007/09/really-simple-h-5/comment-page-1/#comment-340</link>
		<dc:creator>Brad Neuberg</dc:creator>
		<pubDate>Fri, 14 Sep 2007 18:41:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=253#comment-340</guid>
		<description>&lt;p&gt;hdfssk and Trey, thanks for using RSH!&lt;/p&gt;

&lt;p&gt;Best,&lt;br /&gt;
Brad&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>hdfssk and Trey, thanks for using RSH!</p>
<p>Best,<br />
Brad</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad Neuberg</title>
		<link>http://www.pathf.com/blogs/2007/09/really-simple-h-5/comment-page-1/#comment-339</link>
		<dc:creator>Brad Neuberg</dc:creator>
		<pubDate>Fri, 14 Sep 2007 18:15:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=253#comment-339</guid>
		<description>&lt;p&gt;There are a variety of forks and patches others have done on RSH. Amalgamating those is probably a good first step.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>There are a variety of forks and patches others have done on RSH. Amalgamating those is probably a good first step.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad Neuberg</title>
		<link>http://www.pathf.com/blogs/2007/09/really-simple-h-5/comment-page-1/#comment-338</link>
		<dc:creator>Brad Neuberg</dc:creator>
		<pubDate>Fri, 14 Sep 2007 18:14:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=253#comment-338</guid>
		<description>&lt;p&gt;Brian, I&#039;m very excited that you are onboard and leading the project now. I just did a blog post about it:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://codinginparadise.org/weblog/2007/09/really-simple-history-finds-new-home.html&quot; rel=&quot;nofollow&quot;&gt;http://codinginparadise.org/weblog/2007/09/really-simple-history-finds-new-home.html&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Best,&lt;br /&gt;
Brad&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Brian, I&#8217;m very excited that you are onboard and leading the project now. I just did a blog post about it:</p>
<p><a href="http://codinginparadise.org/weblog/2007/09/really-simple-history-finds-new-home.html" rel="nofollow">http://codinginparadise.org/weblog/2007/09/really-simple-history-finds-new-home.html</a></p>
<p>Best,<br />
Brad</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trey</title>
		<link>http://www.pathf.com/blogs/2007/09/really-simple-h-5/comment-page-1/#comment-337</link>
		<dc:creator>Trey</dc:creator>
		<pubDate>Wed, 12 Sep 2007 22:50:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=253#comment-337</guid>
		<description>&lt;p&gt;Sweet, looking forward to it. Been using it for a long time.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Sweet, looking forward to it. Been using it for a long time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hdfssk</title>
		<link>http://www.pathf.com/blogs/2007/09/really-simple-h-5/comment-page-1/#comment-336</link>
		<dc:creator>hdfssk</dc:creator>
		<pubDate>Wed, 12 Sep 2007 21:39:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=253#comment-336</guid>
		<description>&lt;p&gt;Big ups, Brian! I&#039;d been occasionally checking for the latest changes to an RSH fork at &lt;a href=&quot;http://cvs.horde.org/dimp/js/src/dhtmlHistory.js&quot; rel=&quot;nofollow&quot;&gt;http://cvs.horde.org/dimp/js/src/dhtmlHistory.js&lt;/a&gt; .. it&#039;ll be good to have proper new releases.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Big ups, Brian! I&#8217;d been occasionally checking for the latest changes to an RSH fork at <a href="http://cvs.horde.org/dimp/js/src/dhtmlHistory.js" rel="nofollow">http://cvs.horde.org/dimp/js/src/dhtmlHistory.js</a> .. it&#8217;ll be good to have proper new releases.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: theIntuitionist</title>
		<link>http://www.pathf.com/blogs/2007/09/really-simple-h-5/comment-page-1/#comment-335</link>
		<dc:creator>theIntuitionist</dc:creator>
		<pubDate>Wed, 12 Sep 2007 16:39:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=253#comment-335</guid>
		<description>&lt;p&gt;Fantastic!  We are using yui&#039;s browser history, which seemed to be the best of the crop of history managers when we made the choice.  It has to be the most brittle piece of code in our app.  The most ridiculous requirement is that it has to be included inline at the top of the body.  You can&#039;t put it in a separate file.  I am very glad that development of browser history is progressing.  Thanks for taking this on!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Fantastic!  We are using yui&#8217;s browser history, which seemed to be the best of the crop of history managers when we made the choice.  It has to be the most brittle piece of code in our app.  The most ridiculous requirement is that it has to be included inline at the top of the body.  You can&#8217;t put it in a separate file.  I am very glad that development of browser history is progressing.  Thanks for taking this on!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.280 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-20 15:11:03 -->
