<?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"
	>
<channel>
	<title>Comments on: AJAX Logfile Tailer &#038; Viewer</title>
	<atom:link href="http://commavee.com/2007/04/13/ajax-logfile-tailer-viewer/feed/" rel="self" type="application/rss+xml" />
	<link>http://commavee.com/2007/04/13/ajax-logfile-tailer-viewer/</link>
	<description>Written by John Minnihan, founder of Freepository.  I write about software, automation and anything else that interests me.  Sometimes even coherently.</description>
	<pubDate>Sat, 22 Nov 2008 00:07:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: John Minnihan</title>
		<link>http://commavee.com/2007/04/13/ajax-logfile-tailer-viewer/#comment-32462</link>
		<dc:creator>John Minnihan</dc:creator>
		<pubDate>Sun, 28 Sep 2008 04:43:57 +0000</pubDate>
		<guid isPermaLink="false">http://commavee.com/2007/04/13/ajax-logfile-tailer-viewer/#comment-32462</guid>
		<description>I have added a working example here:

https://freepository.com/ajax-logtail-viewer.php</description>
		<content:encoded><![CDATA[<p>I have added a working example here:</p>
<p><a href="https://freepository.com/ajax-logtail-viewer.php" rel="nofollow">https://freepository.com/ajax-logtail-viewer.php</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Minnihan</title>
		<link>http://commavee.com/2007/04/13/ajax-logfile-tailer-viewer/#comment-32460</link>
		<dc:creator>John Minnihan</dc:creator>
		<pubDate>Sat, 27 Sep 2008 22:09:56 +0000</pubDate>
		<guid isPermaLink="false">http://commavee.com/2007/04/13/ajax-logfile-tailer-viewer/#comment-32460</guid>
		<description>There was a publishing error in the ajax Javascript.

The very last line:

var request = createRequest();

must be included - very sorry!</description>
		<content:encoded><![CDATA[<p>There was a publishing error in the ajax Javascript.</p>
<p>The very last line:</p>
<p>var request = createRequest();</p>
<p>must be included - very sorry!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Minnihan</title>
		<link>http://commavee.com/2007/04/13/ajax-logfile-tailer-viewer/#comment-32459</link>
		<dc:creator>John Minnihan</dc:creator>
		<pubDate>Sat, 27 Sep 2008 19:32:11 +0000</pubDate>
		<guid isPermaLink="false">http://commavee.com/2007/04/13/ajax-logfile-tailer-viewer/#comment-32459</guid>
		<description>Hey graziano,

Sure - you may edit the script any way you wish.  Have fun with it.

What part isn't working?  Do you see any error messages?</description>
		<content:encoded><![CDATA[<p>Hey graziano,</p>
<p>Sure - you may edit the script any way you wish.  Have fun with it.</p>
<p>What part isn&#8217;t working?  Do you see any error messages?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Graziano</title>
		<link>http://commavee.com/2007/04/13/ajax-logfile-tailer-viewer/#comment-32372</link>
		<dc:creator>Graziano</dc:creator>
		<pubDate>Tue, 23 Sep 2008 08:02:25 +0000</pubDate>
		<guid isPermaLink="false">http://commavee.com/2007/04/13/ajax-logfile-tailer-viewer/#comment-32372</guid>
		<description>Hello

may I use this
var url = "logtail.php";
instead of this
var url = "http://your.system.yourdomain.com/logtail.php";

BTW for me it's does not work , do you confirm that all the js files are shown above ?

Thank you!</description>
		<content:encoded><![CDATA[<p>Hello</p>
<p>may I use this<br />
var url = &#8220;logtail.php&#8221;;<br />
instead of this<br />
var url = &#8220;http://your.system.yourdomain.com/logtail.php&#8221;;</p>
<p>BTW for me it&#8217;s does not work , do you confirm that all the js files are shown above ?</p>
<p>Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Minnihan</title>
		<link>http://commavee.com/2007/04/13/ajax-logfile-tailer-viewer/#comment-13897</link>
		<dc:creator>John Minnihan</dc:creator>
		<pubDate>Tue, 02 Oct 2007 17:37:55 +0000</pubDate>
		<guid isPermaLink="false">http://commavee.com/2007/04/13/ajax-logfile-tailer-viewer/#comment-13897</guid>
		<description>hey Aaron,

Sorry for the delayed reply to your question.  

The getLog function updates properly for me on Flock, Firefox &#038; Camino on OSX.  You may be seeing results of IE's (assuming IE here) aggressive caching. There are two ways to avoid the caching isssue: first, create a truly random URL such that each time the GET is invoked, it will indeed be unique.  This is in fact the technique you used.

The other is to use the NO-CACHE metatag on the page.  I've used this elsewhere to prevent IE from caching a page, primarily to prevent it from being accessible in the history.  This is discussed here:

http://support.microsoft.com/kb/q222064/

Note that to fully implement this technique, you must place a NO-CACHE rule both in the header and at the bottom of the html.</description>
		<content:encoded><![CDATA[<p>hey Aaron,</p>
<p>Sorry for the delayed reply to your question.  </p>
<p>The getLog function updates properly for me on Flock, Firefox &#038; Camino on OSX.  You may be seeing results of IE&#8217;s (assuming IE here) aggressive caching. There are two ways to avoid the caching isssue: first, create a truly random URL such that each time the GET is invoked, it will indeed be unique.  This is in fact the technique you used.</p>
<p>The other is to use the NO-CACHE metatag on the page.  I&#8217;ve used this elsewhere to prevent IE from caching a page, primarily to prevent it from being accessible in the history.  This is discussed here:</p>
<p><a href="http://support.microsoft.com/kb/q222064/" rel="nofollow">http://support.microsoft.com/kb/q222064/</a></p>
<p>Note that to fully implement this technique, you must place a NO-CACHE rule both in the header and at the bottom of the html.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
