<?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: Python for Series 60 pre-alpha release on Forum Nokia</title>
	<atom:link href="http://www.eriksmartt.com/blog/archives/124/feed" rel="self" type="application/rss+xml" />
	<link>http://www.eriksmartt.com/blog/archives/124</link>
	<description>my little chunk of bandwidth</description>
	<lastBuildDate>Sat, 06 Mar 2010 19:36:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0-alpha</generator>
	<item>
		<title>By: rishi</title>
		<link>http://www.eriksmartt.com/blog/archives/124#comment-97</link>
		<dc:creator>rishi</dc:creator>
		<pubDate>Fri, 23 Sep 2005 12:33:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.eriksmartt.com/blog/?p=124#comment-97</guid>
		<description>Is it possible to call appuifw functions such as note etc from an embedded CSPyInterpreter object. I am trying the following but it does not work:
CSPyInterpreter* py = CSPyInterpreter::NewInterpreterL();
CleanupStack::PushL(py);
TBuf8 outputBuffer = _L8(&quot;c:\\system\\apps\\python\\filebrowser.py&quot;);
char *argv[1];
int argc;
argv[0] = (char*)outputBuffer.PtrZ();
argc = 1;
py-&gt;RunScript(argc, argv);
//py-&gt;iStdO = &amp;PythonOutput;
CleanupStack::PopAndDestroy(); //CAppConfig, test2

I also tried putting the above code in an app. That did not work either. How do I launch UI based scripts within a controlled environment (where I can set variables etc....)

if any one has any clue pls mail me at rishi dot israni at gmail dot com.</description>
		<content:encoded><![CDATA[<p>Is it possible to call appuifw functions such as note etc from an embedded CSPyInterpreter object. I am trying the following but it does not work:<br />
CSPyInterpreter* py = CSPyInterpreter::NewInterpreterL();<br />
CleanupStack::PushL(py);<br />
TBuf8 outputBuffer = _L8(&#8220;c:\\system\\apps\\python\\filebrowser.py&#8221;);<br />
char *argv[1];<br />
int argc;<br />
argv[0] = (char*)outputBuffer.PtrZ();<br />
argc = 1;<br />
py-&gt;RunScript(argc, argv);<br />
//py-&gt;iStdO = &#038;PythonOutput;<br />
CleanupStack::PopAndDestroy(); //CAppConfig, test2</p>
<p>I also tried putting the above code in an app. That did not work either. How do I launch UI based scripts within a controlled environment (where I can set variables etc&#8230;.)</p>
<p>if any one has any clue pls mail me at rishi dot israni at gmail dot com.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: erik</title>
		<link>http://www.eriksmartt.com/blog/archives/124#comment-27</link>
		<dc:creator>erik</dc:creator>
		<pubDate>Wed, 08 Jun 2005 15:25:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.eriksmartt.com/blog/?p=124#comment-27</guid>
		<description>Hmm.. not good.  Thanks for letting me know Sandeep!

[update]
I looked into this, and you&#039;re right.  The link to download the phone installer is pointing at the wrong file (you&#039;re actually getting the 1st Edition installer instead of the 2nd Edition one -- and the camera module doesn&#039;t work on 1st Edition.)  The download link should be fixed by tomorrow.  Thanks again!</description>
		<content:encoded><![CDATA[<p>Hmm.. not good.  Thanks for letting me know Sandeep!</p>
<p>[update]<br />
I looked into this, and you&#8217;re right.  The link to download the phone installer is pointing at the wrong file (you&#8217;re actually getting the 1st Edition installer instead of the 2nd Edition one &#8212; and the camera module doesn&#8217;t work on 1st Edition.)  The download link should be fixed by tomorrow.  Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sandeep</title>
		<link>http://www.eriksmartt.com/blog/archives/124#comment-26</link>
		<dc:creator>Sandeep</dc:creator>
		<pubDate>Tue, 07 Jun 2005 22:21:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.eriksmartt.com/blog/?p=124#comment-26</guid>
		<description>Hi Erik,

PreAlpha_Phone_2ndEd_Python_v1.1.0.SIS (available on the website) for 2nd Ed devices does not contain the camera module! Instead, users have to install the PythonForSeries60.SIS in PreAlpha_SDK_2ndEd_Python_v1.1.0.zip to get it working.

Cheers,
Sandeep</description>
		<content:encoded><![CDATA[<p>Hi Erik,</p>
<p>PreAlpha_Phone_2ndEd_Python_v1.1.0.SIS (available on the website) for 2nd Ed devices does not contain the camera module! Instead, users have to install the PythonForSeries60.SIS in PreAlpha_SDK_2ndEd_Python_v1.1.0.zip to get it working.</p>
<p>Cheers,<br />
Sandeep</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: erik</title>
		<link>http://www.eriksmartt.com/blog/archives/124#comment-25</link>
		<dc:creator>erik</dc:creator>
		<pubDate>Tue, 07 Jun 2005 16:59:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.eriksmartt.com/blog/?p=124#comment-25</guid>
		<description>Sending SMS, yes.  Reading the inbox and deleting messages, no.  There are Symbian C++ API&#039;s for this, so it&#039;s possible to write a Python extension to do it, but the Nokia release doesn&#039;t have it yet.  I have read some posts on the discussion boards about manually scanning the inbox directory structure for messages using Python code.  Not ideal, but it works.</description>
		<content:encoded><![CDATA[<p>Sending SMS, yes.  Reading the inbox and deleting messages, no.  There are Symbian C++ API&#8217;s for this, so it&#8217;s possible to write a Python extension to do it, but the Nokia release doesn&#8217;t have it yet.  I have read some posts on the discussion boards about manually scanning the inbox directory structure for messages using Python code.  Not ideal, but it works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: armadda</title>
		<link>http://www.eriksmartt.com/blog/archives/124#comment-23</link>
		<dc:creator>armadda</dc:creator>
		<pubDate>Tue, 07 Jun 2005 07:04:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.eriksmartt.com/blog/?p=124#comment-23</guid>
		<description>is there API for messaging, such reading inbox, delete message, etc</description>
		<content:encoded><![CDATA[<p>is there API for messaging, such reading inbox, delete message, etc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: erik</title>
		<link>http://www.eriksmartt.com/blog/archives/124#comment-22</link>
		<dc:creator>erik</dc:creator>
		<pubDate>Mon, 06 Jun 2005 16:45:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.eriksmartt.com/blog/?p=124#comment-22</guid>
		<description>Drawing images to the canvas should be in 1.1.2.  For 1.1.0 the canvas only supports drawing primitives.

There is nothing specific in the release for source- or byte-code protection, nor am I aware of a reliable, pure-Python solution for this.  However, this may end up being solved by the Platform instead of Python.  The Forum Nokia document &quot;Series 60 Platform 3rd Edition: What&#039;s New for Developers&quot; has a section on &quot;data caging&quot; that might be of interest.  Of course, 3rd Edition isn&#039;t available yet.</description>
		<content:encoded><![CDATA[<p>Drawing images to the canvas should be in 1.1.2.  For 1.1.0 the canvas only supports drawing primitives.</p>
<p>There is nothing specific in the release for source- or byte-code protection, nor am I aware of a reliable, pure-Python solution for this.  However, this may end up being solved by the Platform instead of Python.  The Forum Nokia document &#8220;Series 60 Platform 3rd Edition: What&#8217;s New for Developers&#8221; has a section on &#8220;data caging&#8221; that might be of interest.  Of course, 3rd Edition isn&#8217;t available yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dega1999</title>
		<link>http://www.eriksmartt.com/blog/archives/124#comment-21</link>
		<dc:creator>dega1999</dc:creator>
		<pubDate>Sun, 05 Jun 2005 20:57:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.eriksmartt.com/blog/?p=124#comment-21</guid>
		<description>Finally!Very cool!
I don&#039;t have so much time to play with the pre-alpha but I will do very soon!
It&#039;s very interesting.
Do you know if it is possible to drawImage on the canvas?
will it be possible to create a kind of (sourcecode) protection for the python apps?
thanks!</description>
		<content:encoded><![CDATA[<p>Finally!Very cool!<br />
I don&#8217;t have so much time to play with the pre-alpha but I will do very soon!<br />
It&#8217;s very interesting.<br />
Do you know if it is possible to drawImage on the canvas?<br />
will it be possible to create a kind of (sourcecode) protection for the python apps?<br />
thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: erik</title>
		<link>http://www.eriksmartt.com/blog/archives/124#comment-20</link>
		<dc:creator>erik</dc:creator>
		<pubDate>Sun, 05 Jun 2005 01:01:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.eriksmartt.com/blog/?p=124#comment-20</guid>
		<description>The discussion boards are correct.  We&#039;re up to 1.1.2 internally, which includes the Calendar API.  If all goes as planned, 1.1.2 will be on Forum Nokia within a week or two.

So why is the Calendar API missing from 1.1.0?  The short answer is that 1.1.0 is actually a little bit old.  No reason to bother with the details, but we were a little delayed getting 1.1.0 out the door.  1.1.2 will be a better reflection of where the project is at.  (We&#039;ll skip 1.1.1 since 1.1.2 is just about ready.)  By the new naming convention, 1.1.2 will also be a pre-alpha (or preview) release.

Glad you&#039;re enjoying the release!  There&#039;s tons of new stuff in there.</description>
		<content:encoded><![CDATA[<p>The discussion boards are correct.  We&#8217;re up to 1.1.2 internally, which includes the Calendar API.  If all goes as planned, 1.1.2 will be on Forum Nokia within a week or two.</p>
<p>So why is the Calendar API missing from 1.1.0?  The short answer is that 1.1.0 is actually a little bit old.  No reason to bother with the details, but we were a little delayed getting 1.1.0 out the door.  1.1.2 will be a better reflection of where the project is at.  (We&#8217;ll skip 1.1.1 since 1.1.2 is just about ready.)  By the new naming convention, 1.1.2 will also be a pre-alpha (or preview) release.</p>
<p>Glad you&#8217;re enjoying the release!  There&#8217;s tons of new stuff in there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Korakot</title>
		<link>http://www.eriksmartt.com/blog/archives/124#comment-19</link>
		<dc:creator>Korakot</dc:creator>
		<pubDate>Sat, 04 Jun 2005 06:00:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.eriksmartt.com/blog/?p=124#comment-19</guid>
		<description>I read in the discussion forum about 1.1.2 version.
Will 1.1.2 be released first, then 1.2?

I can&#039;t find calendar API in 1.1.0. Why is it missing?
Overall, a great release. Thanks!</description>
		<content:encoded><![CDATA[<p>I read in the discussion forum about 1.1.2 version.<br />
Will 1.1.2 be released first, then 1.2?</p>
<p>I can&#8217;t find calendar API in 1.1.0. Why is it missing?<br />
Overall, a great release. Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
