<?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 Two App Guys</title>
	<atom:link href="http://twoappguys.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://twoappguys.com</link>
	<description>Apps for the iPhone, iPad, iPod Touch, Android plus info on creating your own apps</description>
	<lastBuildDate>Fri, 16 Sep 2011 21:39:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>Comment on iOS4 and the wildcard by Nick</title>
		<link>http://twoappguys.com/blog/ios4-and-the-wildcard/#comment-681</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Fri, 16 Sep 2011 21:39:15 +0000</pubDate>
		<guid isPermaLink="false">http://twoappguys.com/?p=125#comment-681</guid>
		<description>Thank you so much for posting your code. This was the final piece I needed to solve way too many hours of fail</description>
		<content:encoded><![CDATA[<p>Thank you so much for posting your code. This was the final piece I needed to solve way too many hours of fail</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Appcelerator View RSS Feed by Thierry</title>
		<link>http://twoappguys.com/blog/appcelerator-view-rss-feed/#comment-377</link>
		<dc:creator>Thierry</dc:creator>
		<pubDate>Thu, 11 Aug 2011 11:05:41 +0000</pubDate>
		<guid isPermaLink="false">http://twoappguys.com/?p=190#comment-377</guid>
		<description>Great Tutorial

I&#039;ve trying to put the image of RSS, but it does&#039;nt work, any idea ?
thank you</description>
		<content:encoded><![CDATA[<p>Great Tutorial</p>
<p>I&#8217;ve trying to put the image of RSS, but it does&#8217;nt work, any idea ?<br />
thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Appcelerator View RSS Feed by Thierry</title>
		<link>http://twoappguys.com/blog/appcelerator-view-rss-feed/#comment-376</link>
		<dc:creator>Thierry</dc:creator>
		<pubDate>Thu, 11 Aug 2011 11:03:36 +0000</pubDate>
		<guid isPermaLink="false">http://twoappguys.com/?p=190#comment-376</guid>
		<description>Great  tutorial
It&#039;s possible to add image of RSS ?
i&#039;ve trying, but it doesn&#039;t work.

________________________________________
xhr.onload = function() {
	var xml = Ti.XML.parseString(this.responseText);
	var channel = xml.documentElement.getElementsByTagName(&quot;channel&quot;);
	var title = channel.item(0).getElementsByTagName(&quot;title&quot;).item(0).text;
	var image = xml.documentElement.getElementsByTagName(&#039;image&#039;);

	// recherche de l&#039;image
//	var image = channel.item(0).getElementsByTagName(&quot;image&quot;).item(0).image;

	rssWindow.title = title;
	var items = xml.documentElement.getElementsByTagName(&quot;item&quot;);
	for (var i=0;i&lt;items.length;i++) {
		var this_post_title = items.item(i).getElementsByTagName(&quot;title&quot;).item(0).text;
		var post_link = items.item(i).getElementsByTagName(&quot;link&quot;).item(0).text;
		var post_media = items.item(i).getElementsByTagName(&quot;image&quot;).item(0).image;
		
  		var row = Ti.UI.createTableViewRow({leftImage:&#039;images/arrow_left.png&#039;,height:&#039;auto&#039;,width:WindowWidth,top:0,hasChild: true});

		var item_image = Ti.UI.createImageView({
            image:post_media,
            left:10,
            top:3,
            width:57,
            height:57,
            borderColor:&#039;#000&#039;,
            borderRadius:3
        });
        
		var post_title = Ti.UI.createLabel({
			text: this_post_title,
			textAlign:&#039;left&#039;,
			left:73,
			height:63,
			width:&#039;auto&#039;,
			top:0,
			color: &#039;black&#039;
		});	
		row.add(item_image);
		row.add(post_title);
		row.link = post_link;
		data.push(row);			
	}
	var tv = Titanium.UI.createTableView({
		data:data,
		top:0,
		width:WindowWidth,
		height:WindowHeight - 110
	});
	rssWindow.add(tv);
	tv.addEventListener(&#039;click&#039;,function(e) {
		var webwin = Titanium.UI.createWindow({
			url: &#039;showweb.js&#039;,
			backgroundColor: &#039;#fff&#039;,
			myurl: e.rowData.link
		});
		rssTab.open(webwin);
	});
};

xhr.send();</description>
		<content:encoded><![CDATA[<p>Great  tutorial<br />
It&#8217;s possible to add image of RSS ?<br />
i&#8217;ve trying, but it doesn&#8217;t work.</p>
<p>________________________________________<br />
xhr.onload = function() {<br />
	var xml = Ti.XML.parseString(this.responseText);<br />
	var channel = xml.documentElement.getElementsByTagName(&#8220;channel&#8221;);<br />
	var title = channel.item(0).getElementsByTagName(&#8220;title&#8221;).item(0).text;<br />
	var image = xml.documentElement.getElementsByTagName(&#8216;image&#8217;);</p>
<p>	// recherche de l&#8217;image<br />
//	var image = channel.item(0).getElementsByTagName(&#8220;image&#8221;).item(0).image;</p>
<p>	rssWindow.title = title;<br />
	var items = xml.documentElement.getElementsByTagName(&#8220;item&#8221;);<br />
	for (var i=0;i&lt;items.length;i++) {<br />
		var this_post_title = items.item(i).getElementsByTagName(&quot;title&quot;).item(0).text;<br />
		var post_link = items.item(i).getElementsByTagName(&quot;link&quot;).item(0).text;<br />
		var post_media = items.item(i).getElementsByTagName(&quot;image&quot;).item(0).image;</p>
<p>  		var row = Ti.UI.createTableViewRow({leftImage:&#039;images/arrow_left.png&#039;,height:&#039;auto&#039;,width:WindowWidth,top:0,hasChild: true});</p>
<p>		var item_image = Ti.UI.createImageView({<br />
            image:post_media,<br />
            left:10,<br />
            top:3,<br />
            width:57,<br />
            height:57,<br />
            borderColor:&#039;#000&#039;,<br />
            borderRadius:3<br />
        });</p>
<p>		var post_title = Ti.UI.createLabel({<br />
			text: this_post_title,<br />
			textAlign:&#039;left&#039;,<br />
			left:73,<br />
			height:63,<br />
			width:&#039;auto&#039;,<br />
			top:0,<br />
			color: &#039;black&#039;<br />
		});<br />
		row.add(item_image);<br />
		row.add(post_title);<br />
		row.link = post_link;<br />
		data.push(row);<br />
	}<br />
	var tv = Titanium.UI.createTableView({<br />
		data:data,<br />
		top:0,<br />
		width:WindowWidth,<br />
		height:WindowHeight &#8211; 110<br />
	});<br />
	rssWindow.add(tv);<br />
	tv.addEventListener(&#039;click&#039;,function(e) {<br />
		var webwin = Titanium.UI.createWindow({<br />
			url: &#039;showweb.js&#039;,<br />
			backgroundColor: &#039;#fff&#039;,<br />
			myurl: e.rowData.link<br />
		});<br />
		rssTab.open(webwin);<br />
	});<br />
};</p>
<p>xhr.send();</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Appcelerator View RSS Feed by Tony</title>
		<link>http://twoappguys.com/blog/appcelerator-view-rss-feed/#comment-166</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Sun, 17 Jul 2011 21:49:27 +0000</pubDate>
		<guid isPermaLink="false">http://twoappguys.com/?p=190#comment-166</guid>
		<description>Are you on Windows, Mac or Linux?</description>
		<content:encoded><![CDATA[<p>Are you on Windows, Mac or Linux?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Appcelerator View RSS Feed by Meena</title>
		<link>http://twoappguys.com/blog/appcelerator-view-rss-feed/#comment-165</link>
		<dc:creator>Meena</dc:creator>
		<pubDate>Sun, 17 Jul 2011 19:25:53 +0000</pubDate>
		<guid isPermaLink="false">http://twoappguys.com/?p=190#comment-165</guid>
		<description>Using explorer or firefox, I seem to be having issues viewing the part of the tutorial after this line:

back to the xhr.onload = function() {

Would love to finish :) 

Thanks!</description>
		<content:encoded><![CDATA[<p>Using explorer or firefox, I seem to be having issues viewing the part of the tutorial after this line:</p>
<p>back to the xhr.onload = function() {</p>
<p>Would love to finish <img src='http://twoappguys.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Appcelerator View RSS Feed by Quentin</title>
		<link>http://twoappguys.com/blog/appcelerator-view-rss-feed/#comment-94</link>
		<dc:creator>Quentin</dc:creator>
		<pubDate>Tue, 05 Jul 2011 04:30:38 +0000</pubDate>
		<guid isPermaLink="false">http://twoappguys.com/?p=190#comment-94</guid>
		<description>Thanks a lot for the tutorial. It is really useful.

I have a question, I am trying to add a refresh button on the app but I can not figure out how to do it. I tried to replicate the code from Kitchen sink, but I did not succeed. Any idea how to do this simply?</description>
		<content:encoded><![CDATA[<p>Thanks a lot for the tutorial. It is really useful.</p>
<p>I have a question, I am trying to add a refresh button on the app but I can not figure out how to do it. I tried to replicate the code from Kitchen sink, but I did not succeed. Any idea how to do this simply?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GPS, it&#8217;s the Cat&#8217;s Meow! by Tony Virelli</title>
		<link>http://twoappguys.com/blog/gps-its-the-cats-meow/#comment-91</link>
		<dc:creator>Tony Virelli</dc:creator>
		<pubDate>Mon, 04 Jul 2011 22:03:08 +0000</pubDate>
		<guid isPermaLink="false">http://twoappguys.com/?p=264#comment-91</guid>
		<description>@Dan Tamas I think the reason he didn&#039;t mention it was because he was focusing on android and GPS not iOS and GPS.</description>
		<content:encoded><![CDATA[<p>@Dan Tamas I think the reason he didn&#8217;t mention it was because he was focusing on android and GPS not iOS and GPS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mobile Lullaby by This Week in Titanium Mobile: 27 June 2011 &#124; Titanium Development</title>
		<link>http://twoappguys.com/applications/mobile-lullaby/#comment-67</link>
		<dc:creator>This Week in Titanium Mobile: 27 June 2011 &#124; Titanium Development</dc:creator>
		<pubDate>Mon, 27 Jun 2011 17:15:02 +0000</pubDate>
		<guid isPermaLink="false">http://twoappguys.com/?p=639#comment-67</guid>
		<description>[...] out Mobile Lullaby if you&#8217;ve got a little one and need more time to [...]</description>
		<content:encoded><![CDATA[<p>[...] out Mobile Lullaby if you&#8217;ve got a little one and need more time to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on showContacts crashing using Titanium by Tony Virelli</title>
		<link>http://twoappguys.com/blog/showcontacts-crashing-using-titanium/#comment-40</link>
		<dc:creator>Tony Virelli</dc:creator>
		<pubDate>Fri, 17 Jun 2011 20:43:28 +0000</pubDate>
		<guid isPermaLink="false">http://twoappguys.com/?p=316#comment-40</guid>
		<description>Thanks for the fix @appcelerator!</description>
		<content:encoded><![CDATA[<p>Thanks for the fix @appcelerator!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Appcelerator View RSS Feed by Dinesh</title>
		<link>http://twoappguys.com/blog/appcelerator-view-rss-feed/#comment-28</link>
		<dc:creator>Dinesh</dc:creator>
		<pubDate>Sat, 28 May 2011 21:38:45 +0000</pubDate>
		<guid isPermaLink="false">http://twoappguys.com/?p=190#comment-28</guid>
		<description>This page is not showing full content in Chrome browser. Use Firefox</description>
		<content:encoded><![CDATA[<p>This page is not showing full content in Chrome browser. Use Firefox</p>
]]></content:encoded>
	</item>
</channel>
</rss>

