<?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>Mobiledevworld.com &#124; Mobile Developers Community &#187; code example</title>
	<atom:link href="http://mobiledevworld.com/tag/code-example/feed/" rel="self" type="application/rss+xml" />
	<link>http://mobiledevworld.com</link>
	<description>Mobile Developers and Professionlas Community</description>
	<lastBuildDate>Sun, 09 May 2010 18:20:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>innerActive mobile ads for Widgets</title>
		<link>http://mobiledevworld.com/2010/05/07/inneractive-mobile-ads-for-widgets/</link>
		<comments>http://mobiledevworld.com/2010/05/07/inneractive-mobile-ads-for-widgets/#comments</comments>
		<pubDate>Fri, 07 May 2010 06:37:29 +0000</pubDate>
		<dc:creator>Rafi Ton</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Code examples]]></category>
		<category><![CDATA[beginner guides]]></category>
		<category><![CDATA[code example]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[wrt]]></category>

		<guid isPermaLink="false">http://mobiledevworld.com/?p=709</guid>
		<description><![CDATA[




I&#8217;ve been developing widgets for mobile phones for quite a while now. One the most pressing issues I always face is how to make money from my widgets.
I tested many services that seemed to be promising only to be frustrated from the revenue they generate, the amount of control I had over the ad or [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been developing widgets for mobile phones for quite a while now. One the most pressing issues I always face is how to make money from my widgets.</p>
<p>I tested many services that seemed to be promising only to be frustrated from the revenue they generate, the amount of control I had over the ad or the complexity of integration (if at all available for widgest).</p>
<p>Finally I found a solution that I like, simple to integrate and offers me some control over the ad life cycle from innerActive. I moved all my mobile apps to innerActive and this solution works like a charm (and NO &#8211; I don&#8217;t work there).</p>
<h1><strong>Just follow these few simple steps and start making money from your app:</strong></h1>
<p>1. get an Application ID for you widget/app from innerActive (contact Aviv Fishler from innerActive: aviv@inner-active.com)</p>
<p>2. load jQuery in your all (I hear that they have a pure JS version coming soon) using something like:</p>
<pre class="brush: xml;">&lt;script src=&quot;jquery-1.3.2.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</pre>
<p>3. load the innerActive js file in your widget header from: http://cd1.inner-active.com/innerActive.js</p>
<pre class="brush: xml;">&lt;script src=&quot;http://cd1.inner-active.com/innerActive.js&quot;&gt;&lt;/script&gt;</pre>
<p>4. add a div for you ad in every place you want to put your add.</p>
<pre class="brush: xml;">&lt;div id=&quot;banner1&quot;&gt;Banner 1 - without text goes here&lt;/div&gt;</pre>
<p>please remember to name your divs. This way you can control the ad afterwards</p>
<p>5. set your application id as a global variable:</p>
<pre class="brush: jscript;">var innerActive_aid = 'your_app_id_goes_here';</pre>
<p>6. set your mode (test or real ads) in your js file:</p>
<pre class="brush: jscript;">var innerActive_test = 'true'; // or false to get production ads</pre>
<p>7. Load the ad in your div by using the following js code:</p>
<pre class="brush: jscript;">getSmallBannerAd(&quot;#banner1&quot;,&quot;&quot;);</pre>
<p>Calling this function with the div id reloads the ad. So if you want to load a new ad from your add on a certain event just call this function. This is very useful is I need to refresh an ad after it appears on the screen for too long.</p>
<p>See a full implementation below:</p>
<p>index.html</p>
<pre class="brush: xml;">

&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;
&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
 &lt;head&gt;
 &lt;title&gt;Sample Widget&lt;/title&gt;
 &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;
 &lt;script src=&quot;jquery-1.3.2.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 &lt;script src=&quot;http://cd1.inner-active.com/innerActive.js&quot;&gt;&lt;/script&gt;
 &lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;basic.js&quot;&gt;&lt;/script&gt;
 &lt;link rel=&quot;stylesheet&quot; href=&quot;basic.css&quot; type=&quot;text/css&quot;&gt;
 &lt;META NAME=&quot;Generator&quot; CONTENT=&quot;Nokia WRT plug-in for Aptana Studio 2.3.0&quot; /&gt;
 &lt;/head&gt;
 &lt;body onLoad=&quot;javascript:init();&quot;&gt;
 &lt;div id=&quot;banner1&quot;&gt;Banner 1 - without text goes here&lt;/div&gt;
 &lt;br/&gt;&lt;br/&gt;
 &lt;div id=&quot;banner2&quot;&gt;Banner 1 - without text goes here&lt;/div&gt;
 &lt;p&gt;Hello World&lt;/p&gt;
 &lt;/body&gt;
&lt;/html&gt;
</pre>
<p>basic.js</p>
<pre class="brush: jscript;">

/*
 * JavaScript file
 */

var innerActive_aid = 'CasualMobile_TicTacToe';
var innerActive_test = 'true';

function init()
{
 getSmallBannerAd(&quot;#banner1&quot;,&quot;&quot;);
 getSmallBannerAd(&quot;#banner2&quot;,&quot;showAdText&quot;);
}
</pre>
<p>Download these example widget:<br />
<a href="http://mowiwo.com/wp-content/plugins/download-monitor/download.php?id=1"> http://mowiwo.com/wp-content/plugins/download-monitor/download.php?id=1</a><br />
<a href="http://mowiwo.com/wp-content/plugins/download-monitor/download.php?id=2"> http://mowiwo.com/wp-content/plugins/download-monitor/download.php?id=2</a> </p>
<div class='wp_likes' id='wp_likes_post-709'>
<div  class='text'><b>1</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(709)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://mobiledevworld.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://mobiledevworld.com/2010/05/07/inneractive-mobile-ads-for-widgets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript games on Nokia WRT &#8211; Tic Tac Toe</title>
		<link>http://mobiledevworld.com/2009/08/27/javascript-games-on-nokia-wrt-tic-tac-toe/</link>
		<comments>http://mobiledevworld.com/2009/08/27/javascript-games-on-nokia-wrt-tic-tac-toe/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 12:19:11 +0000</pubDate>
		<dc:creator>Rafi Ton</dc:creator>
				<category><![CDATA[Code examples]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[5800]]></category>
		<category><![CDATA[code example]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[n97]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[wrt]]></category>

		<guid isPermaLink="false">http://mobiledevworld.com/?p=406</guid>
		<description><![CDATA[
I started a new initiative to adapt simple Javascript games to Nokia WRT enabled phones. I focus on WRT 1.1 touch devices (currently Nokia N97 and 5800).
The first game I implemented is a classic Tic Tac Toe game where you can play against the phone. My friend Alex Rutgaizer designed the board.
After I have gathered [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-408 alignleft" style="margin-right:10px" src="http://mobiledevworld.com/files/2009/08/Picture-231-168x300.png" alt="Picture 23" width="168" height="300" /></p>
<p>I started a new initiative to adapt simple Javascript games to Nokia WRT enabled phones. I focus on WRT 1.1 touch devices (currently Nokia N97 and 5800).</p>
<p>The first game I implemented is a classic Tic Tac Toe game where you can play against the phone. My friend Alex Rutgaizer designed the board.</p>
<p>After I have gathered some  more insight, I promise to post my findings, best practices and suggestions in a separated post.</p>
<p>You can download the game and install it to any Nokia N97 and Nokia 5800 phone. Just copy the link to the file in your phone then download and install the wgt file.</p>
<p>Download link: <a href="http://mobiledevworld.com/files/2009/08/tic-tac-toe.wgz">http://mobiledevworld.com/files/2009/08/tic-tac-toe.wgz</a></p>
<p>The code is absolutely free to modify, play, rewrite etc.</p>
<p>If you have ideas for more games leave me a message. </p>
<div class='wp_likes' id='wp_likes_post-406'>
<div  class='text'><b>7</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(406)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://mobiledevworld.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://mobiledevworld.com/2009/08/27/javascript-games-on-nokia-wrt-tic-tac-toe/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nokia WRT &#8211; Simple Tabs with jQuery UI</title>
		<link>http://mobiledevworld.com/2009/07/24/nokia-wrt-simple-tabs-with-jquery-ui/</link>
		<comments>http://mobiledevworld.com/2009/07/24/nokia-wrt-simple-tabs-with-jquery-ui/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 10:55:42 +0000</pubDate>
		<dc:creator>Rafi Ton</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Code examples]]></category>
		<category><![CDATA[code example]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[jquery-ui]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[wrt]]></category>

		<guid isPermaLink="false">http://mobiledevworld.com/?p=160</guid>
		<description><![CDATA[Many times we see fancy tab being used to display different content in mobile apps. Since WRT 1.1 supports jQuery, we can use the jQuery UI extension to add nice UI components to our Nokia Runtime widget. Adding tabs is a really (really &#8211; trust me) simple task.
Downloading the jQuery UI extension

Go to http://jqueryui.com/download to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left">Many times we see fancy tab being used to display different content in mobile apps. Since WRT 1.1 supports jQuery, we can use the jQuery UI extension to add nice UI components to our Nokia Runtime widget. Adding tabs is a really (really &#8211; trust me) simple task.</p>
<h2 style="text-align: left"><strong>Downloading the jQuery UI extension</strong></h2>
<ol style="text-align: left">
<li>Go to <a href="http://jqueryui.com/download" target="_blank">http://jqueryui.com/download</a> to download the jquery-ui extension</li>
<li>Highly Recommended: unselect all the components that you do not need for your project. Since jQuery and jQuery UI are fairly large select only the components that you need. For this example, we only need the core components and the Tabs widget, so un-check all the rest and click on download. This will download a package called jquery-ui-x.x.x.custom.zip.</li>
<li>Unzip the package into your project directory. Please note that the package includes also the jQuery distribution also so make sure that you don&#8217;t have it twice if you downloaded jQuery earlier.</li>
</ol>
<p style="text-align: left">Next, we need to reference jQuery and jQuery UI in our project by adding references to jquery-ui javascript and css in the html header:</p>
<pre class="brush: xml;">&lt;head&gt;
...
&lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery-1.3.2.min.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery-ui-1.7.2.custom.min.js&quot;&gt;&lt;/script&gt;
&lt;link type=&quot;text/css&quot; href=&quot;css/smoothness/jquery-ui-1.7.2.custom.css&quot; rel=&quot;stylesheet&quot; /&gt;
...
&lt;/head&gt;</pre>
<p><strong>Creating the Tabs</strong><br />
Next, we need to create a container for our tabs and tabs content:</p>
<pre class="brush: xml;">&lt;div id=&quot;tabs&quot;&gt;
  &lt;ul&gt;
    &lt;li&gt;&lt;a href=&quot;#tabs-1&quot;&gt;Text&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#tabs-2&quot;&gt;Pics&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#tabs-3&quot;&gt;Vids&lt;/a&gt;&lt;/li&gt;
  &lt;/ul&gt;
  &lt;div id=&quot;tabs-1&quot;&gt;Lorem ipsum viris commune suavitate ne eum, harum nominati ut pri. Congue altera sensibus quo ei, et qui aliquyam democritum eloquentiam, tale quodsi rationibus duo te. Eam munere regione prompta et, eos partem quidam vulputate ea&lt;/div&gt;
  &lt;div id=&quot;tabs-2&quot;&gt;
    &lt;img src=&quot;images/jaguar-xfr.jpg&quot; /&gt;
  &lt;/div&gt;
  &lt;div id=&quot;tabs-3&quot;&gt;
    &lt;h3&gt;Top Box Office Trailers&lt;/h3&gt;
    &lt;ol&gt;
      &lt;li&gt;Harry Potter and the Half-Blood Prince&lt;/li&gt;
      &lt;li&gt;Ice Age: Dawn of the Dinosaurs&lt;/li&gt;
      &lt;li&gt;Transformers: Revenge of the Fallen&lt;/li&gt;
      &lt;li&gt;Bruno&lt;/li&gt;
      &lt;li&gt;The Proposal&lt;/li&gt;
    &lt;/ol&gt;
  &lt;/div&gt;
&lt;/div&gt;</pre>
<p>There are two main parts to this div:</p>
<ul>
<li>An unordered list with the tab names</li>
<li>corresponding divs which hold the content which will be displayed when you press the tabs</li>
</ul>
<p><strong>Converting into Tabs</strong><br />
As final step we need to convert the container div into tabs by referencing it to the jQuery tabs widget. Since I want to create the tabs immediately when I launch the widget I will add the reference in the init() function which is executed when the body element is loaded:</p>
<pre class="brush: jscript;">
function init() {
  $(function() {
    $(&quot;#tabs&quot;).tabs();
  });
}
</pre>
<div id="attachment_173" class="wp-caption alignright" style="width: 213px"><img class="size-medium wp-image-173" src="http://mobiledevworld.com/files/2009/07/Picture-21-203x300.png" alt="jquery ui tabs in Nokia WRT" width="203" height="300" /><p class="wp-caption-text">jquery ui tabs in Nokia WRT</p></div>
<p>That&#8217;s basically it &#8211; it doesn&#8217;t get any simpler. The result is great looking tabs as in the simplest way possible.<br />
You can download a fully working widget with the example above: <a href="http://mobiledevworld.com/files/2009/07/tabNavigation.wgz">tabNavidation.wgz</a>.<br />
  </p>
<div class='wp_likes' id='wp_likes_post-160'>
<div  class='text'><b>4</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(160)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://mobiledevworld.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://mobiledevworld.com/2009/07/24/nokia-wrt-simple-tabs-with-jquery-ui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saving data to the phones persistent memory &#8211; Nokia WRT Example</title>
		<link>http://mobiledevworld.com/2009/07/22/saving-data-to-the-phones-persistent-memory-nokia-wrt-example/</link>
		<comments>http://mobiledevworld.com/2009/07/22/saving-data-to-the-phones-persistent-memory-nokia-wrt-example/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 13:43:58 +0000</pubDate>
		<dc:creator>Rafi Ton</dc:creator>
				<category><![CDATA[Code examples]]></category>
		<category><![CDATA[code example]]></category>
		<category><![CDATA[cookie]]></category>
		<category><![CDATA[pseudo cookie]]></category>
		<category><![CDATA[web runtime]]></category>
		<category><![CDATA[wrt]]></category>

		<guid isPermaLink="false">http://mobiledevworld.com/?p=118</guid>
		<description><![CDATA[In many cases one needs to authenticate user. When developing web applications, one would use cookies to do that. However, Nokia Web Runtime (WRT) does not fully support cookies so you can&#8217;t use them. Alternatively, Nokia WRT has two widget methods that store data in the phone&#8217;s persistent memory which can be used to simulate [...]]]></description>
			<content:encoded><![CDATA[<p>In many cases one needs to authenticate user. When developing web applications, one would use cookies to do that. However, Nokia Web Runtime (WRT) does not fully support cookies so you can&#8217;t use them. Alternatively, Nokia WRT has two widget methods that store data in the phone&#8217;s persistent memory which can be used to simulate cookies:</p>
<p><span style="font: normal normal normal 12px/normal Monaco;margin: 0px;color: #0000ff">setPreferenceForKey()</span> which stores data on the phones persistent memory, and</p>
<p><span style="font: normal normal normal 12px/normal Monaco;margin: 0px;color: #0000ff">preferenceForKey()</span> which retrieves that data from the storage.</p>
<p style="font: normal normal normal 12px/normal Monaco;margin: 0px">
<p>The setPreferenceForKey method allows a key to be stored along with its associated preference. The arguments are like name and value pairs. The preference value for the key is stored persistently, so if the widget or device is restarted, the value is retained. However, the values stored by a widget are removed when a widget is uninstalled from the device. This includes the case when a widget is reinstalled; where the old widget is uninstalled, the new widget is installed.</p>
<p>In this example I will demonstrate how to use these functions to create a pseudo cookie.</p>
<p>index.html:</p>
<pre class="brush: xml;">
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;
&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
&lt;head&gt;
&lt;title&gt;Pseudo Cookie Code Example&lt;/title&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;
&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;basic.js&quot;&gt;&lt;/script&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;basic.css&quot; type=&quot;text/css&quot;&gt;
&lt;META NAME=&quot;Generator&quot; CONTENT=&quot;Nokia WRT plug-in for Aptana Studio 2.0.0&quot; /&gt;
&lt;/head&gt;
&lt;body onLoad=&quot;javascript:init();&quot;&gt;
&lt;div id=&quot;setCookie&quot; class=&quot;bigText&quot;&gt;&lt;a href=&quot;#&quot; onclick=&quot;pseudoCookieSet('this is a test string for the psudoCookie', 'testCookie', 30)&quot;&gt;Set Cookie (will expire after 30secs)&lt;/a&gt;&lt;/div&gt;
&lt;div id=&quot;getCookie&quot; class=&quot;bigText&quot;&gt;&lt;a href=&quot;#&quot; onclick=&quot;printCookie('testCookie')&quot;&gt;Get Cookie&lt;/a&gt;&lt;/div&gt;
&lt;div id=&quot;txt&quot; class=&quot;bigText&quot;&gt;PseudoCookie Text will show here.&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The html code above, basically generates 2 links and a div where I can print the data from the pseudo cookie:</p>
<div id="attachment_126" class="wp-caption alignnone" style="width: 335px"><img class="size-full wp-image-126" src="http://mobiledevworld.com/files/2009/07/Picture-17.png" alt="Pseudo Cookie index.html screen shot" width="325" height="524" /><p class="wp-caption-text">Pseudo Cookie index.html screen shot</p></div>
<p>basic.js:</p>
<pre class="brush: jscript;">
function pseudoCookieSet (cookieContent, cookieName, duration) {
var cookieStart = Math.round(new Date().getTime() / 1000);
var cookieEnd = cookieStart + parseInt(duration);
var cookieString = cookieContent + '|+|' + cookieEnd;
widget.setPreferenceForKey(cookieString, cookieName);
}

function pseudoCookieGet (cookieName) {
var returnText = '';
var cookieString = widget.preferenceForKey(cookieName);
var cookieElements = cookieString.split(&quot;|+|&quot;);
var cookieEnd = parseInt(cookieElements[1]);
var timeNow = Math.round(new Date().getTime() / 1000);

if (timeNow &gt; cookieEnd) {
returnText = 'cookie expired';
} else if (cookieString != null) {
returnText = cookieElements[0];
} else {
returnText = 'cookie is empty or not set';
}

return returnText;
}

function printCookie(cookieName) {
var cookieText = pseudoCookieGet(cookieName);
document.getElementById(&quot;txt&quot;).innerHTML = cookieText;
}
</pre>
<p>The function pseudoCookieSet (cookieContent, cookieName, duration) sets the pseudo cookie and receives 3 parameters:</p>
<ol>
<li>cookieContent &#8211; the data you would like to store in the pseudo cookie;</li>
<li>cookieName &#8211; the name of the pseudo cookie (obviously); and</li>
<li>duration &#8211; how long would you like the pseudo cookie to exist before it is expired (seconds)</li>
</ol>
<p>The function pseudoCookieGet (cookieName) &#8211; returns the following values:</p>
<ol>
<li>The data you stored in the pseudo cookie if all is valid;</li>
<li>&#8216;expired&#8217; if you tried to call the cookie after the cookie was expired;</li>
<li>An error &#8216;cookie is empty or not set&#8217; &#8211; if the cookie is empty or not set.</li>
</ol>
<p>you can use delimiters but don&#8217;t use the following sequence &#8216;|+|&#8217; since the function uses it to separate between the stored data and other administrative data. You can also download a fully working widget that demonstrates the above code: <a href="http://mobiledevworld.com/files/2009/07/pseudoCookie.wgz">pseudoCookie.wgz</a> </p>
<div class='wp_likes' id='wp_likes_post-118'>
<div  class='text'><b>7</b> people like this post.</div>
<div><a href=' javascript:wp_likes.like(118)' class='like' title='like this post'>Like</a>&nbsp;<img class='loader' src='http://mobiledevworld.com/wp-content/plugins/wp-likes/images/spinner.gif' alt=''/></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://mobiledevworld.com/2009/07/22/saving-data-to-the-phones-persistent-memory-nokia-wrt-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
