Re: New release of Python2.5 for Maemo (r0.4-11)

2007-06-28 Thread Jason Monroe Martin
I am glad to see all the discussion on Python. Sometimes it not the average user thats makes or breaks a product but businesses. Python fills the place on the device like VB did for Windows. I have worked in factories and mills all my life and when you can produce something in 5 minutes and han

Re: New release of Python2.5 for Maemo (r0.4-11)

2007-06-28 Thread Jason Monroe Martin
There are a lot of good C developers on this list that know the C APIs and they helped me a great deal. I hope Nokia realizes Python is what makes the device for the average user, especially in a business enviroment where you need something developed quickly. I would have never bought the first

Second WSOD and making sure wireless connects at startup.

2007-03-26 Thread Jason Monroe Martin
#!/usr/bin/env python2.5 ''' Save all lines to /usr/bin/pynetup, make it executable and do what is in the following comments. This is my second WSOD and I was in a jam. Although I have a discount code for the N800, I do not have the spare money to order it or repair the N770. To make this

How do I activate finger keyboard in python?

2007-03-14 Thread Jason Monroe Martin
I am porting something that uses pygame and I need to call the keyboard. Are there docs somewhere. ___ maemo-developers mailing list maemo-developers@maemo.org https://maemo.org/mailman/listinfo/maemo-developers

[maemo-developers] A package some of you might want.

2007-02-06 Thread Jason Monroe Martin
It allows you to connect to postgresql with python2.5. I probably will not add it to the Application Catalog. http://my.opera.com/monroe/blog/maemo-postgresql ___ maemo-developers mailing list maemo-developers@maemo.org https://maemo.org/mailman/listi

[maemo-developers] python + osso_browser + non-blocking

2006-12-12 Thread Jason Monroe Martin
import osso def my_call_back(*args): print args # 'req' = my app name ?? appcxt=osso.Context('req', '1.0', False) appcxt.rpc_async_run_with_defaults('osso_browser', 'load_url', my_call_back, user_data=None, rpc_args=(('http://www.yahoo.com', ))) # or this #appcxt.rpc_async_run('com.no

[maemo-developers] python + osso_browser does work.

2006-12-11 Thread Jason Monroe Martin
Bugzilla bug 905 closed. I had upgraded some packages in the red pill mode and it broke some stuff. The following code works in maemo 2.1 import dbus bus = dbus.SessionBus() proxy_obj = bus.get_object('com.nokia.osso_browser', '/com/nokia/osso_browser') dbus_iface = dbus.Interface(proxy_

[maemo-developers] One osso_browser python solution

2006-12-09 Thread Jason Monroe Martin
I settled with following the pine-url.sh example. I would still like to do it with the dbus bindings though. import commands url='http://www.google.com' result=commands.getoutput('dbus-send --print-reply --dest=com.nokia.osso_browser /usr/bin/browser com.nokia.osso_browser.load_url string:%s

[maemo-developers] pYsearch 2.0 package for IT 2006

2006-12-07 Thread Jason Monroe Martin
Python API's for Yahoo search. Some of the developers might could to use it. You can download it at : http://my.opera.com/monroe/blog/ ___ maemo-developers mailing list maemo-developers@maemo.org https://maemo.org/mailman/listinfo/maemo-developers

[maemo-developers] osso_browser python question

2006-12-07 Thread Jason Monroe Martin
This code works but causes : Exception urllib2.URLError: in 'dbus_bindings._GIL_safe_pending_call_notification' ignored Where can I find documentation on load_url or is there a python way to get info on 'com.nokia.osso_browser'? import dbus bus = dbus.SessionBus() proxy_obj = bus.get_o