xephyr and sdl key codes

2009-12-20 Thread W. de Hoog
Hi,

Recently I upgraded my debian machine + scratchbox + sdk for diablo (and 
added fremantle sdk). Something caused my SDL apps to stop having normal 
keyboard behaviour. It appeared SDL received unknown key codes for most 
of the keys.

All seems to go well when I add the '-kb' option when starting Xephyr. 
Does anybody have a clue what might have changed or is this normal 
behaviour?

regards,

-- 
Willem-Jan de Hoog
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


How to play music in silent mode?

2009-12-20 Thread Alberto Garcia
I want to make Vagalume play music even if the N900 is in silent mode.
I also don't want it to be interrupted when I receive a new IM.

Summarizing: I want the same behavior as the N900 media player.

How do I do that? I'm using GStreamer's pulsesink.

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


maemo-optify with Chinook / conditionals in debian/rules

2009-12-20 Thread Cornelius Hald
Hi,

I'm trying to optify Conboy and noticed that maemo-optify does not exist
on Chinook. So I've added the build dependency like that:

Build-Depends: [...] maemo-optify | maemo-version-dev ( 5.0)

So far so good, but now I have to make the call inside debian/rules
optional as well. Unfortunately I completely fail to do that. I've tried
to add

which maemo-optify  maemo-optify

and

[ -e /usr/bin/maemo/optify ]  maemo-optify

Both work if maemo-optify is available, but fail if it is not available.
The log looks like this:

[...]
dh_install --sourcedir=debian/tmp
dh_testdir
dh_testroot
dh_link
dh_strip
dh_compress
dh_fixperms
dh_installdeb
dh_shlibdeps
dh_gencontrol
which maemo-optify  maemo-optify
make: *** [binary-arch] Error 1

Does someone know why this is not working? It looks like 'make' does not like 
this construct, but what's the alternative?

Thanks!
Conny


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


Re: SyncEvolution in Fremantle

2009-12-20 Thread Ove Kaaven
Hi, Patrick.

I'm new to Maemo, but I've been a Debian Developer for a long time. I
recently got a N900, and decided I really want to sync my stuff.

I've managed to build the current syncevolution git on Maemo5 (in
Scratchbox), however it did not build cleanly without a few changes (and
I disabled shared libraries since cppunit was not available). Also when
built with optimization it crashes immediately, but appears to at least
start OK when built without optimization. I used the included
debian/rules with a couple of extra environment variables set.

(I'll allow anyone desperate enough to get the .deb I ended up with last
night at http://www.ping.uio.no/~ovehk/maemo/ if they really, really,
want, but it's obviously not anywhere near end-user-ready, there's no
GUI, it's built without optimization, it seems to include
flashmemory-space-wasting .h and .a files, and I disabled regular
expressions.)

Since N900's calendar application no longer uses the evolution backend
(but something Nokia-specific, I guess - some C++ API on top of a sqlite
database), I guess I may have to write a brand new backend in order to
sync the calendar. N900's addressbook still uses the evolution backend,
though. I managed to sync the addressbook in scratchbox, haven't tried
the actual device yet.

Patrick Ohly skrev:
 I'd love to see the latest SyncEvolution releases packaged properly for
 Maemo, and so do users [6]. 0.8.1 still works fine on the older Maemo
 releases it is available for, but 0.9 has several relevant improvements,
 for example synchronization with Google Contacts and a GTK GUI.

Hmm. If someone also made direct sync with Google Calendar, then it
would be really useful...

 I'm posting here because I hope that an interested developer or
 maintainer will step up and take over packaging for Maemo. You can be
 sure that this will have full support when it comes to merging patches
 and including the Maemo port as first-class citizen in releases.

I don't suppose anyone else started working on this yet? If not, do you
have any recommendations on where to start? What version of the software
would it be best/easiest to try packaging, for instance, or is git head
stable enough?

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


Re: maemo-optify with Chinook / conditionals in debian/rules

2009-12-20 Thread Cornelius Hald
After a lot of trying I found out the the following works:

if [ `which maemo-optify` ]; then maemo-optify; fi

Cheers!
Conny


On Sun, 2009-12-20 at 20:50 +0100, Cornelius Hald wrote:
 Hi,
 
 I'm trying to optify Conboy and noticed that maemo-optify does not exist
 on Chinook. So I've added the build dependency like that:
 
 Build-Depends: [...] maemo-optify | maemo-version-dev ( 5.0)
 
 So far so good, but now I have to make the call inside debian/rules
 optional as well. Unfortunately I completely fail to do that. I've tried
 to add
 
 which maemo-optify  maemo-optify
 
 and
 
 [ -e /usr/bin/maemo/optify ]  maemo-optify
 
 Both work if maemo-optify is available, but fail if it is not available.
 The log looks like this:
 
 [...]
 dh_install --sourcedir=debian/tmp
 dh_testdir
 dh_testroot
 dh_link
 dh_strip
 dh_compress
 dh_fixperms
 dh_installdeb
 dh_shlibdeps
 dh_gencontrol
 which maemo-optify  maemo-optify
 make: *** [binary-arch] Error 1
 
 Does someone know why this is not working? It looks like 'make' does not like 
 this construct, but what's the alternative?
 
 Thanks!
 Conny
 
 
 ___
 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: maemo-optify with Chinook / conditionals in debian/rules

2009-12-20 Thread Jeff Moe
On Sunday 20 December 2009 18:09:35 Cornelius Hald wrote:
 After a lot of trying I found out the the following works:
 
 if [ `which maemo-optify` ]; then maemo-optify; fi

Perhaps:

if [ -x /usr/bin/maemo-optify ]; then maemo-optify; fi

Have fun,

-Jeff
http://wiki.maemo.org/User:Jebba
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Is eventlogger el.db schema stable ?

2009-12-20 Thread Carlos Morgado
Hi,
I'm putting together a small python script that uses the eventlogger but
there's no bindings that I could find in pymaemo.
I'm fine with going directly to el.db through sqlite3 but this isn't exactly
an API so my question is, is the schema likely to change in the foreseeable
future ?

cheers

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


Re: maemo-optify with Chinook / conditionals in debian/rules

2009-12-20 Thread Mikko Vartiainen
 
 Hi,
 
 I'm trying to optify Conboy and noticed that maemo-optify does not exist
 on Chinook. So I've added the build dependency like that:
 
 Build-Depends: [...] maemo-optify | maemo-version-dev ( 5.0)
 

Currently it's possible to simply add debian/optify file and put auto there. 
Builder will optify
package for fremantle and ignore the file for other
targets. No need for deps or rules changes.

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


Re: maemo-optify with Chinook / conditionals in debian/rules

2009-12-20 Thread Jeff Moe
On Sunday 20 December 2009 19:38:31 Mikko Vartiainen wrote:
  Hi,
 
  I'm trying to optify Conboy and noticed that maemo-optify does not exist
  on Chinook. So I've added the build dependency like that:
 
  Build-Depends: [...] maemo-optify | maemo-version-dev ( 5.0)
 
 Currently it's possible to simply add debian/optify file and put auto
  there. Builder will optify package for fremantle and ignore the file for
  other
 targets. No need for deps or rules changes.

I have generally put maemo-optify in the rules file right after dh_builddep 
as mentioned in the README. It may be true that the builder doesn't need it, 
but it appears the SDK does (?).

Thanks,

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


Re: maemo-optify with Chinook / conditionals in debian/rules

2009-12-20 Thread Mikko Vartiainen
 I have generally put maemo-optify in the rules file right after dh_builddep 
 as mentioned in the README. It may be true that the builder doesn't need it, 
 but it appears the SDK does (?).

Builder runs maemo-optify-deb which you can run locally too if needed. 

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


Re: SyncEvolution in Fremantle

2009-12-20 Thread David Greaves
Ove Kaaven wrote:
 Hi, Patrick.
 
 I'm new to Maemo, but I've been a Debian Developer for a long time. I
 recently got a N900, and decided I really want to sync my stuff.

Hi Ove, welcome to maemo-dev :)

Just breaking lurker status on this thread and saying that I'm really pleased
that someone's making an effort - if you could push your git tree to
gitorious.org (maemo's de-facto git-sharing service) that would be really nice
even though I realise it is likely to be ugly atm.

Also maybe start scribbling on the maemo.org wiki too?

Cheers

David/lbt


-- 
Don't worry, you'll be fine; I saw it work in a cartoon once...
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: maemo-optify with Chinook / conditionals in debian/rules

2009-12-20 Thread Jeff Moe
On Sunday 20 December 2009 20:32:45 Mikko Vartiainen wrote:
  I have generally put maemo-optify in the rules file right after
  dh_builddep as mentioned in the README. It may be true that the builder
  doesn't need it, but it appears the SDK does (?).
 
 Builder runs maemo-optify-deb which you can run locally too if needed.

I think I'll start doing it that way from now to keep in line with builder.

As slightly related note, I have a package that was maemo-optifying fine 
locally for armel/i386, but the builder croaked on maemo-optify of the i386 
for some reason:

maemo-optify
print() on closed filehandle $out at /usr/bin/maemo-optify line 220.
print() on closed filehandle $out at /usr/bin/maemo-optify line 183.
Bad file descriptor at /usr/bin/maemo-optify line 240.

Here's full logs, if it interests you:
https://garage.maemo.org/builder/fremantle/portaudio19_19+svn20071022-4/i386.build.log.FAILED.txt

But like I said, I will now use maemo-optify-deb and drop maemo-optify from my 
debian/rules.

Thanks,

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


RE: [SyncEvolution] SyncEvolution in Fremantle

2009-12-20 Thread Chen, Congwu
Hello Ove! 
Patrick is on vocation these days so I will try to answer your
question first.

Ove Kaaven wrote:

Hi, Patrick.

I'm new to Maemo, but I've been a Debian Developer for a long time. I
recently got a N900, and decided I really want to sync my stuff.

I've managed to build the current syncevolution git on Maemo5 (in
Scratchbox), however it did not build cleanly without a few changes (and
I disabled shared libraries since cppunit was not available). Also when
built with optimization it crashes immediately, but appears to at least
start OK when built without optimization. I used the included
debian/rules with a couple of extra environment variables set.

(I'll allow anyone desperate enough to get the .deb I ended up with last
night at http://www.ping.uio.no/~ovehk/maemo/ if they really, really,
want, but it's obviously not anywhere near end-user-ready, there's no
GUI, it's built without optimization, it seems to include
flashmemory-space-wasting .h and .a files, and I disabled regular
expressions.)

Since N900's calendar application no longer uses the evolution backend
(but something Nokia-specific, I guess - some C++ API on top of a sqlite
database), I guess I may have to write a brand new backend in order to
sync the calendar. N900's addressbook still uses the evolution backend,
though. I managed to sync the addressbook in scratchbox, haven't tried
the actual device yet.
Great progress! Regarding the calendar backend, you are right. We need
to write a new backend to support it. We have a bug entry tracking this issue
[1], however we have no resource to work on it at this time. If you can come
up and take it, that will be great. 

Patrick Ohly skrev:
 I'd love to see the latest SyncEvolution releases packaged properly for
 Maemo, and so do users [6]. 0.8.1 still works fine on the older Maemo
 releases it is available for, but 0.9 has several relevant improvements,
 for example synchronization with Google Contacts and a GTK GUI.

Hmm. If someone also made direct sync with Google Calendar, then it
would be really useful...
That's not possible with SyncML protocol, webDav(which is not really sync) and 
ActiveSync may works, but SyncEvolution currently does not support either.
 
 I'm posting here because I hope that an interested developer or
 maintainer will step up and take over packaging for Maemo. You can be
 sure that this will have full support when it comes to merging patches
 and including the Maemo port as first-class citizen in releases.

I don't suppose anyone else started working on this yet? If not, do you
have any recommendations on where to start? What version of the software
would it be best/easiest to try packaging, for instance, or is git head
stable enough?
SyncEvolution 0.9.1 is the latest stable release, that will be a good version 
to start.
There are heavy developments towards 1.0 release so I will not recommend git 
head
at the moment.

[1] http://bugzilla.moblin.org/show_bug.cgi?id=8511
[2] http://git.moblin.org/cgit.cgi/syncevolution/tag/?id=syncevolution-0-9-1

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


Maemo Official Platform Bug Jar 2009.51

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

As of 2009-12-21 Maemo Official Platform contains 2534 items (+76 this week),
including 544 open issues (+30 this week):
* 381 open bugs (+33 this week)
* 15 critical/blocker (-1 this week)
* 4 easyfix (no change this week)
* 58 moreinfo (+14 this week)
* 12 crash (no change this week)
* 17 patch (no change this week)
* 19 reopened (+2 this week)
* 98 unconfirmed (+15 this week)
* 163 open enhancements (-3 this week)
* 2 easyfix (+1 this week)
* 3 moreinfo (no change this week)
* 2 patch (no change this week)
* 7 reopened (+1 this week)
* 14 unconfirmed (-6 this week)

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

63 bugs were opened -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=6937,6939,6940,6942,6943,6948,6953,6959,6960,6969,6982,6989,6993,6996,6997,6999,7000,7001,7004,7006,7010,7012,7017,7020,7023,7025,7026,7029,7034,7042,7045,7049,7054,7057,7058,7067,7070,7073,7077,7079,7082,7097,7101,7105,7106,7111,7112,7114,7116,7126,7129,7130,7132,7147,7150,7151,7152,7155,7156,7159,7165,7166,7169
):
* [6937] Unable to install Nokia USB ROM on Windows XP
* [6939] Call not established error at random
* [6940] Tapping desktop then app quickly can lead to a confused state
(no titlebar)
* [6942] RFCOMM Connections drop unexpectedly
* [6943] Font size unexpected becomes tiny
* [6948] N810 can't connect to access point with wpawpa2
* [6953] Wrong settings for Orange (France) gprs
* [6959] Syncing with Sony-Ericsson w980i: Not enough memory in
target location
* [6960] Wireless WPA + EAP keeps re-asking for the password
* [6969] WiFi Connection Setup: Advanced setting tab, WiFi
transmission power field is common for different connections
* [6982] Spanish: Tipo de fuente cambiado a %s when switching input languages
* [6989] Impossible to call USSD service
* [6993] Bluetooth handsfree loss of sound brand jabra BT2050
* [6996] Accelerometer uncalibrated after reboot
* [6997] Camera: Wrong translation Hochformat of Portrait in German UI
* [6999] Call drops on HFP bluetooth car kit
* [7000] rootfs free space is very low!
* [7001] No pause before sending DTMF tones
* [7004] headset contacts transfer fails with pioneer deh-p8100bt
* [7006] EAP-TLS with certificate dosent'work
* [7010] Headphones Status Icon not always displayed when plugging in headset
* [7012] No icon for newly installed applications
* [7017] SGX memory reset seems failed during reboot
* [7020] Emoticons show as [OBJ] in Virtual Keyboard
* [7023] Can't Reboot or Switch Off under Mass Memory mode
* [7025] Maps can't get GPS lock without netwhe GPS lock acquiring
would take longer
* [7026] Can't get a GPS lock with several satellites at view
* [7029] Device reboots when trying to connect to WIFI
* [7034] WPA2-LEAP not available for WiFi authentication in 42.11 FW version.
* [7042] Incomplete localisation for apt dialogs
* [7045] Backup: Unclear text in Restore 'backup_name'? step of restore backup
* [7049] MicroB browser unable to save files while device in use as mass storage
* [7054] Cannot set Regional Settings to English (Australia) or
English (New Zealand)
* [7057] supl.nokia.com not working for Networking positioning on T-Mobile USA
* [7058] Unable to start in Production Mode, Starts in RD mode
however shuts off if ctrl and down key pressed, Unable to charge
battery in device
* [7067] gtk-icon-theme-name unset
* [7070] Proximity sensor state not available through HAL
* [7073] Changing password on Exchange 2007 makes MfE go crazy
* [7077] Tag Photo
* [7079] Add a (short shown) scroll bar in the status area window to
indicate that there are more elements inside as actually shown
* [7082] mafw-dbus-daemon killed by podcast
* [7097] Proxy text input field does not allow to enter colon and @
(for username and password)
* [7101] xkbdata: Inconsistency between installed packages in SDK and FW
* [7105] Window titles should be ellipsized to always display the AppMenu arrow
* [7106] Native-gdb script fails (Diablo Armel, Ubuntu 9.10)
* [7111] No calls or SMSs received for several hours
* [7112] Enter Pin screen has two buttons that lead to confusion
* [7114] folders unavailable when charging
* [7116] /etc/pmconfig states minimum CPU frequency of 125MHz contrary
to output of scaling_available_frequencies
* [7126] System fails on Hildon Notification messages
* [7129] Volume variates when on speaker.
* [7130] data counter is reset when using DUN
* [7132] audio hiccups in fm radio when sleeping
* [7147] After playing video and canceling a couple of applications
crashes and N900 slows down
* [7150] 'Wi-Fi Protected Setup compliant' connectivity issue for N900
* [7151] If pause media player using BT headset, it locks after some time
* [7152] english virtual keyboard does not have right or down keys
necessary to utilize predictive input
* [7155] entering data in blank web page fields in web pag

Re: Maemo Official Platform Bug Jar 2009.51

2009-12-20 Thread Stephen Gadsby
(continued)


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

18 bugs were confirmed -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=3293,5786,6517,6632,6752,6784,6805,6878,6931,6982,6997,7020,7034,7045,7054,7057,7070,7116
):
* [3293] Bluetooth headset (Jabra bt2020) connectivity needs re-pairing to work
* [5786] Wi-Fi Protected Setup doesn't work, is not optional, and is
used when disabled.
* [6517] MfE wont keep Exchange account updated
* [6632] Background image does not show correct rotation
* [6752] Low power/battery beep does not sound if you're on a call
* [6784] Crackling sounds when MP3 ringtone played on highest volume level
* [6805] Shutdown  Startup sound ignore master volume level (hildon-welcome)
* [6878] UK Country variant of firmware not available for download
* [6931] After installation of software last icon in More... view
has default icon instead of own one
* [6982] Spanish: Tipo de fuente cambiado a %s when switching input languages
* [6997] Camera: Wrong translation Hochformat of Portrait in German UI
* [7020] Emoticons show as [OBJ] in Virtual Keyboard
* [7034] WPA2-LEAP not available for WiFi authentication in 42.11 FW version.
* [7045] Backup: Unclear text in Restore 'backup_name'? step of restore backup
* [7054] Cannot set Regional Settings to English (Australia) or
English (New Zealand)
* [7057] supl.nokia.com not working for Networking positioning on T-Mobile USA
* [7070] Proximity sensor state not available through HAL
* [7116] /etc/pmconfig states minimum CPU frequency of 125MHz contrary
to output of scaling_available_frequencies

6 enhancements were confirmed -
( https://bugs.maemo.org/buglist.cgi?bug_id=5741,6327,6627,6646,6790,7019 ):
* [5741] Manage Views: Disabling a view removes all its widgets
* [6327] FM radio transmitter needs easy station tuning / autotune
* [6627] Add disconnect data connection function to save power
* [6646] Show Status for Physical Keyboard
* [6790] If retrying wifi connection after failure, pre-fill
previously entered password
* [7019] Release source code of getbootstate


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

5 bugs were reopened -
( https://bugs.maemo.org/buglist.cgi?bug_id=1045,5388,5708,6312,7025 ):
* [1045] Media player breaks the original sorting of songs in a CD
* [5388] Allow keyboard input to jump to an entry in a list (type ahead)
* [5708] Buffalo WHR-G54S router: Internet connection via wifi very
unreliable with maximum power saving
* [6312] Kernel oops after running some tests on the device
* [7025] Maps can't get GPS lock without netwhe GPS lock acquiring
would take longer

2 enhancements were reopened -
( https://bugs.maemo.org/buglist.cgi?bug_id=700,5386 ):
* [700] Split busybox into busybox and busybox_root
* [5386] Missing UI feature to simply disable WLAN completely


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

10 bugs were needing love -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=5173,5449,6868,7010,7049,7150,7151,6420,7147,7165
):
* [5173] HildonPickerDialog selects the first item always if appended
into shown widget
* [5449] /dev/fb0 returns invalid results from FBIO_*SCREENINFO ioctl()s
* [6868] Pulseaudio uses cpu constantly after a phone call.
* [7010] Headphones Status Icon not always displayed when plugging in headset
* [7049] MicroB browser unable to save files while device in use as mass storage
* [7150] 'Wi-Fi Protected Setup compliant' connectivity issue for N900
* [7151] If pause media player using BT headset, it locks after some time
* [6420] g++/gcc wrapper generating wrong deps
* [7147] After playing video and canceling a couple of applications
crashes and N900 slows down
* [7165] swapon FILE micro sd

0 enhancements were needing love.


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

Ten biggest open bugs by number of votes -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=6334,6615,5421,2723,5835,6350,4619,5880,5496,6766
):
1. (12%) [6334] random HW watchdog reboots (/proc/bootreason contains 32wd_to)
2. (9%) [6615] Battery Dies Under 6 Hours with Very Moderate Use (+1 this week)
3. (8%) [5421] keys when long pressed should give the blue
symbol/number (-1 this week)
4. (5%) [2723] Pushing key once causes multiple repeats
5. (3%) [5835] Mail for Exchange does not Sync all Information for
Google Contacts (+1 this week)
6. (3%) [6350] getbootstate bricks the device after 17 reboots if
there are no normal boots in between them (+1 this week)
7. (3%) [4619] Panning and selecting are mutually exclusive (+1 this week)
8. (3%) [5880] A2DP unstable when WiFi is on. (+1 this week)
9. (2%) [5496] HildonTouchSelector: No hint that there are more items
(+1 this week)
10. (2%) [6766] Bluetooth Audio Very Choppy and Stuttering (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,6357,5793,2527,6376,793,1043
):
1. (17%) [176] Ogg Vorbis support out of the box
2. (6%) [1695] Browser: Provide open link in background
3. (6%) [1635] Eduroam 

Maemo Official Applications Bug Jar 2009.51

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

As of 2009-12-21 Maemo Official Applications contains 2136 items (+92
this week),
including 583 open issues (+9 this week):
* 316 open bugs (+10 this week)
* 5 critical/blocker (-3 this week)
* 2 easyfix (no change this week)
* 61 moreinfo (+7 this week)
* 3 crash (no change this week)
* 7 patch (no change this week)
* 18 reopened (-1 this week)
* 95 unconfirmed (-2 this week)
* 267 open enhancements (-1 this week)
* 2 easyfix (no change this week)
* 6 moreinfo (+2 this week)
* 14 patch (no change this week)
* 12 reopened (+1 this week)
* 30 unconfirmed (-5 this week)

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

64 bugs were opened -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=6941,6945,6947,6949,6950,6955,6956,6957,6961,6963,6965,6966,6967,6970,6977,6978,6981,6983,6984,7007,7009,7011,7016,7024,7027,7031,7033,7037,7039,7043,7048,7051,7052,7060,7061,7062,7065,7066,7069,7081,7085,7093,7094,7100,7102,7103,7104,7115,7117,7118,7122,7124,7131,7133,7138,7139,7145,7149,7160,7163,7164,7167,7168,7171
):
* [6941] Merge contacts moves contact in different desktop view
* [6945] Skype: merged contact has duplicate phone number
* [6947] Error: ssl_error_bad_mac_read one some https-websites (e.g.
https://bugs.maemo.org)
* [6949] Delete email greyed out when opening new email message
* [6950] Restore incomplete (Communications and Calendar)
* [6955] Nokia Messaging not acquiring email settings for a valid
Nokia Messaging account
* [6956] Tag editing forced File Date and Time changes from Image
* [6957] Time zone for Ical's DSTART property is not imported correctly.
* [6961] telepathy-spirit open source?
* [6963] Some DivX/XviD videos aren't rendered correctly
* [6965] Continues playing music after removing headphones for phone
call and then ending phone call
* [6966] Passwords not being hashed out upon entry
* [6967] Character encoding information missing from IPTC tags
* [6970] Alarms list is unsorted
* [6977] Importing an updated VCard causes contact duplication
* [6978] VCard import leaves files in the filesystem
* [6981] iltalehti.fi (Flash) nettitv not working
* [6983] Show wrong Contact for a SMS after a couple of days
* [6984] Show wrong Contact for a SMS after a couple of days
* [7007] Date format picker differs for create event and jump to in agenda view
* [7009] dial pad close button
* [7011] Call UI is closed when a call is rejected
* [7016] Black squares for thumbnails in Image Viewer for up to 50
minutes when GPS cannot get a fix
* [7024] Can't identify which number the caller is using in call log
* [7027] Changing to next week is very slow
* [7031] Filemanager failed to browse and open all photos on my server via UPnP
* [7033] Snooze cannot be cancelled
* [7037] certificate manager: type-ahead (bug 5388) will not work as
input goes to background
* [7039] Not possible to search albums by typing with keyboard
* [7043] Unable to view www.ofono.org correctly when accessing for a second time
* [7048] Route Settings screen is not finger friendly
* [7051] Backup should include /home/user/.config/* by default
* [7052] Unable to see the sender's phone number used for a received sms
* [7060] Sometimes photos are very green
* [7061] Persistent No connection Banner after UPNP media server disconnection
* [7062] Video recording is very jerky
* [7065] SMS refuses to get deleted
* [7066] Phone number field does not allow + for country code
* [7069] Email delete does not delete on server
* [7081] GTalk chat have difficulty recieving messages when shifting network
* [7085] ICQ don't reconnect in case Network Failure and Switching Connection
* [7093] Pressing the email subject does nothing
* [7094] contacts import: treat newlines as separator between
different phone numbers
* [7100] Ovi maps has problems when running without SIM card and without WLAN
* [7102] Low light condition with flash causes greeness in Photos
* [7103] Lagging when starting Maemo core applications
* [7104] /usr/bin/image-viewer has a constant high cpu and mem usage
* [7115] CC field does not show all messages if it exceeds a number of
characters
* [7117] Images often cannot be found stored on the memory card,
especially when browsing for photos to add to contacts
* [7118] Images often cannot be found stored on the memory card,
especially when browsing for photos to add to contacts
* [7122] Popup versus back history UI race condition in Browser
* [7124] media player loses cover art if song changes while screen is locked
* [7131] Cursor not default to To field when forwarding a text message
* [7133] Shuffle all songs often plays a non-random sequence after the
first song
* [7138] Email body text replaced with [?]
* [7139] Replying to an email with non-ascii chars in From cuts name short
* [7145] Some photos are reported to be from 1970
* [7149] Application manager 

Re: Maemo Official Applications Bug Jar 2009.51

2009-12-20 Thread Stephen Gadsby
(continued)

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

23 bugs were confirmed -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=5348,5380,5905,6700,6706,6712,6733,6769,6778,6791,6811,6838,6893,6907,6941,6945,6966,6981,7007,7011,7037,7043,7052
):
* [5348] Trouble connecting to Fritz!Box SIP server
* [5380] Dialer does not accept SS (3GPP TS 22.030) dial strings
* [5905] ovi maps brings up Select connection dialog relentlessly
* [6700] Semicolon in To field should be ignored when sending a message
* [6706] Return button of Virtual keyboard in X Terminal does not work reliably
* [6712] Phone number fields in My information cannot be removed or edited
* [6733] gmail status set to away when skype status set to invisible
* [6769] Can't  answer a phone call with a short caller ID
* [6778] Clear Conversation should close window
* [6791] Delete and Move context menu entries missing for files on
memory card
* [6811] Incorrect entries in the Birthday Smart Calendar
* [6838] Portrait images are scaled to 480px height (instead of width)
when displayed in portrait mode
* [6893] Mobile Icon for Mobile Number
* [6907] Media Player widget starts music after Phone call ends
* [6941] Merge contacts moves contact in different desktop view
* [6945] Skype: merged contact has duplicate phone number
* [6966] Passwords not being hashed out upon entry
* [6981] iltalehti.fi (Flash) nettitv not working
* [7007] Date format picker differs for create event and jump to in agenda view
* [7011] Call UI is closed when a call is rejected
* [7037] certificate manager: type-ahead (bug 5388) will not work as
input goes to background
* [7043] Unable to view www.ofono.org correctly when accessing for a second time
* [7052] Unable to see the sender's phone number used for a received sms

9 enhancements were confirmed -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=6317,6532,6850,6924,6938,7018,7038,7109,7127
):
* [6317] map search feature should set focus to search text input field
* [6532] Stores Middle Names but does not allow them to be edited / viewed
* [6850] Contacts does not allow to show only non-IM contacts
* [6924] No indication about call when I press yellow envelope
* [6938] Add UI to send SMS using SIP
* [7018] Loading splash screen should provide UI option to switch to
other applications
* [7038] Be able to disable call capabilities on some network connections
* [7109] Mark all read on folder
* [7127] Add option to disable smiley icons in conversations


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

2 bugs were reopened -
( https://bugs.maemo.org/buglist.cgi?bug_id=6441,6700 ):
* [6441] telepathy-gabble sometimes stucks in busyloop after waking the device
* [6700] Semicolon in To field should be ignored when sending a message

2 enhancements were reopened -
( https://bugs.maemo.org/buglist.cgi?bug_id=5300,6836 ):
* [5300] Support sending files via Bluetooth in file manager
* [6836] Please support birthdays with unknown years


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

10 bugs were needing love -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=7168,6029,6760,6871,7163,7164,7160,7124,7094,7122
):
* [7168] Camera doesn't rotate images taken in portrait mode
* [6029] UPnP shares become unavailable when automatically reconnecting to WiFi
* [6760] Image Viewer shows items that do not exist and/or duplicate
* [6871] Next song should be prefetched when UPNP is used as source
* [7163] A Reply-To header with the same content as From is always added
* [7164] osso-xterm dark grey color black in Maemo 5
* [7160] Camera app hardcodes and requires FAT partition
* [7124] media player loses cover art if song changes while screen is locked
* [7094] contacts import: treat newlines as separator between
different phone numbers
* [7122] Popup versus back history UI race condition in Browser

7 enhancements were needing love -
( https://bugs.maemo.org/buglist.cgi?bug_id=5817,5844,6954,6968,7108,7153,7125
):
* [5817] Sorting rss feeds by non-read or keep-for-later
* [5844] UPNP server should have more visiblitiy in Media Player UI
* [6954] Media player does not pause playback when phone call is answered
* [6968] Media Player doesnt honor aspect ratio information
* [7108] Change between 2 audio tracks in a divx video file
* [7153] Built-in MMC scripts only support FAT-formatted
* [7125] Ability to Search/Sort Notes


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

Ten biggest open bugs by number of votes -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=5357,5337,3888,3557,5480,3700,5417,2962,6819,5824
):
1. (17%) [5357] Does not accept GSM (USSD) Codes starting with *#
2. (13%) [5337] Maps can't get GPS lock without network connection
when the GPS lock acquiring would take longer
3. (10%) [3888] IMAP-IDLE not working
4. (3%) [3557] Browser tops its windows by itself (N8x0)
5. (3%) [5480] undo/un-merge merged contacts (+1 this week)
6. (2%) [3700] Put signatures not on top in replies (thereby not
forcing top-post) (-1 this week)
7. (2%) [5417] Delete button greyed out when opening from notification popup
8. (2%) [2962] Not able to open 

maemo.org Extras Bug Jar 2009.51

2009-12-20 Thread Stephen Gadsby
A Quick Look at Extras in Bugzilla (https://bugs.maemo.org/).
2009-12-14 through 2009-12-20

As of 2009-12-21 Extras contains 886 items (+50 this week),
including 392 open issues (+15 this week):
* 247 open bugs (+9 this week)
* 14 critical/blocker (+1 this week)
* 1 easyfix (no change this week)
* 3 moreinfo (-1 this week)
* 1 crash (no change this week)
* 5 patch (no change this week)
* 2 reopened (no change this week)
* 102 unconfirmed (+11 this week)
* 145 open enhancements (+6 this week)
* 1 easyfix (no change this week)
* 0 moreinfo (no change this week)
* 1 patch (no change this week)
* 0 reopened (no change this week)
* 36 unconfirmed (+4 this week)

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

35 bugs were opened -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=6944,6946,6951,6958,6964,6971,6974,6980,6985,6986,6987,6988,6998,7005,7021,7035,7041,7059,7064,7071,7074,7076,7086,7087,7089,7090,7119,7121,7123,7137,7146,7148,7154,7162,7170
):
* [6944] [FM Radio] Stations are not saved
* [6946] [OmWeather] Multiple taps required to come out of OMWeather
Settings dialog from the desktop applet
* [6951] [UQM] Application does not exit after selecting Quit. makes
desktop inaccessible.
* [6958] [Conboy] Please stop installing the desktop file as
.inactive, and moving it to .desktop in the postinst!
* [6964] [FM Radio] possible low level problems after disabling
bluetooth while radio is playing
* [6971] [MooBox] Incorrect wording in the package description
* [6974] [Wormux] no network play
* [6980] [Ukeyboard] Bugs In The Arabic Hardware Keyboard
* [6985] [Pyrecipe] Unable to save shopping list
* [6986] [ejpi] Right side pie menus do not show up
* [6987] [FM Radio] FM radio RDS character set missing Ö
* [6988] [ejpi] Must wait for menu to appear for button to take affect
* [6998] [OmWeather] in change from horiz. to vertical layout, 'tool'
anchor doesn't move
* [7005] [Hermes] Something went wrong: Cannot write P in JPEG.
* [7021] [PyGTKEditor] Unable to save files
* [7035] [Personal Photo Frame] Single Photo Mode do not allow to
choose user photos
* [7041] [FM Radio] if use fm radio bluetooth will be automatically
actived in next reboot.
* [7059] [Transmission] Starting Transmission for the first time fails
* [7064] [Transmission] Starting Transmission for the first time fails
* [7071] [Xournal] Xournal is not optified
* [7074] [PyMaemo] Provide packages for PyWebKitGtk
* [7076] [openvpn] Copy ALL files
* [7086] [FM Radio] FMRadio mutes speakers
* [7087] [Panucci] Audio playback freezes during screen rotation
* [7089] [GBoggle] timer doesn't stop when application is not visible
* [7090] [GBoggle] misleading preferences button
* [7119] [BurgerSpace] BurgerSpace shows X windows cursor at launch
* [7121] [FM Radio] fm radio doesn't work in silent profile mode
* [7123] [maemo-org theme] Theme still apears after uninstall
* [7137] [Recorder] Random crashes
* [7146] [Liqbase] The Reset button is functional, but not visible.
* [7148] [Personal Photo Frame] only set number of photos on loop
* [7154] [FM Radio] Volume speakers, activation bluetooth
* [7162] [gPodder] Some podcasts can't be played
* [7170] [maemo-org theme] Unable to uninstall fully

Of these, 4 were critical/blockers -
( https://bugs.maemo.org/buglist.cgi?bug_id=6944,6964,7086,7137 ):
* [6944] [FM Radio] Stations are not saved
* [6964] [FM Radio] possible low level problems after disabling
bluetooth while radio is playing
* [7086] [FM Radio] FMRadio mutes speakers
* [7137] [Recorder] Random crashes

15 enhancements were opened -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=6990,6991,6992,6994,6995,7003,7013,7055,7056,7078,7083,7084,7088,7099,7120
):
* [6990] [Hermes] Request for LinkedIn as data source
* [6991] [Hermes] Request for Plaxo as data source
* [6992] [Hermes] Request for LiveJournal as data source
* [6994] [Hermes] Request for MySpace as data source
* [6995] [Hermes] Request for Hyves as data source
* [7003] [Hermes] Explain documentation required for new provider
requests on website
* [7013] [Hermes] Should fetch mails from Facebook
* [7055] [Panucci] Add Panucci to Transifex
* [7056] [Conboy] Sync with N900 notes to get the sync functioning with outlook
* [7078] [openvpn] Add a field VPN-Alias for subdirectory in /etc/openvpn/
* [7083] [PasswordSafe] Need import password from other formats
* [7084] [TouchSearch] keyboard enter key don't do anything
* [7088] [PyMaemo] add PyMaemo binding for calendar-backend
* [7099] [Conversations Inbox] No way to open conversation view from the widget
* [7120] [BurgerSpace] BurgerSpace should pause when in background


==--- Resolved Bugs ---==

16 bugs were resolved fixed -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=4257,5861,6011,6190,6322,6504,6855,6890,6896,6899,6915,6944,6971,7076,7086,7119
):
* [4257] [Canola] Playlists get added to themselves, recursively
* [5861] [ejpi] Without an App Menu, Copy and Paste aren't 

maemo.org Website Bug Jar 2009.51

2009-12-20 Thread Stephen Gadsby
A Quick Look at maemo.org Website in Bugzilla (https://bugs.maemo.org/).
2009-12-14 through 2009-12-20

As of 2009-12-21 maemo.org Website contains 1303 items (+17 this week),
including 232 open issues (+3 this week):
* 162 open bugs (+2 this week)
* 5 critical/blocker (no change this week)
* 4 easyfix (no change this week)
* 3 moreinfo (+1 this week)
* 0 crash (no change this week)
* 1 patch (no change this week)
* 4 reopened (no change this week)
* 43 unconfirmed (+1 this week)
* 70 open enhancements (+1 this week)
* 0 easyfix (no change this week)
* 0 moreinfo (no change this week)
* 2 patch (no change this week)
* 1 reopened (no change this week)
* 21 unconfirmed (+1 this week)

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

13 bugs were opened -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=6979,7008,7030,7032,7040,7044,7072,7080,7091,7110,7113,7136,7141
):
* [6979] Search box doesn't get you out of error pages.
* [7008] user not able to post on forum
* [7030] Profile component tries to load nonexistant CSS file
* [7032] Login icon has strange url
* [7040] Make sure all site sidebar linked pages are accessible via
some other means than the sidebar
* [7044] Not-so-Hot Software -- Shown Ratings not Actual Ratings
* [7072] No Single Sign On / too many passwords for maemo.org services
* [7080] Simplify searching for a bug in the selected product
* [7091] 500 character description limit is unjustified (and it doesn't work)
* [7110] Provide a ctags-like web URL interface for API documentation
* [7113] Link from individual karma components to the
component-specific profile list
* [7136] git.maemo.org https certificate expired on 16/12/09 00:59
* [7141] Fremantle Tools repository not properly signed

0 bugs were critical/blocker.

4 enhancements were opened -
( https://bugs.maemo.org/buglist.cgi?bug_id=6952,7022,7107,7135 ):
* [6952] Add possibility to save bugzilla styled searches
* [7022] maemo.org on downloads category links when viewing list
* [7107] Add http://bugs.maemo.org/[bug-id] redirection
* [7135] Setup Liqbase product


==--- Resolved Bugs ---==

6 bugs were resolved fixed -
( https://bugs.maemo.org/buglist.cgi?bug_id=4200,5134,5612,6841,6844,6866 ):
* [4200] preferential voting should warn about no js
* [5134] Voting (thumbs up or down) not possible on news page
* [5612] 404 page still has the Nokia logo in the footer
* [6841] Sandbox proposals won't jump directly to Under Vote
* [6844] Bugzilla's OS field should default to Maemo, not autodetected
* [6866] E40DC434616730BD GPG key missing from keyservers

0 bugs were resolved invalid.

1 bug was resolved wontfix -
( https://bugs.maemo.org/buglist.cgi?bug_id=6049 ):
* [6049] Download page references unrelated product

1 bug was resolved duplicate -
( https://bugs.maemo.org/buglist.cgi?bug_id=7072 ):
* [7072] No Single Sign On / too many passwords for maemo.org services

3 bugs were resolved worksforme -
( https://bugs.maemo.org/buglist.cgi?bug_id=4407,6499,6851 ):
* [4407] News item summary should show number of comments
* [6499] downloads should link back to project homepages
* [6851] No way to comment ideas/solutions in brainstorm

0 bugs were resolved moved.


==--- Resolved Enhancements ---==

3 enhancements were resolved fixed -
( https://bugs.maemo.org/buglist.cgi?bug_id=4303,4347,7135 ):
* [4303] Multi-line list items (sidebar menus) create odd breaks in lists...
* [4347] Link to profile list from individual profile pages
* [7135] Setup Liqbase product

0 enhancements were resolved invalid.

0 enhancements were resolved wontfix.

0 enhancements were resolved duplicate.

0 enhancements were resolved worksforme.

1 enhancement was resolved moved -
( https://bugs.maemo.org/buglist.cgi?bug_id=6852 ):
* [6852] No way to get notifications about changes in brainstorm


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

2 bugs were confirmed -
( https://bugs.maemo.org/buglist.cgi?bug_id=6866,7136 ):
* [6866] E40DC434616730BD GPG key missing from keyservers
* [7136] git.maemo.org https certificate expired on 16/12/09 00:59

1 enhancement was confirmed -
( https://bugs.maemo.org/buglist.cgi?bug_id=5013 ):
* [5013] Tie Gravatar to profile


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

2 bugs were reopened -
( https://bugs.maemo.org/buglist.cgi?bug_id=4407,6841 ):
* [4407] News item summary should show number of comments
* [6841] Sandbox proposals won't jump directly to Under Vote

1 enhancement was reopened -
( https://bugs.maemo.org/buglist.cgi?bug_id=4347 ):
* [4347] Link to profile list from individual profile pages


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

10 bugs were needing love -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=5174,4614,5105,6567,6902,6979,4502,4531,5220,4489
):
* [5174] git.maemo.org does not allow rebasing master branch
* [4614] Logged in name not aligned, may benefit from Welcome prefix
* [5105] User's name sometimes gets doubled
* [6567] Inconsistency in the arrangement of the downloads page.
* [6902]