Re: [maemo-users] Re: [maemo-developers] Future features for Maemo Desktop (Task Navigator, Home, Status bar)?

2006-08-20 Thread Igor Stoppa
On Fri, 2006-08-18 at 21:41 +0300, ext Marius Gedminas wrote:
 On Fri, Aug 18, 2006 at 08:15:12PM +0300, Igor Stoppa wrote:
  On Fri, 2006-08-18 at 18:09 +0100, ext Peter Robinson wrote:
  snip
   - Expanded power management. This is more kernel than actual UI but
   some of the things that I've seen around for projects like OLPC where
   if the sound driver isn't used for a couple of seconds its shut down
   etc. Things like the USB port, in the general scheme of things, aren't
   used very often so could (not sure if they are all ready) be shut down
   most of the time to save battery (saw a blog entry somewhere where
   someone played with the shutdown of usb when not in use and saved a
   couple of watts).
  Done already, check the power management and drivers code. Next?
 
 Cool!
 
 By the way, I remember hearing somewhere that in OS2005 if you had the
 audio player open and paused, the device would not enter into a full
 power savings mode and would drain the battery faster.  Is this fixed in
 OS2006?
We already had a timeout workaround in place, which worked in most of
the cases, but it is fixed properly in OS2006.
-- 
Cheers,
   Igor

Igor Stoppa (Nokia M - OSSO / Tampere)
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


[maemo-users] Weird menu when customing themes

2006-08-20 Thread David Lapetina
Hi,
I'm writing a Startrek theme for the Nokia 770.
I've customed many images and they display great but unfortunately the
menus are acting weird. At first they display correctly, slowly but
correctly, then they become scrambled.
You can fin an image there : http://test.lapetina.org/00048-800x600.jpg

Any help would be great. I'm stuck.

___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


[maemo-users] Best place to post tips

2006-08-20 Thread David McCan
I got my 770 a few days ago and spent a good deal of time searching the web for 
answers and with trial and error.  I have figured out several things that would 
be useful to others.  Where is the best central place to post this information? 
 I don't want to create yet another website with a few tips.

Thanks,

David


___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: Re: [maemo-users] Best place to post tips

2006-08-20 Thread David McCan
Thanks for the reply.  Isn't that wiki geared for developers?


-Original Message-
From: David D. Hagood [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Date: Sun, 20 Aug 2006 17:24:46 -0500
Subject: Re: [maemo-users] Best place to post tips

David McCan wrote:
 I got my 770 a few days ago and spent a good deal of time searching the web 
 for answers and with trial and error.  I have figured out several things that 
 would be useful to others.  Where is the best central place to post this 
 information?  I don't want to create yet another website with a few tips.

 Thanks,

 David


The best place would be on the Maemo Wiki page - http://maemo.org/maemowiki/




___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Best place to post tips

2006-08-20 Thread David D. Hagood

David McCan wrote:
Thanks for the reply.  Isn't that wiki geared for developers?  





There is a howto and a tips section - and as far as I can see, the whole 
reason for this to be a wiki is so that we all can contribute.


I have no official relationship with maemo.org other than being an owner 
of a Nokia 770, so I could be wrong.

___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


[maemo-users] Howto reintroduce Python termios

2006-08-20 Thread Michael Duergner
Hi there,

I need Pyserial support on the Nokia 770 and I read that this could be done by 
reintroducing the termios module which has been removed. Could anyone give me a 
hint how to do this?

Thanks
Michael

___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users


Re: [maemo-users] Howto reintroduce Python termios

2006-08-20 Thread Osvaldo Santana

Hi Michael,

We've removed termios.so file from Python for Maemo package to save
disk space on Nokia 770.

To add back this file to the package you want to recompile the package
from the source (changing the debian/rules file):

$ apt-get source python2.4
$ cd python*/debian
$ patch -p0  add_termios.patch
$ cd ..
$ dpkg-buildpackage -rfakeroot
$ ls ../*.deb # new packages!

After that, you can copy the termios.so file to your application
directory to make the deploy of your software.

BTW, are you planning to use PySerial inside Nokia 770? :)

Thanks,
Osvaldo

---8--

--- rules.orig  2006-08-21 02:07:52.0 -0300
+++ rules   2006-08-21 02:08:02.0 -0300
@@ -128,8 +128,7 @@
   $(d_base)/$(scriptdir)/lib-dynload/mmap.so \
   $(d_base)/$(scriptdir)/lib-dynload/readline.so \
   $(d_base)/$(scriptdir)/lib-dynload/ossaudiodev.so \
-   $(d_base)/$(scriptdir)/lib-dynload/syslog.so \
-   $(d_base)/$(scriptdir)/lib-dynload/termios.so
+   $(d_base)/$(scriptdir)/lib-dynload/syslog.so

   mkdir -p $(d_dev)/$(scriptdir)
   cp -a $(d_base)/$(scriptdir)/* $(d_dev)/$(scriptdir)

On 8/20/06, Michael Duergner [EMAIL PROTECTED] wrote:

Hi there,

I need Pyserial support on the Nokia 770 and I read that this could be done by 
reintroducing the termios module which has been removed. Could anyone give me a 
hint how to do this?

Thanks
Michael


--
Osvaldo Santana Neto (aCiDBaSe)
icq, url = (11287184, http://www.pythonbrasil.com.br;)
___
maemo-users mailing list
maemo-users@maemo.org
https://maemo.org/mailman/listinfo/maemo-users