Re: Does anyone see this?

2009-12-14 Thread Cornelius Hald
Hi,

seeing you on maemo-developers :)

Cheers!
Conny


On Mon, 2009-12-14 at 00:28 -0500, Demetris wrote:
 Can someone please confirm that they can see this email? There have
 been some issues with post seeing my own postings (even though in the
 subscriber page the appropriate option is checked off as Yes) and also
 anyone seeing my emails on any of the  two lists.
 
 Thanks
 
 ___
 maemo-developers mailing list
 maemo-developers@maemo.org
 https://lists.maemo.org/mailman/listinfo/maemo-developers


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


Re: Does anyone see this?

2009-12-14 Thread Andrew Flegg
On Mon, Dec 14, 2009 at 05:28, Demetris demet...@ece.neu.edu wrote:

 Can someone please confirm that they can see this email? There have
 been some issues with post seeing my own postings (even though in the
 subscriber page the appropriate option is checked off as Yes) and also
 anyone seeing my emails on any of the  two lists.

For future reference, if you're unsure if your message was received by
the list, the easiest thing to check is the archives:

http://lists.maemo.org/pipermail/maemo-developers/2009-December/022976.html
http://lists.maemo.org/pipermail/maemo-users/2009-December/014888.html

HTH,

Andrew

-- 
Andrew Flegg -- mailto:and...@bleb.org  |  http://www.bleb.org/
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Virtual Keyboard Sources

2009-12-14 Thread Joaquim Rocha
Hi Sergey,

Have you restarted SB after applying the plugin's name to
/apps/osso/inputmethod/default-plugins/finger ?

--
Joaquim Rocha

Sergey Vlasov wrote:
 On Wed, Dec 9, 2009 at 12:37 PM, Andre Klapper aklap...@openismus.comwrote:
 
 At least with regard to tarballs, hildon-input-method and
 hildon-input-method-framework are available here:
 http://repository.maemo.org/pool/maemo5.0/free/h/
  https://lists.maemo.org/mailman/listinfo/maemo-developers

 
 On Wed, Dec 9, 2009 at 12:46 PM, Faheem Pervez tripp...@gmail.com wrote:
 
 The code for the virtual keyboards shipped with the N900 are
 closed-source, but you may find
 https://bugs.maemo.org/show_bug.cgi?id=4178 interesting.

 
 
 Thanks for the links. I've started to play with
 http://live.gnome.org/Hildon/HildonInputMethod, built it, installed and
 GConf`ed, but it doesn't show up, I mean it does but looks just like
 original keyboard and not anything like from the attachment there
 https://bugs.maemo.org/show_bug.cgi?id=4178#c17. Basically I open the web
 browser and click to the input filed to bring up the keyboard (Scratchbox +
 Xephyr).
 
   run-standalone.sh gconftool-2 -R /apps/osso/inputmethod
  display_after_entering = 1
  have-internal-keyboard = true
  available_languages =
 [sv_SE,pl_PL,en_GB,it_IT,ru_RU,es_ES,en_US,no_NO,de_DE,es_MX,da_DK,fi_FI,nl_NL,pt_PT,fr_CA,el_GR,cs_CZ,fr_FR]
  int_kb_layout = us
  ext_kb_repeat_interval = 50
  start_recognize_after = 2
  dual-dictionary = false
  handwriting_timeout = 400
  space_after = false
  int_kb_model = nokiarx44
  int_kb_repeat_interval = 50
  ext_kb_layout = us
  int_kb_level_shifted = true
  ext_kb_model = nokiasu8w
  ext_kb_repeat_delay = 600
  completion_area_pos = false
  hwr_punct_mode = false
  auto_correction = true
  slide-layout = English, Dutch
  use_finger_kb = true
  input_method_plugin = hildon_keyboard_assistant
  int_kb_repeat_delay = 600
  case_correction = true
  /apps/osso/inputmethod/default-plugins:
   finger = hildon_im_example_fkb
   hw-keyboard = hildon_keyboard_assistant
   stylus = hildon_im_example_fkb
  /apps/osso/inputmethod/hildon-im-languages:
   current = 1
   language-0 = fi_FI
   language-1 = ru_RU
   list = []
   ...
 
 I also tried with hildon_im_onehand_fkb value and altered
 input_method_plugin, no luck. Any adeas?
 
 --
 Sergey
 
 
 
 
 
 ___
 maemo-developers mailing list
 maemo-developers@maemo.org
 https://lists.maemo.org/mailman/listinfo/maemo-developers




signature.asc
Description: OpenPGP digital signature
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Debhelper 7

2009-12-14 Thread Marius Vollmer
ext Teemu Ikonen tpiko...@gmail.com writes:

 [...] Do you have any specific idea on why debhelper 7 does not run on
 Fremantle SDK (I suppose there's no need to run it on the device)?  Is
 there any chance at all to get it working, by upgrading perl or some
 other magic?

Yes, there is a chance, but it is not pretty.

The Fremantle SDK, like all versions of the Maemo SDK, uses Scratchbox
with a specific set of devkits.  One of the devkits is the debian-etch
one, and that devkit contains debhelper.

The nature of devkits is that they shadow whatever is in the target.
Thus, installing debhelper 7 in the target doesn't do anything: you will
still get the debhelper from the devkit.

You would either have to update the devkit itself, or somehow disable it
while building your package only.

You can disable the devkits with a snippet like this in debian/rules:

# Sanitize build environment when running inside Scratchbox 1
ifneq (,$(wildcard /targets))
   export SBOX_REDIRECT_TO_DIRS=
   export PATH=/scratchbox/compilers/bin:/bin:/usr/bin:/scratchbox/tools/bin
endif

This is a hack, and you have to assume responsibility for all the
fall-out that it produces. :)

That's the magic.  You will likely need to update Perl as well, and then
update many many Perl modules.  This is what I have done for Harmattan,
and now I am sitting on about 100 packages that I have updated... :-)

You can also backport debhelper 7 to Perl 5.8.

On balance, I think it is better to just stick to debhelper 5 in
Fremantle.
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


How to make python2.5 default in scratchbox?

2009-12-14 Thread Till Harbaum / Lists
Hi,

i am trying to port some software that requires scons at build time and which 
in turn needs python2.5. There is a python 2.5 in the repository, but 
scratchbox comes with its own python 2.3. 

Now the question: How do i make python2.5 the default? And this needs to be in 
a way that also works with the autobuilder.

I am trying to port the latest version of widelands to maemo5.

Till
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: How to make python2.5 default in scratchbox?

2009-12-14 Thread Faheem Pervez
Hiya,

My favourite way (works for CDBS, too, without the usual shit CDBS brings):

In debian/rules, near the top:

SBOX_REDIRECT_IGNORE := /usr/bin/python
export SBOX_REDIRECT_IGNORE

PATH := /usr/bin:$(PATH)
export PATH

Make sure to Build-Depend on python2.5, too.

Best Regards,
Faheem

On Mon, Dec 14, 2009 at 11:59 AM, Till Harbaum / Lists
li...@harbaum.org wrote:
 Hi,

 i am trying to port some software that requires scons at build time and which 
 in turn needs python2.5. There is a python 2.5 in the repository, but 
 scratchbox comes with its own python 2.3.

 Now the question: How do i make python2.5 the default? And this needs to be 
 in a way that also works with the autobuilder.

 I am trying to port the latest version of widelands to maemo5.

 Till
 ___
 maemo-developers mailing list
 maemo-developers@maemo.org
 https://lists.maemo.org/mailman/listinfo/maemo-developers

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


Re: How to make python2.5 default in scratchbox?

2009-12-14 Thread Anderson Lizardo
On Mon, Dec 14, 2009 at 7:59 AM, Till Harbaum / Lists li...@harbaum.org wrote:
 Hi,

 i am trying to port some software that requires scons at build time and which 
 in turn needs python2.5. There is a python 2.5 in the repository, but 
 scratchbox comes with its own python 2.3.

 Now the question: How do i make python2.5 the default? And this needs to be 
 in a way that also works with the autobuilder.

 I am trying to port the latest version of widelands to maemo5.

See the last two answers in http://pymaemo.garage.maemo.org/faq.html

It is exactly like Faheem solution, but be warned that it may (in some
rare circumstances) break some Scratchbox wrappers that depend on
python2.3. So it is not a definitive solution for every package, but
should work in your case.

If it does not work, feel free to post the errors and preferably the
debian/rules.

Regards,
-- 
Anderson Lizardo
OpenBossa Labs - INdT
Manaus - Brazil
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Debhelper 7

2009-12-14 Thread Anderson Lizardo
On Mon, Dec 14, 2009 at 7:15 AM, Marius Vollmer
marius.voll...@nokia.com wrote:
 On balance, I think it is better to just stick to debhelper 5 in
 Fremantle.

And from our experience in PyMaemo backporting various (but not that
many) packages from debhelper compatibility level 7 to 5, in most
cases you need just to change:

* debian/compat:  7 - 5
* debian/control: Build-Depends: debhelper (= 7) - debhelper (= 5)
* And maybe comment out a few dh_* calls from debian/rules, which
might not exist on level 5

Now things might get complex if the packaging already uses some new
features of level 7, like those CDBS-like helper rules. In such cases,
looking at versions prior to the compatibility level upgrade might
help doing the downgrade (and most Debian packages are kept in public
SCMs like svn.debian.org).

Regards,
-- 
Anderson Lizardo
OpenBossa Labs - INdT
Manaus - Brazil
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: How to determine the model and hardware configuration Maemo device?

2009-12-14 Thread Marius Gedminas
On Sun, Dec 13, 2009 at 06:16:42PM +0300, Arkady Glazov wrote:
 Is it possible to determine from a perl or shell script on which model
 it gets? And how can we determine how the localization device
 (keyboard)

osso-product-info could help.

IIRC in Diablo it required root for (part of?) the info; in Fremantle
regular users can run it no problem.

Marius Gedminas
-- 
Never trust a computer you can't repair yourself.


signature.asc
Description: Digital signature
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Maemo CLI application icon (take 1)...

2009-12-14 Thread Tim Samoff
Hi,

I've been working on an icon to be used by CLI applications in the Maemo 
Application Manager.

Take a look:

http://samoff.com/random/maemo/term_icon/

Let me know what you think (good or bad). I'm happy to make changes if 
needed.

Thanks,
Tim

-- 
http://samoff.com
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Maemo CLI application icon (take 1)...

2009-12-14 Thread Andrew Flegg
On Mon, Dec 14, 2009 at 15:04, Tim Samoff t...@samoff.com wrote:

 I've been working on an icon to be used by CLI applications in the Maemo
 Application Manager.

Do you reckon it's feasible to have an emblem (say the jigsaw piece)
which can be overlaid on any icon to represent it? It looks pretty
legible on the 48x48 icon IMHO.

 Take a look:

 http://samoff.com/random/maemo/term_icon/

 Let me know what you think (good or bad). I'm happy to make changes if
 needed.

Minor nit: _ is great for my nostalgia for a BBC prompt, but is
probably better as $_ for Linux :-)

We could even extend it to #_ for ones (such as nmap) which require
root? (and a stronger yellow to indicate its increased danger)

Cheers,

Andrew

-- 
Andrew Flegg -- mailto:and...@bleb.org  |  http://www.bleb.org/
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Build-Depends for several Maemo versions

2009-12-14 Thread Cornelius Hald
On Fri, 2009-12-11 at 18:50 +0200, Ed Bartosh wrote:
 BTW, the reason for the issue was using wrong syntax for versioning
 dependencies in the control file. Instead of using ( 4.1) Cornelius
 was using ( 4.1).

Thanks a lot Ed, that did the trick :)

Cheers!
Conny



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


Re: Maemo CLI application icon (take 1)...

2009-12-14 Thread Tim Samoff
Hi,

  Do you reckon it's feasible to have an emblem (say the jigsaw piece)
  which can be overlaid on any icon to represent it? It looks pretty
  legible on the 48x48 icon IMHO.

Sure, but then we'd have to require all devs to actually _do_ this 
(i.e., make an icon and overlay the puzzle piece, etc.). Or, could this 
be done dynamically?

  Minor nit: _ is great for my nostalgia for a BBC prompt, but is
  probably better as $_ for Linux :-)

Good point. I wasn't thinking. ;)

  We could even extend it to #_ for ones (such as nmap) which require
  root? (and a stronger yellow to indicate its increased danger)

Just more icons... I don't think we could change that detai dynamically!

I'll update the icons and reupload...sometime. More comments before I 
get back into are good too.

  Cheers,
 
  Andrew
 

Thanks,
Tim

-- 
http://samoff.com
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Maemo CLI application icon (take 1)...

2009-12-14 Thread Faheem Pervez
On Mon, Dec 14, 2009 at 3:30 PM, Tim Samoff t...@samoff.com wrote:
 Good point. I wasn't thinking. ;)


You Mac users. Tsk. ;)

 Thanks,
 Tim


Best Regards,
Faheem
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Maemo CLI application icon (take 1)...

2009-12-14 Thread Andrew Flegg
On Mon, Dec 14, 2009 at 15:30, Tim Samoff t...@samoff.com wrote:

   Do you reckon it's feasible to have an emblem (say the jigsaw piece)
   which can be overlaid on any icon to represent it? It looks pretty
   legible on the 48x48 icon IMHO.

 Sure, but then we'd have to require all devs to actually _do_ this
 (i.e., make an icon and overlay the puzzle piece, etc.). Or, could this
 be done dynamically?

Well, I'd *imagined* it being developer wants to push a really
polished CLI app, with its own icon and branding (e.g. SSH,
ImageMagick, vim [if it didn't have a launcher]) but needs to comply
with this standard. So, we'd have two variants:

  * Complete icon which can be dumped in XB-Maemo-Icon-26 (48x48),
we'd even publish the bit to copy to debian/control directly to
save the packager fighting with uuencoder.

  * Emblem which can be overlaid at a defined position in the icon
so that the user can see it's a CLI app, but the developer still
gets to have some branding on the package.

   We could even extend it to #_ for ones (such as nmap) which require
   root? (and a stronger yellow to indicate its increased danger)

 Just more icons... I don't think we could change that detai dynamically!

Oh, absolutely - I was suggesting having materials and collateral
available to a developer to make it easy; not have Packages do it
automatically!

 I'll update the icons and reupload...sometime. More comments before I
 get back into are good too.

Indeed. These are just my thoughts - I trust you as a designer to tell
me when I'm talking crap :)

Cheers,

Andrew

-- 
Andrew Flegg -- mailto:and...@bleb.org  |  http://www.bleb.org/
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Maemo CLI application icon (take 1)...

2009-12-14 Thread Andrew Flegg
On Mon, Dec 14, 2009 at 15:30, Tim Samoff t...@samoff.com wrote:

   Do you reckon it's feasible to have an emblem (say the jigsaw piece)
   which can be overlaid on any icon to represent it? It looks pretty
   legible on the 48x48 icon IMHO.

 Sure, but then we'd have to require all devs to actually _do_ this
 (i.e., make an icon and overlay the puzzle piece, etc.). Or, could this
 be done dynamically?

Well, I'd *imagined* it being developer wants to push a really
polished CLI app, with its own icon and branding (e.g. SSH,
ImageMagick, vim [if it didn't have a launcher]) but needs to comply
with this standard. So, we'd have two variants:

  * Complete icon which can be dumped in XB-Maemo-Icon-26 (48x48),
we'd even publish the bit to copy to debian/control directly to
save the packager fighting with uuencoder.

  * Emblem which can be overlaid at a defined position in the icon
so that the user can see it's a CLI app, but the developer still
gets to have some branding on the package.

   We could even extend it to #_ for ones (such as nmap) which require
   root? (and a stronger yellow to indicate its increased danger)

 Just more icons... I don't think we could change that detai dynamically!

Oh, absolutely - I was suggesting having materials and collateral
available to a developer to make it easy; not have Packages do it
automatically!

 I'll update the icons and reupload...sometime. More comments before I
 get back into are good too.

Indeed. These are just my thoughts - I trust you as a designer to tell
me when I'm talking crap :)

Cheers,

Andrew


-- 
Andrew Flegg -- mailto:and...@bleb.org  |  http://www.bleb.org/
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Maemo 5 On Beagleboard (B5) boot fail.

2009-12-14 Thread Doug Steel
Hi Jim,

I also get the Xserver crash with a DVI monitor connected on a B6 Beagleboard.
Reverting to the old xserver-org-core stops the crash, but I get no
desktop displayed.
Starting X with -retro lets me see the old style lattice background
(so X is talking to the screen driver ok), until I start hildon which
will either crash X (with
xserver-org-core_1.6.99.1-0osso20090208.102+0m5_armel.deb installed)
or blank screen (with
xserver-org-core_1.6.99.1-0osso20090208.95+0m5_armel.deb installed).

Is there a known combination of .debs that will work ?

Thanks
Doug

 Date: Sat, 12 Dec 2009 08:08:33 -0800 (PST)
 From: casper624 jimw...@gmail.com
 Subject: Re: Maemo 5 On Beagleboard (B5) boot fail.
 To: maemo-developers@maemo.org
 Message-ID: 1260634113365-4156591.p...@n2.nabble.com
 Content-Type: text/plain; charset=us-ascii


 Hi,

 I have a beagleboard with LCD extension. I follow the instruction at
 http://omappedia.org/wiki/Maemo_Getting_Started exactly. Since the latest
 xserver-org-core doesn't work, I install 1.6.99.1-0osso20090208.95+0m5
 instead. Xorg starts and all applications are running. However, I cannot see
 the output on LCD. Both angstrom and mer image worked well on my board. I
 tried to used debug version of fbdev but X server just crashed with the same
 error before. Below are xserver log and process list. Any feedback or
 suggestion would be helpful. Thanks a lot!

 Cheers/Jim

 (WW) Failed to open protocol names file /usr/lib/xorg/protocol.txt(++) Log
 file: /tmp/Xorg.0.log, Time: Sat Jan  1 00:00:11 2000
 (==) Using config file: /etc/X11/xorg.conf
 (==) No Layout section.  Using the first Screen section.
 (==) No screen section available. Using defaults.
 (**) |--Screen Default Screen Section (0)
 (**) |   |--Monitor default monitor
 (==) No monitor specified for screen Default Screen Section.
        Using a default monitor configuration.
 (==) Automatically adding devices
 (==) Automatically enabling devices
 (WW) `fonts.dir' not found (or not valid) in /.
        Entry deleted from font path.
        (Run 'mkfontdir' on /).
 (==) FontPath set to:
        built-ins
 (==) ModulePath set to /usr/lib/xorg/modules
 (II) Cannot locate a core pointer device.
 (II) Cannot locate a core keyboard device.
 (II) The server relies on HAL to provide the list of input devices.
        If no devices become available, reconfigure HAL or disable 
 AllowEmptyInput.
 (--) using VT number 2

 (WW) xf86OpenConsole: setpgid failed: Operation not permitted
 (WW) xf86OpenConsole: setsid failed: Operation not permitted
 (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
 (II) Module extmod: vendor=X.Org Foundation
        compiled for 1.6.99.1, module version = 1.0.0
 (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
 (II) Module dbe: vendor=X.Org Foundation
        compiled for 1.6.99.1, module version = 1.0.0
 (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
 (II) Module record: vendor=X.Org Foundation
        compiled for 1.6.99.1, module version = 1.13.0
 (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
 (II) Module dri2: vendor=X.Org Foundation
        compiled for 1.6.99.1, module version = 1.0.0
 (==) Matched fbdev for the autoconfigured driver
 (==) Assigned the driver to the xf86ConfigLayout
 (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
 (II) Module fbdev: vendor=X.Org Foundation
        compiled for 1.6.99.1, module version = 0.4.0
 (II) FBDEV: driver for framebuffer: fbdev
 (WW) Falling back to old probe method for fbdev
 (II) Loading /usr/lib/xorg/modules/linux/libfbdevhw.so
 (II) Module fbdevhw: vendor=X.Org Foundation
        compiled for 1.6.99.1, module version = 0.0.2
 (II) FBDEV(0): using default device
 (II) Running in FRAMEBUFFER Mode
 (II) FBDEV(0): Creating default Display subsection in Screen section
        Default Screen Section for depth/fbbpp 16/16
 (==) FBDEV(0): Depth 16, (==) framebuffer bpp 16
 (==) FBDEV(0): RGB weight 565
 (==) FBDEV(0): Using gamma correction (1.0, 1.0, 1.0)
 (==) FBDEV(0): Default visual is TrueColor
 (II) FBDEV(0): hardware: omapfb (video memory: 256kB)
 (II) FBDEV(0): Output LCD has no monitor section
 (II) FBDEV(0): Output LCD connected
 (II) FBDEV(0): Using exact sizes for initial modes
 (II) FBDEV(0): Output LCD using initial mode 480x272
 (II) FBDEV(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise
 stated.
 (II) Loading /usr/lib/xorg/modules/libfb.so
 (II) Module fb: vendor=X.Org Foundation
        compiled for 1.6.99.1, module version = 1.0.0
 (==) FBDEV(0): DPI set to (96, 96)
 (II) Loading /usr/lib/xorg/modules/libexa.so
 (II) Module exa: vendor=X.Org Foundation
        compiled for 1.6.99.1, module version = 2.4.0
 (II) EXA(0): Driver allocated offscreen pixmaps
 (II) EXA(0): Driver registered support for the following operations:
 (II)         Solid
 (II)         Copy
 (II) FBDEV(0): [DRI2] Setup complete
 (==) FBDEV(0): Backing store disabled
 (II) FBDEV(0): RandR 1.2 enabled, ignore the 

[Fwd: Call for Talks - FOSDEM 2010 (GNOME devroom)]

2009-12-14 Thread Dave Neary
Hi all,

At FOSDEM, Maemo will be engaged with four different dev-rooms: the
Mobile dev-room, the distros mini-conf, the GNOME dev-room and the KDE
dev-room. This year again there are plans for freedesktop.org talks in
the GNOME dev-room.

Can anyone interested in submitting a Maemo/Mer related talk to the
GNOME dev-room please either contact me, or contact Teuf directly  CC
me, so that we can track where the different talks will be happening? I
will link to the GNOME call for content in the FOSDEM wiki page.

Jeremiah, you're keeping your eye out for the distro mini-conf call for
content, are you? I'm not on any lists that have gotten any news of that
one yet. Could you forward anything you see on to me, please?

Thanks all!
Dave.


-- 
maemo.org docsmaster
Email: dne...@maemo.org
Jabber: bo...@jabber.org

---BeginMessage---
Hi everyone,

As for the last few years, we'll have a GNOME devroom next year at FOSDEM
(6/7
feb in Brussels), and as always, we want *YOU* to give a talk about
the cool project you are hacking on in this devroom

During this week-end, we'll have half a day dedicated to GNOME specific
talks,
and on Sunday, we'll share the devroom with people hacking on other
desktop environments and have talks about crossdesktop topics or talks
about some GNOME specific topics, but which can be of interest to the
other communities.

Devroom talks are 30/35 minute long talks presenting one aspect of the
GNOME community you care about. This can be a technical talk about a
library you're hacking on, but you can also give a talk about how to
market GNOME at big events, or about how to get involved in the
translation project, ... In short, you can talk about whatever you
want as long as it's about GNOME!

Like last year, you'll find all the information about the even
on http://live.gnome.org/Brussels2010. However,if you want to
give a talk, please don't add yourself to the schedule. Send me an
email instead describing your talk and the slot(s) you'd like to have,
and add that information to the Presenters and their presentation on
the wiki.

If you aren't giving a talk but are coming, please let us now at
http://live.gnome.org/Brussels2010/Attendees ! This is helpful in case
we print shirts or name tags.

Please send your talk proposals before Friday 8th January. With the end of
year
holidays, this deadline will come *really* quickly, so the sooner you send a
proposal,
the better (before the holidays is great ;).

Hope to see you all in Brussels, enjoy the last days of 2009,

Christophe
___
foundation-list mailing list
foundation-l...@gnome.org
http://mail.gnome.org/mailman/listinfo/foundation-list
---End Message---
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: which toolkit/framework is best for Game UI

2009-12-14 Thread Keywan Najafi Tonekaboni
Hi Ville,

Am Sonntag, den 13.12.2009, 21:45 +0200 schrieb Ville M. Vainio:
 PyQt is still available, and PySide status is not quite so unclear
 as you may think.

Thanks for lighten me up. So I can use without fear PyQt or PySide in
Maemo5?


 Considering that it will take some time to develop your program in the
 first place, Qt would still seem like the path of least resistance.
 You can make it a normal PyQt program on desktop, do a quick
 search/replace port to PySide and deploy on device. Or just use the
 PyQt version on the device.

A friend told me, he could install and run PyQt in scratchboxl. By now I
just totally confused. I would like to try PyQt/PySide but are afraid of
possible pitfalls. Are there any?

Thanks,

Keywan


-- 
Keywan Najafi Tonekaboni m...@prometoys.net
http://blogs.nokia.com/pushn900/category/solderin-skaters/


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


Re: Maemo CLI application icon (take 1)...

2009-12-14 Thread Graham Cobb
Can we please keep this discussion on one list (I got 4 copies of Andrew's 
last reply for some reason!)?  I suggest -developers for the discussion of 
the icon/emblem as that is where most of the people who are affected live. 
Once that is complete -community is the right place to discuss the actual 
policy (bearing in mind the results of the brainstorm).

On Monday 14 December 2009 15:17:26 Andrew Flegg wrote:
 On Mon, Dec 14, 2009 at 15:04, Tim Samoff t...@samoff.com wrote:
  I've been working on an icon to be used by CLI applications in the Maemo
  Application Manager.

 Do you reckon it's feasible to have an emblem (say the jigsaw piece)
 which can be overlaid on any icon to represent it? It looks pretty
 legible on the 48x48 icon IMHO.

How about using the whole thing as the emblem just allowing the application to 
replace the inner black square with their own icon if they wish?  I feel the 
jigsaw piece doesn't work well unless you also use its white shadow and then 
the broken border works really well.


  Take a look:
 
  http://samoff.com/random/maemo/term_icon/
 
  Let me know what you think (good or bad). I'm happy to make changes if
  needed.

 Minor nit: _ is great for my nostalgia for a BBC prompt, but is
 probably better as $_ for Linux :-)

Actually, just $ -- how about making it a larger $ sign occupying most of 
the height of the jigsaw piece?

 We could even extend it to #_ for ones (such as nmap) which require
 root? (and a stronger yellow to indicate its increased danger)

I don't particularly like trying to encode information in the icon/emblem.  
The marketing side of me is shouting about brand dilution!  There should be 
one emblem which people quickly learn means no icon installed -- some other 
way of using this package, like a command line.  Having variants (different 
colours, different symbols) will just lead to confusion and will make it 
harder for people to recognise what the emblem is telling them.

It is only programmers who would think of having variants on the symbol to 
tell you something about the package -- that is what the description is for.

Graham
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Does anyone see this?

2009-12-14 Thread Demetris
Excellent idea - thanks Andrew.

Sorry for the spam guys and thanks to all who responded and helped me 
out with this.
There is still an issue with me seeing my own postings so I will let the 
admins know.

Many regards

Andrew Flegg wrote:
 On Mon, Dec 14, 2009 at 05:28, Demetris demet...@ece.neu.edu wrote:
   
 Can someone please confirm that they can see this email? There have
 been some issues with post seeing my own postings (even though in the
 subscriber page the appropriate option is checked off as Yes) and also
 anyone seeing my emails on any of the  two lists.
 

 For future reference, if you're unsure if your message was received by
 the list, the easiest thing to check is the archives:

 
 http://lists.maemo.org/pipermail/maemo-developers/2009-December/022976.html
 http://lists.maemo.org/pipermail/maemo-users/2009-December/014888.html

 HTH,

 Andrew

   

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


Re: Simple javascript application on maemo

2009-12-14 Thread Thomas Waelti
Would it make sense if I would try that route with maeMaps, too?
(Because I didn't win any friends to support my proposal of packing a bookmark 
:-)

I'm still a bit afraid of QT, not knowing what version to develop for on the 
N900 and being a real C++ noob
(altough I once created an image converter in C++ that did run over 100 million 
times worldwide :-)

-Tom

 Hi,
 What about creating a simple Qt application with a QWebPage and load your 
 html/js page
 into it?

 Br,
 Antonio

 On Sun, Dec 13, 2009 at 1:55 PM, ds d...@physik.de wrote:
 Hi,

 I wonder if there is prefered way to install a simple javascript
 application to maemo.

 I only want to start a html page containing javascript in fullscreen
 mode and have a nice shortcut for the application.

 Is there any example?

 Thanks a lot

 Detlef

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


Re: Simple javascript application on maemo

2009-12-14 Thread ds
Am Montag, den 14.12.2009, 21:20 +0100 schrieb Thomas Waelti: 
 Would it make sense if I would try that route with maeMaps, too?
 (Because I didn't win any friends to support my proposal of packing a
bookmark :-)

I think starting the webbrowser with the html page should at least be an
option. I start the webbrowser from within the about dialog (vncviewer:
I hope it works with N900, but I could not test), but it could even be
possible directly from the .desktop without using any executable! 
But I do not remember the details, as I did this some years ago. 

 
 I'm still a bit afraid of QT, not knowing what version to develop for
on the N900 and being a real C++ noob
 (altough I once created an image converter in C++ that did run over
100 million times worldwide :-)
 
 -Tom
 
  Hi,
  What about creating a simple Qt application with a QWebPage and load
your html/js page
  into it?
 
  Br,
  Antonio
 
  On Sun, Dec 13, 2009 at 1:55 PM, ds d...@physik.de wrote:
  Hi,
 
  I wonder if there is prefered way to install a simple javascript
  application to maemo.
 
  I only want to start a html page containing javascript in fullscreen
  mode and have a nice shortcut for the application.
 
  Is there any example?
 
  Thanks a lot
 
  Detlef
 
 



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


Re: Garage maintenance break

2009-12-14 Thread Thomas Waelti
And now we have rush-hour on garage... dog slow, four apps queued inside 20 
minutes.
Is that new server slower or faster than the old one :-)

Thanks for keeping an eye on that infrastructure, it really becomes critically 
important now.

Best regards
-Tom


 Hello,

 Marius Gedminas wrote:
 On Sat, Dec 12, 2009 at 11:34:57AM +, Andrew Flegg wrote:

 Apologies if such an announcement was made - but I didn't see it, and
 can't find it if it was. So, if it *was* made; it needs to be made
 more clearly next time :-)

 I was unable to find an announcement either.  Since previous maintenance
 breaks used to be announced, I can only assume this downtime is
 unscheduled.  Some kind of emergency?

 There was no announcement, because there was no maintenance break
 planned. What happened was a bad mistake from me. I changed the
 PosgreSQL config file to do some db migration stuff to the new server.
 After copying the database I forgot to revert the config changes which
 caused that the web site went down.

 I am very sorry for inconveniences it has caused.

 Br,
 ferenc
 ___
 maemo-developers mailing list
 maemo-developers@maemo.org
 https://lists.maemo.org/mailman/listinfo/maemo-developers
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Intercept camera slider open event to default camera app? (N900)

2009-12-14 Thread Thomas Waelti
Can anybody tell how an app can intercept the camera slider opening event, so 
that it does NOT call the default camera app?

This might be handy for my upcoming version of moodlight, which now has a 
camera-LED-based flashlight mode thanks to the input from RISKÓ Gergely.
It might also benefit all other cam-related apps such as mBarcode from Lardman.

Thanks and happy hacking :-)
-Tom

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


Re: Virtual Keyboard Sources

2009-12-14 Thread Sergey Vlasov
On Mon, Dec 14, 2009 at 11:18 AM, Joaquim Rocha jro...@igalia.com wrote:

 Hi Sergey,

 Have you restarted SB after applying the plugin's name to
 /apps/osso/inputmethod/default-plugins/finger ?

 --
 Joaquim Rocha


Hi Joaquim,

Indeed, after restart no keyboard showed up at all so I had to revert it
back to hildon_western_fkb. I may still do something wrong...

--
Sergey
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Maemo Official Platform Bug Jar 2009.50

2009-12-14 Thread Stephen Gadsby
A Quick Look at Maemo Official Platform in Bugzilla (https://bugs.maemo.org/).
2009-12-07 through 2009-12-13

As of 2009-12-14 Maemo Official Platform contains 2458 items (+84 this week),
including 514 open issues (+22 this week):
* 348 open bugs (+32 this week)
* 16 critical/blocker (+2 this week)
* 4 easyfix (no change this week)
* 44 moreinfo (+6 this week)
* 12 crash (+2 this week)
* 17 patch (no change this week)
* 17 reopened (no change this week)
* 83 unconfirmed (+11 this week)
* 166 open enhancements (-10 this week)
* 1 easyfix (no change this week)
* 3 moreinfo (-2 this week)
* 2 patch (no change this week)
* 6 reopened (no change this week)
* 20 unconfirmed (-1 this week)

==--- New Items ---==

64 bugs were opened -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=6647,6655,6657,6662,6664,6665,6675,6676,6678,6685,6691,6693,6694,6698,6699,6703,6705,6707,6729,6730,6733,6734,6736,6739,6740,6745,6746,6747,6750,6752,6755,6761,6766,6767,6777,6789,6790,6792,6801,6802,6803,6805,6806,6813,6816,6818,6822,6834,6853,6854,6856,6859,6865,6867,6868,6870,6877,6895,6901,6905,6908,6910,6931,6932
):
* [6647] No Virtual Keyboard for PDF Reader Page Number Entry
* [6655] Wifi Protected Setup cannot be disabled in favor of classical way
* [6657] User Guide States that Conversation Entry is Single Line
* [6662] Wrong Danish translation: Programmet 1 er installeret
* [6664] Haptics do not work while on a call
* [6665] manual IP address textbox in advanced connection settings
is partially hidden
* [6675] after failed pairing to bluetooth car kit bluetooth can't be turned on
* [6676] Microphone ceases to work when making a phone call with
headphones plugged in
* [6678] Cannot connect to WLAN with 64-digit hex WPA key due to
maximum number of characters reached at 63 digits
* [6685] Generic pc105 layout is not supported
* [6691] Application Switcher button shown in Fullscreen apps
(Marbles) when clicking that area
* [6693] Change the date/time displayed on SMS messages to be the
local phone time instead of server time because it is wrong and
confusing
* [6694] No audio when playing through playbin2 in Silent profile
* [6698] N810 sometimes switches off
* [6699] Vodafone Italy: Wrong APN is autoconfigured
* [6703] MfE calendar sync causes dummy email sync account to appear
* [6705] fetching of contacts from SE T700 fails via bluetooth
* [6707] pulseaudio uses 20-30% cpu when on phone, GSM
* [6729] gtk-update-icon-cache -f shouldn't say Failed to open file
/usr/share/icons/hicolor/.icon-theme.cache : File exists
* [6730] Data counter should be connection-specific
* [6733] gmail status set to away when skype status set to invisible
* [6734] problem pairing with bluetooth headsets
* [6736] Polish string too long in UPnP browsing menu bar
* [6739] Cannot set Socks5 proxy in the Connection Settings dialog
* [6740] N900 cannot pair with devices that do not use a passcode
* [6745] Data roaming - it is not roaming in home network
* [6746] USB mass storage enabled when connected while device is off
* [6747] Requesting the option to turn off GSM only, but keep WIFI or
other connectivity
* [6750] During OFFLINE mode the n900 drains the battery very fast - very bad
* [6752] Low power beep does not sound if you're on a call
* [6755] Old API documentation pages should have a warning + link to
the most recent version
* [6761] Pressing Shift+Fnc+) (or , £, or $) results in the output of
two characters (US hardware keyboard)
* [6766] Bluetooth Audio Very Choppy and Stuttering
* [6767] N900 Unexpected reboots after 5-7mins
* [6777] Threshold for switching from 3G to GSM is too low
* [6789] Third row of soft keys not working when using Sym button
launched symbol selector
* [6790] Forgets network key if connection fails
* [6792] FM radio transmitter does not play while USB cord is connected
* [6801] N810 can't connect to access point with wpawpa2 encryption
* [6802] How can I connect to access point with 64 character Hex-Key
* [6803] Video overlay from media player disturbs UI
* [6805] Shutdown notification does not honour volume level
* [6806] Cannot turn on while charging
* [6813] Add widget missing in SDK
* [6816] OpenGL ES 1.1 should be supported
* [6818] Symbols from the third row do not work correctly
* [6822] N900 won't turn on with charger in
* [6834] Strange CPU utilization patterns during video playback
* [6853] Fetching contacts from S60 phone (E75) incomplete
* [6854] Strange double view of application menu
* [6856] Can't close Mail for Exchange Wizard any more
* [6859] Contacts unmerge when signing in to im network
* [6865] virtual keyboard does not produce characters for certain virtual keys
* [6867] Contacts not removed after the exchange server is deleted
from the phone
* [6868] Pulseaudio uses cpu constantly after a phone call.
* [6870] /opt is not in the $PATH
* [6877] Pin / lock code entry dialog reveals digits on backspace
* 

Re: Maemo Official Platform Bug Jar 2009.50

2009-12-14 Thread Stephen Gadsby
(continued)

==--- Confirmed Items ---==

20 bugs were confirmed -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=5586,5953,6275,6476,6502,6506,6545,6549,6606,6640,6647,6657,6662,6699,6746,6766,6792,6806,6816,6859
):
* [5586] Connection to Bluetooth GPS repeatedly lost while scanning
for or connecting to wireless networks
* [5953] no media sounds routed when connected to bluetooth headset in
car (only works for phone calls)
* [6275] Alarm played through Nokia BH-102 Bluetooth headset instead
of internal speakers
* [6476] Email: Awkward text: Connecting Nokia servers to check
service availability
* [6502] Control Panel: Cannot change Network mode when Network
selection is Automatic
* [6506] Hardware keys do not change volume when status menu in
foreground  browser in background
* [6545] HildonAppMenu doesn't show when another top level widget is around
* [6549] Bluetooth Handsfree profile missing or not sharing address
book properly
* [6606] No getopts, called by init-functions (lsb-base)
* [6640] m4a podcast with subtitles fails to play with playbin2 flags=99
* [6647] No Virtual Keyboard for PDF Reader Page Number Entry
* [6657] User Guide States that Conversation Entry is Single Line
* [6662] Wrong Danish translation: Programmet 1 er installeret
* [6699] Vodafone Italy: Wrong APN is autoconfigured
* [6746] USB mass storage enabled when connected while device is off
* [6766] Bluetooth Audio Very Choppy and Stuttering
* [6792] FM radio transmitter does not play while USB cord is connected
* [6806] Cannot turn on while charging
* [6816] OpenGL ES 1.1 should be supported
* [6859] Contacts unmerge when signing in to im network

8 enhancements were confirmed -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=5438,6472,6487,6597,6634,6689,6718,6897
):
* [5438] Provide Alternate Line Service support
* [6472] T9 Dialer
* [6487] Volume buttons should work while playing music and device is locked
* [6597] There should be an on-screen indication of keyboard mode
(shifted or symbol mode)
* [6634] No universal search function on N900
* [6689] Prevent magnet from waking up device
* [6718] Provide modplug plugin for GStreamer
* [6897] The N900 is lacking Bluetooth PBAP profile


==--- Reopened Items ---==

2 bugs were reopened -
( https://bugs.maemo.org/buglist.cgi?bug_id=6608,6745 ):
* [6608] Auto complete on virtual keyboard cannot be used properly
* [6745] Data roaming - it is not roaming in home network

1 enhancement was reopened -
( https://bugs.maemo.org/buglist.cgi?bug_id=6286 ):
* [6286] liblzo2-2 should be in an Apps / SSU repositories, not Tools


==--- Unloved Items ---==

10 bugs were needing love -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=6676,5173,6316,4789,6703,6834,6420,6707,6733,6777
):
* [6676] Microphone ceases to work when making a phone call with
headphones plugged in
* [5173] HildonPickerDialog selects the first item always if appended
into shown widget
* [6316] Control+key does not create proper key press events
* [4789] ipctest.c input_cb seems to pass a reference to a freed
pointer to sscanf
* [6703] MfE calendar sync causes dummy email sync account to appear
* [6834] Strange CPU utilization patterns during video playback
* [6420] g++/gcc wrapper generating wrong deps
* [6707] pulseaudio uses 20-30% cpu when on phone, GSM
* [6733] gmail status set to away when skype status set to invisible
* [6777] Threshold for switching from 3G to GSM is too low

4 enhancements were needing love -
( https://bugs.maemo.org/buglist.cgi?bug_id=6650,6661,6697,6862 ):
* [6650] Improvement for orientation of menu Press HW-Power-Button = Phone
* [6661] Support Multiple MfE accounts
* [6697] Support the Nokia CK-300 BT Carkit
* [6862] Add status area item to indicate Tracker activity


==--- Top Tens ---==

Ten biggest open bugs by number of votes -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=6334,5421,6615,2723,5388,5835,6350,4619,5880,5496
):
1. (12%) [6334] random reboots (+1 this week)
2. (8%) [5421] keys when long pressed should give the blue
symbol/number (new this week)
3. (8%) [6615] Battery Dies Under 6 Hours with Very Moderate Use (new this week)
4. (5%) [2723] Pushing key once causes multiple repeats
5. (4%) [5388] Allow keyboard input to jump to an entry in a list
(type ahead) (new this week)
6. (4%) [5835] Mail for Exchange does not Sync all Information for
Google Contacts (-1 this week)
7. (3%) [6350] random reboot bricks device (+1 this week)
8. (3%) [4619] Panning and selecting are mutually exclusive (-2 this week)
9. (3%) [5880] A2DP unstable when WiFi is on. (new this week)
10. (2%) [5496] HildonTouchSelector: No hint that there are more items
(new this week)
  ---
  Please visit http://bugs.maemo.org to vote. Registration is easy and free.

Ten biggest open enhancements by number of votes -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=176,1695,1635,6343,5793,2527,6357,5386,793,5803
):
1. (17%) [176] Ogg Vorbis support out of the box
2. (6%) [1695] Browser: Provide open link in background (+1 this 

Maemo Official Applications Bug Jar 2009.50

2009-12-14 Thread Stephen Gadsby
A Quick Look at Maemo Official Applications in Bugzilla
(https://bugs.maemo.org/).
2009-12-07 through 2009-12-13

As of 2009-12-14 Maemo Official Applications contains 2044 items (+146
this week),
including 574 open issues (+55 this week):
* 306 open bugs (+73 this week)
* 8 critical/blocker (+2 this week)
* 2 easyfix (no change this week)
* 54 moreinfo (+15 this week)
* 3 crash (+1 this week)
* 7 patch (no change this week)
* 19 reopened (+1 this week)
* 97 unconfirmed (+34 this week)
* 268 open enhancements (-18 this week)
* 2 easyfix (no change this week)
* 4 moreinfo (-1 this week)
* 14 patch (+1 this week)
* 11 reopened (+2 this week)
* 35 unconfirmed (-5 this week)

==--- New Items ---==

108 bugs were opened -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=6651,6653,6654,6656,,6667,6669,6670,6671,6673,6677,6681,6682,6687,6690,6692,6696,6700,6702,6706,6712,6714,6715,6719,6722,6725,6726,6728,6732,6737,6741,6743,6744,6748,6749,6751,6754,6756,6757,6759,6760,6762,6763,6764,6769,6770,6771,6772,6779,6780,6781,6782,6784,6787,6791,6794,6795,6797,6798,6799,6800,6807,6811,6814,6815,6819,6820,6823,6824,6826,6832,6836,6837,6838,6839,6843,6846,6871,6875,6876,6880,6882,6894,6898,6903,6904,6906,6907,6909,6911,6912,6913,6916,6917,6918,6919,6921,6922,6923,6924,6925,6928,6929,6930,6933,6934,6935,6936
):
* [6651] Call Log only displays the contact that called
* [6653] music player play button on the desktop stops working. have reflashed
* [6654] Nokia Mail does not update messages after a while
* [6656] Unable to get audio when streaming AAC via RTSP
* [] Phone app kills itself after pressing message button while
incoming call
* [6667] Dates shown in MM/DD format no matter the system-wide setting
* [6669] Browser window checkerboards and repaints when navigated to
from multi-task view
* [6670] Phone call log does not show which number of contact called
* [6671] Sometimes the browser window goes black for over a second
after clicking the fullscreen/restore button
* [6673] Sometimes web pages aren't fully loaded, even if the
browser's address field progress bar is no longer animating
* [6677] Browser UI does not always indicate progress after a link is tapped
* [6681] Cannot select text in signature editor via touchscreen
* [6682] Typing in web-based text input fields isn't as seamless as
when using a desktop/laptop computer
* [6687] Calendar (and Calendar desktop Widget) can take up to 30
seconds to become responsive when a lot of Smart Calendar items are
present
* [6690] PLAY button does not work sometimes
* [6692] Unable to set a Google Talk account to Away
* [6696] Skype account disconnected with Network error on connection switch
* [6700] Refusal to send mail directly to non-contact email address
* [6702] email application does not see folders on imap4 with namespace
* [6706] sometimes the OSK return button does not work
* [6712] Some fields in My information cannot be removed or edited
* [6714] rss feed reader does not sort according to pubDate
* [6715] Calendar widget says 'No event or tasks' but there exists a
lot in calendar
* [6719] Not playing regular wav files
* [6722] Hotmail account does not synchronize as it should
* [6725] Calendar doesn't redraw when the day changes.
* [6726] Application manager displays unable to install message,
even though application does install
* [6728] Labels for phone numbers are not differentitated for Skype
* [6732] Gapless playback missing in N900 media player
* [6737] Evernote uses to much space in root partition
* [6741] tutorial-home-applet uses to much space in root partition,
not using /opt
* [6743] Screen flickers unnecessarily when scrolling through
bookmarks with wrapping
* [6744] Context menu conflicts with virtual keyboard
* [6748] Small line visible below media player widget
* [6749] Signature blocks are not correctly generated
* [6751] FM radio widget is confusing
* [6754] Default Google Mobile search page became tiny
* [6756] File sizes over 1 Gigabyte not showing correctly in filemanager.
* [6757] localised description field not taking into account
* [6759] Menu keyboard shortcuts not usable
* [6760] Image Viewer shows items that do not exist and/or duplicate
* [6762] MSN IM inaccessible for some contacts until reboot
* [6763] media player fails to show cover art when playing files off a
DNLA server
* [6764] contacts navigation sidebar needed for UI consistency and convenience
* [6769] Can't  answer a phone call with a short caller ID
* [6770] Can't delete route waypoints in Map application
* [6771] Active connection should be highlighted in the connections list
* [6772] Cannot enter ~ and other symbols in links
* [6779] Does not switch from 3G/2G to manually entered wifi connections
* [6780] Absent button Advance in new connection setup
* [6781] Gtalk recurrent disconnections
* [6782] Word prediction (autotext) doesn'
* [6784] Ringtone is creaked during 

Re: Maemo Official Applications Bug Jar 2009.50

2009-12-14 Thread Stephen Gadsby
(continued)

==--- Confirmed Items ---==

25 bugs were confirmed -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=6067,6279,6375,6384,6424,6465,6541,6553,6575,6584,6641,6643,6651,6653,6654,6692,6744,6748,6770,6797,6815,6819,6823,6882,6894
):
* [6067] Media player becomes unusable if a dialog is open when
opening a stream link from browser
* [6279] Modest is very slow at loading images
* [6375] Provides SMS buttons for Phone entries and not only Mobile entries
* [6384] Volume buttons should be swapped when using the phone in
portrait mode.
* [6424] Please keep the email address used by the sender
* [6465] Sending of large attachment denied: File too large to be attached
* [6541] Polish Subject line violates RFC (Odp. prefix)
* [6553] Calculator should remember mode setting
* [6575] Tapping new Email notification does not bring up email message
* [6584] GPS geotagged pictures truncate precision of GPS reading.
* [6641] Sofia-SIP throws 500 Internal Server Error
* [6643] Creating new entry with hardware keyboard ignores
Auto-capitalisation settings
* [6651] Call Log only displays the contact that called
* [6653] music player play button on the desktop stops working. have reflashed
* [6654] Nokia Mail does not update messages after a while
* [6692] Unable to set a Google Talk account to Away
* [6744] Context menu conflicts with virtual keyboard
* [6748] Small line visible below media player widget
* [6770] Can't delete route waypoints in Map application
* [6797] Not possible to remove non-free component from Maemo Extras
repository
* [6815] Cannot edit or delete internet radio stations from top menu
* [6819] High CPU usage for 15 seconds after page loaded completely
* [6823] media player won't play any video files now (.avi) divx / xvid
* [6882] File Manager discards file to move if destination filename
already exists
* [6894] Contacts App Unable to add a new field error message in wrong place

13 enhancements were confirmed -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=5909,6377,6466,6491,6509,6614,6621,6660,6713,6793,6821,6830,6857
):
* [5909] Allow user to disable orange photo/video indicator lamp
* [6377] Unable to quick-delete/modify a contact from Contacts list
* [6466] Unable to delete prepared email without moving to Drafts folder first
* [6491] Calendar widget should not include tasks that are not yet due
in task count
* [6509] Default font size causes 80 characters wide messages to wrap
* [6614] SIM-Applications are missing from maemo
* [6621] Add option to disable Email delete confirmation dialog
* [6660] Support for ID3 lyrics/text transcription
* [6713] groups/grouping is too limited
* [6793] Jabber call should have a different icon than Jabber IM
* [6821] skype client does not handle text corrections
* [6830] A view for detailed call log
* [6857] USSD codes are not recognized in chat


==--- Reopened Items ---==

3 bugs were reopened -
( https://bugs.maemo.org/buglist.cgi?bug_id=4191,5337,6728 ):
* [4191] Account details only partially editable and inconsistent
* [5337] Maps can't get GPS lock without network connection when the
GPS lock acquiring would take longer
* [6728] Labels for phone numbers are not differentitated for Skype

4 enhancements were reopened -
( https://bugs.maemo.org/buglist.cgi?bug_id=463,5139,5625,6083 ):
* [463] Date format should be user defined
* [5139] Provide multi-user chat (chatroom / IRC) support again
* [5625] Feed list (Folder tree) uses non-finger friendly classic scrollbars
* [6083] Edit/Rename field names or being able to add remarks


==--- Unloved Items ---==

10 bugs were needing love -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=5276,6784,6807,6839,6911,6913,6922,6934,6798,6917
):
* [5276] hildon-games-wrapper crashes in hgw_conf_request_string if
gconf key has no value
* [6784] Ringtone is creaked during incoming call
* [6807] Wrong region detected in E-mail
* [6839] Phone network (2g/3g) mode not changable when data connection
is active.
* [6911] Albums with the same name but by different artists are mixed together
* [6913] Media Player doesn't show covers when some tags are missing
(or others present)
* [6922] Getting started fails to inform user about other product guides.
* [6934] Absent button Go To Calendar from tasks and Notes
* [6798] Voicemail Notification not persistent
* [6917] New IM doesn't establish internet connection when Connect
Automatically is on

9 enhancements were needing love -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=5817,5844,6742,6788,6850,6883,6663,6778,6927
):
* [5817] Sorting rss feeds by non-read or keep-for-later
* [5844] UPNP server should have more visiblitiy in Media Player UI
* [6742] No rubberband effect
* [6788] no way to set volume for alarms
* [6850] Contacts does not allow to show only non-IM contacts
* [6883] Song title not displayed on bluetooth headphones display
* [6663] Show Dialling Pad and Call Functions Simultaneously During Call
* [6778] Clear Conversation should close window
* [6927] Vibrate in pocket, 

Re: Virtual Keyboard Sources

2009-12-14 Thread Joaquim Rocha
Hey Sergey,

Can you list /usr/lib/hildon-input-method ?

--
Joaquim Rocha

Sergey Vlasov wrote:
 On Mon, Dec 14, 2009 at 11:18 AM, Joaquim Rocha jro...@igalia.com wrote:
 
 Hi Sergey,

 Have you restarted SB after applying the plugin's name to
 /apps/osso/inputmethod/default-plugins/finger ?

 --
 Joaquim Rocha

 
 Hi Joaquim,
 
 Indeed, after restart no keyboard showed up at all so I had to revert it
 back to hildon_western_fkb. I may still do something wrong...
 
 --
 Sergey
 




signature.asc
Description: OpenPGP digital signature
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers