<?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 for nonobtrusive</title>
	<atom:link href="http://www.nonobtrusive.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nonobtrusive.com</link>
	<description>nonobtrusive web development and other stuff</description>
	<lastBuildDate>Mon, 30 Jan 2012 11:18:21 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Offline Logger 0.4 by Erik Karlsson</title>
		<link>http://www.nonobtrusive.com/2010/09/19/offline-logger-0-4/comment-page-1/#comment-275</link>
		<dc:creator>Erik Karlsson</dc:creator>
		<pubDate>Mon, 30 Jan 2012 11:18:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.nonobtrusive.com/?p=215#comment-275</guid>
		<description>I&#039;m afraid that&#039;s not possible right now. There however have been such requests from other users as well, to be able to change save location and filenames so this will be implemented in the future.</description>
		<content:encoded><![CDATA[<p>I&#8217;m afraid that&#8217;s not possible right now. There however have been such requests from other users as well, to be able to change save location and filenames so this will be implemented in the future.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Offline Logger 0.4 by Dominique</title>
		<link>http://www.nonobtrusive.com/2010/09/19/offline-logger-0-4/comment-page-1/#comment-274</link>
		<dc:creator>Dominique</dc:creator>
		<pubDate>Mon, 30 Jan 2012 11:06:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.nonobtrusive.com/?p=215#comment-274</guid>
		<description>Hi, offline logger works great and does just what I need, thanks. Is there a way to edit the autosaved .gpx file name and set it to overwrite the current file each time a new log is started. I am using it to run live location tracking, the mapping software reads the file I pass it (i.e. myLocation.gpx) so I am trying to find a way for offline logger to create a file with a custom name rather than its current date/time.

Many Thanks
Dom</description>
		<content:encoded><![CDATA[<p>Hi, offline logger works great and does just what I need, thanks. Is there a way to edit the autosaved .gpx file name and set it to overwrite the current file each time a new log is started. I am using it to run live location tracking, the mapping software reads the file I pass it (i.e. myLocation.gpx) so I am trying to find a way for offline logger to create a file with a custom name rather than its current date/time.</p>
<p>Many Thanks<br />
Dom</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lightweight JSONP javascript library by Gabriel</title>
		<link>http://www.nonobtrusive.com/2010/05/20/lightweight-jsonp-without-any-3rd-party-libraries/comment-page-1/#comment-268</link>
		<dc:creator>Gabriel</dc:creator>
		<pubDate>Fri, 06 Jan 2012 16:54:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.nonobtrusive.com/?p=160#comment-268</guid>
		<description>Hey, thank you very much for the code!

I just wanted to let you know that I found an improvement you can make to it.

When you say:

query = &quot;?&quot;;

Keep in mind that the request URL may already have a query string in it, and thus the &quot;?&quot; should be replaced with a &quot;&amp;&quot;.

What do you think?</description>
		<content:encoded><![CDATA[<p>Hey, thank you very much for the code!</p>
<p>I just wanted to let you know that I found an improvement you can make to it.</p>
<p>When you say:</p>
<p>query = &#8220;?&#8221;;</p>
<p>Keep in mind that the request URL may already have a query string in it, and thus the &#8220;?&#8221; should be replaced with a &#8220;&amp;&#8221;.</p>
<p>What do you think?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom events in javascript by making your own Dispatcher class. by Tobias</title>
		<link>http://www.nonobtrusive.com/2009/07/24/custom-events-in-javascript-by-making-your-own-dispatcher-class/comment-page-1/#comment-249</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Tue, 06 Dec 2011 15:57:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.nonobtrusive.com/?p=38#comment-249</guid>
		<description>Another thing: 
in the addEventListener function : 

addEventListener = function(event, callback, caller){
    	this.events[event] = this.events[event] &#124;&#124; [];
    	if ( this.events[event] ) {
    		this.events[event].push({

You should change &quot;push&quot; to &quot;unshift&quot; so the object that added the eventListener first will get called the first when the event is dispatched.</description>
		<content:encoded><![CDATA[<p>Another thing:<br />
in the addEventListener function : </p>
<p>addEventListener = function(event, callback, caller){<br />
    	this.events[event] = this.events[event] || [];<br />
    	if ( this.events[event] ) {<br />
    		this.events[event].push({</p>
<p>You should change &#8220;push&#8221; to &#8220;unshift&#8221; so the object that added the eventListener first will get called the first when the event is dispatched.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom events in javascript by making your own Dispatcher class. by Tobias</title>
		<link>http://www.nonobtrusive.com/2009/07/24/custom-events-in-javascript-by-making-your-own-dispatcher-class/comment-page-1/#comment-248</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Tue, 06 Dec 2011 15:54:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.nonobtrusive.com/?p=38#comment-248</guid>
		<description>In addition to Aubrey&#039;s data extension:

I use this code in my object oriented environment and needed a reference to the object that received an event. In your current code the context to the object that receives the event is lost (the context is set to the eventDispatcher). 

My little add-on excepts a third parameter in the addEventListener method (caller). Add a reference to the object that is getting the eventListener here (e.g.: this) and in your callback you can retrieve the listening object (e.g.: callback(data, CALLER). The CALLER will be the object that was listening.

http://pastie.org/2975411

PS: Great piece of code! This makes javascript behave a lot like AS3 :)</description>
		<content:encoded><![CDATA[<p>In addition to Aubrey&#8217;s data extension:</p>
<p>I use this code in my object oriented environment and needed a reference to the object that received an event. In your current code the context to the object that receives the event is lost (the context is set to the eventDispatcher). </p>
<p>My little add-on excepts a third parameter in the addEventListener method (caller). Add a reference to the object that is getting the eventListener here (e.g.: this) and in your callback you can retrieve the listening object (e.g.: callback(data, CALLER). The CALLER will be the object that was listening.</p>
<p><a href="http://pastie.org/2975411" rel="nofollow">http://pastie.org/2975411</a></p>
<p>PS: Great piece of code! This makes javascript behave a lot like AS3 <img src='http://www.nonobtrusive.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Strict standards could break admin css in wordpress by FalkSchoolBlog</title>
		<link>http://www.nonobtrusive.com/2009/07/18/strict-standards-could-break-admin-css-in-wordpress/comment-page-1/#comment-236</link>
		<dc:creator>FalkSchoolBlog</dc:creator>
		<pubDate>Thu, 24 Nov 2011 09:23:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.nonobtrusive.com/?p=10#comment-236</guid>
		<description>Hey   
   
- Do You want to conscious all wide popular Russian site odnoklassniki.ru in support of classmates search?   
- Are You going to treks to Egypt?   
- Do You want to eat a way and entertain a coffee break in Rome?   
- Do You like mobile to Berlin?   
   
- May be you after to remember all nigh Swine influenza?   
   
- Or may be you unprejudiced stand in want to decide between doing sports or watching it on the TV?   
   
You be enduring to afflict additional Falk School Blog at &lt;a href=&quot;http://falk-school.com&quot; rel=&quot;nofollow&quot;&gt;falk-school.com&lt;/a&gt;   
   
I&#039;s repentant if I&#039;m offtopic here.   
And a talented allege to Admin, transfer this transmit to suitable field!   
   
Thanks through despite your r‚clame!   
   
Falk-School</description>
		<content:encoded><![CDATA[<p>Hey   </p>
<p>- Do You want to conscious all wide popular Russian site odnoklassniki.ru in support of classmates search?<br />
- Are You going to treks to Egypt?<br />
- Do You want to eat a way and entertain a coffee break in Rome?<br />
- Do You like mobile to Berlin?   </p>
<p>- May be you after to remember all nigh Swine influenza?   </p>
<p>- Or may be you unprejudiced stand in want to decide between doing sports or watching it on the TV?   </p>
<p>You be enduring to afflict additional Falk School Blog at <a href="http://falk-school.com" rel="nofollow">falk-school.com</a>   </p>
<p>I&#8217;s repentant if I&#8217;m offtopic here.<br />
And a talented allege to Admin, transfer this transmit to suitable field!   </p>
<p>Thanks through despite your r‚clame!   </p>
<p>Falk-School</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Offline Logger 0.4.1 patch by Heine</title>
		<link>http://www.nonobtrusive.com/2010/09/20/offline-logger-0-4-1-patch/comment-page-1/#comment-235</link>
		<dc:creator>Heine</dc:creator>
		<pubDate>Sun, 13 Nov 2011 16:54:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.nonobtrusive.com/?p=220#comment-235</guid>
		<description>Hi Erik. After your latest update 0.5.1 my phone has started to reboot and the first time after update when it gave an error on time out of the program. (Motorola Defy)</description>
		<content:encoded><![CDATA[<p>Hi Erik. After your latest update 0.5.1 my phone has started to reboot and the first time after update when it gave an error on time out of the program. (Motorola Defy)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom events in javascript by making your own Dispatcher class. by Anil</title>
		<link>http://www.nonobtrusive.com/2009/07/24/custom-events-in-javascript-by-making-your-own-dispatcher-class/comment-page-1/#comment-234</link>
		<dc:creator>Anil</dc:creator>
		<pubDate>Thu, 10 Nov 2011 12:17:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.nonobtrusive.com/?p=38#comment-234</guid>
		<description>This awesome coding work fine when we follow structure coding in our app. But fail when we work with classes.</description>
		<content:encoded><![CDATA[<p>This awesome coding work fine when we follow structure coding in our app. But fail when we work with classes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Offline Logger 0.4.1 patch by Erik Karlsson</title>
		<link>http://www.nonobtrusive.com/2010/09/20/offline-logger-0-4-1-patch/comment-page-1/#comment-233</link>
		<dc:creator>Erik Karlsson</dc:creator>
		<pubDate>Sun, 06 Nov 2011 19:32:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.nonobtrusive.com/?p=220#comment-233</guid>
		<description>@Peter: Thanks for your feedback. I&#039;ll have your comments/bugreports in my mind for the next patch. There is alot to do and fix since I&#039;ve recently taken up the development of this project again.</description>
		<content:encoded><![CDATA[<p>@Peter: Thanks for your feedback. I&#8217;ll have your comments/bugreports in my mind for the next patch. There is alot to do and fix since I&#8217;ve recently taken up the development of this project again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Offline Logger 0.4.1 patch by Peter</title>
		<link>http://www.nonobtrusive.com/2010/09/20/offline-logger-0-4-1-patch/comment-page-1/#comment-232</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Fri, 04 Nov 2011 09:59:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.nonobtrusive.com/?p=220#comment-232</guid>
		<description>Thanks for you program!

Some remarks:
-program doesnt check of existance gpx-files on sdcard (if I deleted it manually before- difficult to manage great number)
-no ability to delete all or delete selected for the gpx-files
-with gpx-files once indexed, this ability dissapears from menu, unless new records have been made

-autostart doesnt work (LG P500 phone)
-sometimes no restart happens, when receiving conditions changes (good-no_sats-good)

-share last position only works in active logging mode, so this menu item should be grayed in stop mode

Good Luck - #1 program</description>
		<content:encoded><![CDATA[<p>Thanks for you program!</p>
<p>Some remarks:<br />
-program doesnt check of existance gpx-files on sdcard (if I deleted it manually before- difficult to manage great number)<br />
-no ability to delete all or delete selected for the gpx-files<br />
-with gpx-files once indexed, this ability dissapears from menu, unless new records have been made</p>
<p>-autostart doesnt work (LG P500 phone)<br />
-sometimes no restart happens, when receiving conditions changes (good-no_sats-good)</p>
<p>-share last position only works in active logging mode, so this menu item should be grayed in stop mode</p>
<p>Good Luck &#8211; #1 program</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- analytics977 --> 
