RE: How to get kinetic scrolling working using Qt creator

2010-06-06 Thread Ram Kurvakat
just a quick example that would work, see if it helps.

 imageLabel = new QLabel;
 QImage image(someimagefile);
 imageLabel-setPixmap(QPixmap::fromImage(image));

 _scrollForMapPage = new QScrollArea;
 _scrollForMapPage-setWidget(imageLabel);

 _mapWindow = new QMainWindow ( this );
 _mapWindow-setCentralWidget(_scrollForMapPage);
 _mapWindow-show();

you dont need to set any property as Daniil set most widgets have kinetic 
scrolling by default like ListWidget/TableWidget/ScrollArea.

cheers
-krk969

- Original Message -
From: Sudheer K.
Sent: 06/06/10 05:08 AM
To: fel...@crochik.com, daniil.iva...@gmail.com
Subject: RE: How to get kinetic scrolling working using Qt creator

 Anyone know of any applications that are using Qt Creator (.ui files) and were 
successful in implementing kinetic scrolling? Maybe I can look at the forms to 
see what I am doing wrong here.

Thanks,
Sudheer
-
From: scifi@hotmail.com
To: fel...@crochik.com; daniil.iva...@gmail.com
CC: maemo-developers@maemo.org
Subject: RE: How to get kinetic scrolling working using Qt creator
Date: Sat, 5 Jun 2010 20:57:38 -0700


Yes, I am compiling on FREMANTLE_ARMEL and copying to device and testing it :)

Another thing is I can display the scrollbar using verticalscrollbarpolicy 
but it doesn't actually scroll anything.
-
From: fel...@crochik.com
To: scifi@hotmail.com; daniil.iva...@gmail.com
CC: maemo-developers@maemo.org
Subject: RE: How to get kinetic scrolling working using Qt creator
Date: Sat, 5 Jun 2010 23:52:45 -0400

 One silly question: are you trying it on the actual device? It won't work on 
the simulator or if you compile for the desktop. 

- Original message - 
 
 Hi Daniil, 
 
 I could not get the scrolling to work by using QScrollArea, even after 
 removing the FingerScrollable property. Any suggestions on what I should 
 change? 
 
 I have tried setting WidgetResizable to true on QScrollArea, still 
 scrolling does not work. 
 
 If it matters, there are sizes I have set in my form. 
 
 ConfigWindow (QMainWindow) - 800 x 480 
 centralWidget (QWidget) - 800 x 457 
 scrollArea (QScrollArea) - 800 x 550 
 scrollAreaWidgetContents (QWidget) - 798 x 548 (this can not be 
 modified). 
 
 All the examples I have seen (even on Qt site) use custom code to create 
 QWidget or QWindow. But I am using Qt creator to create the form and I 
 couldn't find much help. 
 
 
  Date: Sat, 5 Jun 2010 21:52:29 +0300 
  Subject: Re: How to get kinetic scrolling working using Qt creator 
  From: daniil.iva...@gmail.com
  To: scifi@hotmail.com
  CC: maemo-developers@maemo.org
  
  Hi Sudheer! 
  
  There is no such property as FingerScrollable and kinetic srolling 
  is enabled by default for QScrollArea 
  http://doc.qt.nokia.com/qt-maemo-4.6/qabstractkineticscroller.html#details 
  http://doc.qt.nokia.com/qt-maemo-4.6/qabstractkineticscroller.html#details 
  
  Thanks, Daniil. 
  
  On Sat, Jun 5, 2010 at 8:10 PM, Sudheer K. scifi@hotmail.com 
  wrote: 
   Hi All, 
   
   I have created a QScrollArea to a QMainWindow in a form using Qt 
   Creator. I have set the dynamic property FingerScrollable to true 
   (bool) for QMainWindow, QScrollArea and the contents of QScrollArea. 
   
   This is the structure of my form objects in the format objectname 
   (ClassName): 
   
   ConfigWindow (QMainWindow) -- centralWidget (QWidget) -- scrollArea 
   (QScrollArea) -- scrollAreaWidgetContents (QWidget) --groupBox 
   (QGroupBox). 
   
   I have set the FingerScrollable property to true for all these 
   objects. But still I am not able to get kinetic scrolling working 
   for the form. Am I missing something? 
    
   Hotmail is redefining busy with tools for the New Busy. Get more 
   from your inbox. See how. 
   ___ 
   maemo-developers mailing list 
   maemo-developers@maemo.org
   https://lists.maemo.org/mailman/listinfo/maemo-developers 
   https://lists.maemo.org/mailman/listinfo/maemo-developers 
   
   
 
 _ 
 The New Busy is not the too busy. Combine all your e-mail accounts with 
 Hotmail. 
 http://www.windowslive.com/campaign/thenewbusy?tile=multiaccountocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_4
  
 http://www.windowslive.com/campaign/thenewbusy?tile=multiaccountocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_4
  



-
Hotmail has tools for the New Busy. Search, chat and e-mail from your inbox. 
Learn more. 
http://www.windowslive.com/campaign/thenewbusy?ocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_1
 
-
Hotmail is redefining busy with tools for the New Busy. Get more from your 
inbox. See how. 

Re: How to get kinetic scrolling working using Qt creator

2010-06-06 Thread Daniil Ivanov
Hi Sudheer!

  Make sure (with dpkg -l libqt4*) that you are using Qt = 4.6.2.

Thanks, Daniil.

On Sun, Jun 6, 2010 at 11:43 AM, Ram Kurvakat rkma...@gmx.com wrote:
 just a quick example that would work, see if it helps.

     imageLabel = new QLabel;

     QImage image(someimagefile);

     imageLabel-setPixmap(QPixmap::fromImage(image));

     _scrollForMapPage = new QScrollArea;

     _scrollForMapPage-setWidget(imageLabel);

     _mapWindow = new QMainWindow ( this );

     _mapWindow-setCentralWidget(_scrollForMapPage);

     _mapWindow-show();

 you dont need to set any property as Daniil set most widgets have kinetic
 scrolling by default like ListWidget/TableWidget/ScrollArea.
 cheers
 -krk969

 - Original Message -

 From: Sudheer K.

 Sent: 06/06/10 05:08 AM

 To: fel...@crochik.com, daniil.iva...@gmail.com

 Subject: RE: How to get kinetic scrolling working using Qt creator

 Anyone know of any applications that are using Qt Creator (.ui files) and
 were successful in implementing kinetic scrolling? Maybe I can look at the
 forms to see what I am doing wrong here.

 Thanks,
 Sudheer
 
 From: scifi@hotmail.com
 To: fel...@crochik.com; daniil.iva...@gmail.com
 CC: maemo-developers@maemo.org
 Subject: RE: How to get kinetic scrolling working using Qt creator
 Date: Sat, 5 Jun 2010 20:57:38 -0700


 Yes, I am compiling on FREMANTLE_ARMEL and copying to device and testing it
 :)

 Another thing is I can display the scrollbar using verticalscrollbarpolicy
 but it doesn't actually scroll anything.
 
 From: fel...@crochik.com
 To: scifi@hotmail.com; daniil.iva...@gmail.com
 CC: maemo-developers@maemo.org
 Subject: RE: How to get kinetic scrolling working using Qt creator
 Date: Sat, 5 Jun 2010 23:52:45 -0400

 One silly question: are you trying it on the actual device? It won't work on
 the simulator or if you compile for the desktop.

 - Original message -

 Hi Daniil,

 I could not get the scrolling to work by using QScrollArea, even after
 removing the FingerScrollable property. Any suggestions on what I should
 change?

 I have tried setting WidgetResizable to true on QScrollArea, still
 scrolling does not work.

 If it matters, there are sizes I have set in my form.

  ConfigWindow (QMainWindow) - 800 x 480
  centralWidget (QWidget) - 800 x 457
  scrollArea (QScrollArea) - 800 x 550
  scrollAreaWidgetContents (QWidget) - 798 x 548 (this can not be
 modified).

 All the examples I have seen (even on Qt site) use custom code to create
 QWidget or QWindow. But I am using Qt creator to create the form and I
 couldn't find much help.


  Date: Sat, 5 Jun 2010 21:52:29 +0300
  Subject: Re: How to get kinetic scrolling working using Qt creator
  From: daniil.iva...@gmail.com
  To: scifi@hotmail.com
  CC: maemo-developers@maemo.org
 
  Hi Sudheer!
 
  There is no such property as FingerScrollable and kinetic srolling
  is enabled by default for QScrollArea
 
  http://doc.qt.nokia.com/qt-maemo-4.6/qabstractkineticscroller.html#details
 
  Thanks, Daniil.
 
  On Sat, Jun 5, 2010 at 8:10 PM, Sudheer K. scifi@hotmail.com
  wrote:
   Hi All,
  
   I have created a QScrollArea to a QMainWindow in a form using Qt
   Creator. I have set the dynamic property FingerScrollable to true
   (bool) for QMainWindow, QScrollArea and the contents of QScrollArea.
  
   This is the structure of my form objects in the format objectname
   (ClassName):
  
   ConfigWindow (QMainWindow) -- centralWidget (QWidget) -- scrollArea
   (QScrollArea) -- scrollAreaWidgetContents (QWidget) --groupBox
   (QGroupBox).
  
   I have set the FingerScrollable property to true for all these
   objects. But still I am not able to get kinetic scrolling working
   for the form.  Am I missing something?
   
   Hotmail is redefining busy with tools for the New Busy. Get more
   from your inbox. See how.
   ___
   maemo-developers mailing list
   maemo-developers@maemo.org
   https://lists.maemo.org/mailman/listinfo/maemo-developers
  
  

 _
 The New Busy is not the too busy. Combine all your e-mail accounts with
 Hotmail.

 http://www.windowslive.com/campaign/thenewbusy?tile=multiaccountocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_4



 
 Hotmail has tools for the New Busy. Search, chat and e-mail from your inbox.
 Learn more.
 
 Hotmail is redefining busy with tools for the New Busy. Get more from your
 inbox. See how.




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


RE: How to get kinetic scrolling working using Qt creator

2010-06-06 Thread Felipe Crochik
Also make sure that the widget (imageLabel on this example) is larger than
the scrollarea contents - if you just load a small image the scroll won't
work. 

 

Even when you set the scrollbarpolicy to show always it will not scroll
anything unless the widget used on the QScrollArea::setWidget is larger than
the contents area.

 

  _  

From: Ram Kurvakat [mailto:rkma...@gmx.com] 
Sent: Sunday, June 06, 2010 4:44 AM
To: Maemo Dev Mailing List; Sudheer K.; fel...@crochik.com;
daniil.iva...@gmail.com
Subject: RE: How to get kinetic scrolling working using Qt creator

 

just a quick example that would work, see if it helps.

 

imageLabel = new QLabel;

QImage image(someimagefile);

imageLabel-setPixmap(QPixmap::fromImage(image));

 

_scrollForMapPage = new QScrollArea;

_scrollForMapPage-setWidget(imageLabel);

 

_mapWindow = new QMainWindow ( this );

_mapWindow-setCentralWidget(_scrollForMapPage);

_mapWindow-show();

 

you dont need to set any property as Daniil set most widgets have kinetic
scrolling by default like ListWidget/TableWidget/ScrollArea.

 

cheers

-krk969

 

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


Error deploying and running a Qt application on N900 using QtDeveloper

2010-06-06 Thread Andrea Grandi
Hi,

I'm trying to deploy and run a simple application to my N900 device
using Nokia SDK beta.
I've configured the SSH access on device and I've configured QtCreator
to connect to it.

Using the Test button I get this:

Device configuration successful.
Hardware architecture: armv7l
Kernel version: 2.6.28-omap1
List of installed Qt packages:
libqt4-core 4.6.2
libqt4-dbus 4.6.2
libqt4-gui 4.6.2
libqt4-maemo5 4.6.2
libqt4-multimedia 4.6.2
libqt4-network 4.6.2
libqt4-opengl 4.6.2
libqt4-phonon 4.6.2
libqt4-sql 4.6.2
libqt4-sql-sqlite 4.6.2
libqt4-svg 4.6.2
libqt4-webkit 4.6.2
libqt4-xml 4.6.2
libqt4-xmlpatterns 4.6.2

When I try to run my application on my N900 I get this:

Files to deploy: /home/andrea/Documents/sviluppo/msoma-build/msoma/msoma.
Deployment finished.
Starting remote application.
chmod u+x /root/msoma; source /etc/profile;  /root/msoma
/root/msoma: line 1: syntax error: ( unexpected (expecting ))
Nokia-N900:~#
Remote process finished successfully.

what's the problem? Is this an error on my application or simply a
deploy problem?
Please note that I can run the application on the emulator without any
problem, I just cannot run this on my N900.

Thanks for your help.

-- 
Andrea Grandi
email: a.grandi [AT] gmail [DOT] com
website: http://www.andreagrandi.it
PGP Key: http://www.andreagrandi.it/pgp_key.asc
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Error deploying and running a Qt application on N900 using QtDeveloper

2010-06-06 Thread daniel wilms
Hi,


 Files to deploy: /home/andrea/Documents/sviluppo/msoma-build/msoma/msoma.
 Deployment finished.
 Starting remote application.
 chmod u+x /root/msoma; source /etc/profile;  /root/msoma
 /root/msoma: line 1: syntax error: ( unexpected (expecting ))
 Nokia-N900:~#
 Remote process finished successfully.


it sounds like the application is not compiled with MADDE for the N900.
Usually then this error occurs. Maybe clean, rebuild and deploy then? Check
in the build if it uses MADDE. You can see that in the paths in the build
output.

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


Re: Error deploying and running a Qt application on N900 using QtDeveloper

2010-06-06 Thread Andrea Grandi
Hi,

On 6 June 2010 14:55, daniel wilms danielwi...@googlemail.com wrote:
 it sounds like the application is not compiled with MADDE for the N900.
 Usually then this error occurs. Maybe clean, rebuild and deploy then? Check
 in the build if it uses MADDE. You can see that in the paths in the build
 output.

I don't know if I'm using MADDE or not, I just use QtCreator. I've
found what the problem was by the way:

the directory /home/andrea/Documents/sviluppo/msoma-build was used for
every builds. Now I've set different build path for each target:

/home/andrea/Documents/sviluppo/msoma-build-desktop
/home/andrea/Documents/sviluppo/msoma-build-simulator
/home/andrea/Documents/sviluppo/msoma-build-n900

so I don't have any problem anymore.

I think that QtCreator should set them automatically. There is not any
sense to use the same build directory for ALL, since it can result in
these kind of errors.

Regards,

-- 
Andrea Grandi
email: a.grandi [AT] gmail [DOT] com
website: http://www.andreagrandi.it
PGP Key: http://www.andreagrandi.it/pgp_key.asc
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Quality assurance of stable software: my battery drained in few hours

2010-06-06 Thread Jan Knutar
 Doesn't the userland carry some sort of process monitoring, killing
 malignant processes ? If not, we should develop something like this
 for MeeGo.

It's pretty hard to find out what's eating the battery on N900. First 
you have decide that the battery is being consumed too fast. The default 
charge meter occasionally realizes it's very wrong, and rapidly 
readjusts itself, giving potential misreadings there. bq27200 certainly 
helps there, though there's no production quality software available 
to use it yet. Nokia Energy Profiler still shines with its absence ;)

After that, running powertop (oh, oops, removed from the firmware images 
early on) is nice for finding processes that consume too much CPU /in 
idle/. Normal top can only find processes that just eat too much CPU 
alltogether.

If 3G internet connection is active, then it's a good idea to monitor it 
for traffic. If there's traffic moving occasionally (one packet every 
5-10 seconds seems to be enough to keep the power usage high enough to 
die in 6 hours), tcpdump can help find out what kind of traffic is 
moving and to where. Finding out what app is responsible almost needs 
lsof or similar.

Then the driver bugs, wlan can often wedge itself into consuming 
enormous amounts of power, /especially/ when it's /not/ used/active. 
'ifconfig wlan0 down' often helps with the runaway wlan issue.

Personally the most common causes for runaway power consumption is when 
someone tries to bruteforce my ssh password on the phone (which 
excercises the internet connection and also the cpu heavily), and the 
wlan bug.

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


Re: Quality assurance of stable software: my battery drained in few hours

2010-06-06 Thread Ian Stirling

Jan Knutar wrote:

Doesn't the userland carry some sort of process monitoring, killing
malignant processes ? If not, we should develop something like this
for MeeGo.


It's pretty hard to find out what's eating the battery on N900. First 
you have decide that the battery is being consumed too fast. The default 
charge meter occasionally realizes it's very wrong, and rapidly 
readjusts itself, giving potential misreadings there. bq27200 certainly 
helps there, though there's no production quality software available 
to use it yet. Nokia Energy Profiler still shines with its absence ;)


I'm trying to develop something like this.
An energy profiler.

The ideal would be 'top' - sorted by power use.
But this is hard. :)

Initial stages are looking like something rather more modest.
Basically porportion out to every job that ran in a measured period a 
best guess at a 'fair' proportion of the power use during that period.


Further break this down by subsystem.
It's not 'fair' for example to count the power usage of xterm as very 
high, due to the backlight/display being on, when that's the users fault.



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


hildon file chooser dialog

2010-06-06 Thread ds
Hello,

I have a problem with hildon file chooser dialog in scratchbox. I can
not test in N900:-)

I use simple code

hildon_file_chooser_dialog_new((GtkWindow*)window,GTK_FILE_CHOOSER_ACTION_SAVE);
GtkFileFilter *filter=gtk_file_filter_new();
gtk_file_filter_add_pattern (filter,*.png);
gtk_file_chooser_set_filter (GTK_FILE_CHOOSER (fdialog),filter);

gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (fdialog),
nicedraw);
gtk_widget_show_all(GTK_WIDGET(fdialog));
if (gtk_dialog_run (GTK_DIALOG (fdialog)) == GTK_RESPONSE_OK) {
SaveToFile=TRUE;
char nn[150];
char *filename;
filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (fdialog));
g_stpcpy(nn,filename);
g_free (filename);


Only in case I directly press SAVE when the dialog is open, I get an
corrupted filename. If I first change location in the dialog everything
works fine.

Is this only a problem in scratchbox. I used X86 target and run it in
the full maemo GUI. My application was installed with the GUI installer.

Thanks a lot for any hint

Detlef

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


Re: hildon file chooser dialog

2010-06-06 Thread Aniello Del Sorbo
On 6 June 2010 06:40, ds d...@physik.de wrote:

 Hello,

 I have a problem with hildon file chooser dialog in scratchbox. I can
 not test in N900:-)

 I use simple code


 hildon_file_chooser_dialog_new((GtkWindow*)window,GTK_FILE_CHOOSER_ACTION_SAVE);
 GtkFileFilter *filter=gtk_file_filter_new();
 gtk_file_filter_add_pattern (filter,*.png);
 gtk_file_chooser_set_filter (GTK_FILE_CHOOSER (fdialog),filter);

 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (fdialog),
 nicedraw);
 gtk_widget_show_all(GTK_WIDGET(fdialog));
 if (gtk_dialog_run (GTK_DIALOG (fdialog)) == GTK_RESPONSE_OK) {
 SaveToFile=TRUE;
 char nn[150];
 char *filename;
 filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (fdialog));
 g_stpcpy(nn,filename);
 g_free (filename);


 Only in case I directly press SAVE when the dialog is open, I get an
 corrupted filename. If I first change location in the dialog everything
 works fine.

 Is this only a problem in scratchbox. I used X86 target and run it in
 the full maemo GUI. My application was installed with the GUI installer.

 Thanks a lot for any hint

 Detlef


Probably you've got to set the default directory with a call like:

 gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER
(dialog), default_path);

Where default path should point (usually) to user's Documents
(/home/user/MyDocs/.documents)

If you don't do that, or pass a wrong path, it'll default to the root
directory (/) and it'll behave like you described.

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


Re: Quality assurance of stable software: my battery drained in few hours

2010-06-06 Thread Robin Burchell
On Sun, Jun 6, 2010 at 2:23 PM, Ian Stirling maemo-de...@mauve.plus.com wrote:
 It's pretty hard to find out what's eating the battery on N900. First you
 have decide that the battery is being consumed too fast. The default charge
 meter occasionally realizes it's very wrong, and rapidly readjusts itself,
 giving potential misreadings there. bq27200 certainly helps there, though
 there's no production quality software available to use it yet. Nokia
 Energy Profiler still shines with its absence ;)

 I'm trying to develop something like this.
 An energy profiler.

 The ideal would be 'top' - sorted by power use.
 But this is hard. :)

You mean, like, powertop? http://en.wikipedia.org/wiki/PowerTOP


Robin Burchell
mob: +447702671419
msn: m...@viroteck.net
irc: w00t @ irc.freenode.net
twr: http://twitter.com/w00teh
lac: http://identi.ca/w00t
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Quality assurance of stable software: my battery drained in few hours

2010-06-06 Thread Ian Stirling

Robin Burchell wrote:

On Sun, Jun 6, 2010 at 2:23 PM, Ian Stirling maemo-de...@mauve.plus.com wrote:

It's pretty hard to find out what's eating the battery on N900. First you
have decide that the battery is being consumed too fast. The default charge
meter occasionally realizes it's very wrong, and rapidly readjusts itself,
giving potential misreadings there. bq27200 certainly helps there, though
there's no production quality software available to use it yet. Nokia
Energy Profiler still shines with its absence ;)

I'm trying to develop something like this.
An energy profiler.

The ideal would be 'top' - sorted by power use.
But this is hard. :)


You mean, like, powertop? http://en.wikipedia.org/wiki/PowerTOP


No, fairly unlike powertop.

Powertop sorts by wakeups, which is not useless.

Consider a compute intensive task that uses 99.95% of the CPU.
At the same time, you've got a lightweight task that polls some 
descriptor 10 times a second.


This will appear above the application that's really causing most 
battery drain.


Powertops metric - wakeups per second - is arguably for some loads 
better than top, but it can be horribly misleading for a number of reasons.


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


Re: hildon file chooser dialog

2010-06-06 Thread ds
Thanks a lot for your reply.

I tried, but I can not pass the correct path.

If I pass /home/user/MyDocs/.documents 
it is falling back to /

if I pass /home/user/MyDocs/
it goes into MyDocs, but I can not change to images or other
directories.

My guess is: it is a scratchbox problem.

The behaviour on diablo (N800) was, that you did not have to
pass a
current folder, and it was using the correct one
(/home/user/MyDocs) but
with the images directory and everything else present.

Detlef


Am Sonntag, den 06.06.2010, 08:58 -0700 schrieb Aniello Del Sorbo:
 On 6 June 2010 06:40, ds d...@physik.de wrote:
 Hello,
 
 I have a problem with hildon file chooser dialog in
 scratchbox. I can
 not test in N900:-)
 
 I use simple code
 
 
 hildon_file_chooser_dialog_new((GtkWindow*)window,GTK_FILE_CHOOSER_ACTION_SAVE);
 GtkFileFilter *filter=gtk_file_filter_new();
 gtk_file_filter_add_pattern (filter,*.png);
 gtk_file_chooser_set_filter (GTK_FILE_CHOOSER
 (fdialog),filter);
 
 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (fdialog),
 nicedraw);
 gtk_widget_show_all(GTK_WIDGET(fdialog));
 if (gtk_dialog_run (GTK_DIALOG (fdialog)) == GTK_RESPONSE_OK)
 {
 SaveToFile=TRUE;
 char nn[150];
 char *filename;
 filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER
 (fdialog));
 g_stpcpy(nn,filename);
 g_free (filename);
 
 
 Only in case I directly press SAVE when the dialog is open,
 I get an
 corrupted filename. If I first change location in the dialog
 everything
 works fine.
 
 Is this only a problem in scratchbox. I used X86 target and
 run it in
 the full maemo GUI. My application was installed with the GUI
 installer.
 
 Thanks a lot for any hint
 
 Detlef
 
 
 Probably you've got to set the default directory with a call like:
 
  gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER
 (dialog), default_path);
 
 Where default path should point (usually) to user's Documents
 (/home/user/MyDocs/.documents)
 
 If you don't do that, or pass a wrong path, it'll default to the root
 directory (/) and it'll behave like you described.
 
 
 -- 
 anidel


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


DBus Methods and Signals Introspection or Documentation

2010-06-06 Thread Wei Li
Hi all,

I am doing a project of middleware on Maemo/N900. I need to find the methods
and signals related to the hardware, for example, HAL (especially the
objects under /com/nokia since it is somehow proprietary). However, I
couldn't find a detailed documentation on that. And I also used tools such
as mdbus2, but since it lacks documentation and so does DBus itself, I
couldn't figure out how to do the introspection to find the information I
want. Anyone knows how to find that? Thanks!

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


Re: DBus Methods and Signals Introspection or Documentation

2010-06-06 Thread Ian Stirling

Wei Li wrote:

Hi all,

I am doing a project of middleware on Maemo/N900. I need to find the 
methods and signals related to the hardware, for example, HAL 
(especially the objects under /com/nokia since it is somehow 
proprietary). However, I couldn't find a detailed documentation on that. 
And I also used tools such as mdbus2, but since it lacks documentation 
and so does DBus itself, I couldn't figure out how to do the 
introspection to find the information I want. Anyone knows how to find 
that? Thanks!


As I understand it, many of these mrhods do not support introspection, 
and there is no documentation.


For example - the dbus 'backend' of liblocation.
It's possible I'm confused, and have simply missed the docs.
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Maemo Official Platform Bug Jar 2010.23

2010-06-06 Thread Stephen Gadsby
A Quick Look at Maemo Official Platform in Bugzilla (https://bugs.maemo.org/).
2010-05-31 through 2010-06-06

As of 2010-06-07 Maemo Official Platform contains 3164 items (+39 this week),
including 697 open issues (+11 this week):
* 498 open bugs (+9 this week)
* 25 critical/blocker (-4 this week)
* 8 easyfix (no change this week)
* 110 moreinfo (-1 this week)
* 19 crash (no change this week)
* 21 patch (no change this week)
* 23 reopened (+1 this week)
* 176 unconfirmed (+6 this week)
* 199 open enhancements (+2 this week)
* 1 easyfix (no change this week)
* 7 moreinfo (no change this week)
* 4 patch (no change this week)
* 10 reopened (no change this week)
* 29 unconfirmed (+1 this week)

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

37 bugs were opened -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=10438,10441,10452,10454,10463,10465,10470,10476,10477,10478,10479,10490,10497,10506,10510,10511,10512,10515,10516,10520,10523,10530,10532,10537,10538,10545,10546,10558,10559,10560,10561,10562,10563,10575,10580,10582,10586
):
* [10438] [Desktop platform] Hildon-desktop segfaults if the icon file
is nonexistant, or a broken symbolic link.
* [10441] [Development platform] Invalid repository address within
maemo sdk vmware image
* [10452] [System software] PR1.2 software update not available in Taiwan
* [10454] [Connectivity] Data connection disappears after
automatically migrating between WiFi and data a few times
* [10463] [Connectivity] Bluetooth pairing - virtual keyboard buttons
are disabled
* [10465] [Connectivity] pc-connectivity-manager messes DNS in N900 by
changing /etc/resolv.conf and not using dnsmasq
* [10470] [Synchronization] MfE - calendar syncs up even when
synchronisation is disabled!
* [10476] [Connectivity] Network selection set to 3G automatically
when trying to select APNs.
* [10477] [Telephony] Unable to send codes during a call
* [10478] [Telephony] Unable to dial some special numbers
* [10479] [Connectivity] Shift enabled by default in virtual keyboard
for BT password pairing dialog
* [10490] [Synchronization] MfE account creation: Invalid host -
certificate issue
* [10497] [Translations] Missing translations in Skype:
messaging_fi_unable_to_deliver_message_contact_unauthorized
* [10506] [Desktop platform] 'My nokia' unsubscribe attempt costs
money. This is in breach of the UK regulations on premium rate texts.
* [10510] [Connectivity] N900 reboots whenever I turn on Motorola S305
bluetooth headset
* [10511] [Location] GPS never finds my exact position when I have no
internet connection
* [10512] [Desktop platform] Latest update issues - Email / Virtual
keyboard / MSN / Portrait mode
* [10515] [Development platform] Fremantle x86 scratchbox toolchain/Qt
incompatibility
* [10516] [Connectivity] [Bob] Home network is detected as roaming network.
* [10520] [System software] Mass storage mode dont turn off so MyDocs
dont remount
* [10523] [Desktop platform] Desktop Flickring
* [10530] [Desktop platform] HildonFontSelectionDialog API docs don't
say what it has been replaced with
* [10532] [Desktop platform] Volume keys work for zoom only after fiasco reflash
* [10537] [Desktop platform] ctrl-shift-r forced rotation should swap
the side up/down keys for non volume case
* [10538] [Desktop platform] setting n900 on a flat surface shouldn't
exit ctrl-shift-r forced rotation mode
* [10545] [Connectivity] can't delete internet connection
* [10546] [Telephony] ending a received call sometimes freezes the interface
* [10558] [Desktop platform] hildon-thumbnail eats CPU after powerup
without any change to files
* [10559] [Multimedia] fmtx threating CPU +0.2 load
* [10560] [Multimedia] FM Transmitter stops transmitting after
connecting the charger
* [10561] [Connectivity] bluetooth: pairing with keyboard works but
use fail (encryption failed, permission denied)
* [10562] [Connectivity] doesn't recognise the home network packet
data connection and always assumes it's roaming
* [10563] [Multimedia] ID3 2.4 artwork tags don't extract artwork
* [10575] [Telephony] skype call intermittent
* [10580] [Connectivity] Bluetooth will NOT connect to car audio
system (JEEP/CHRYSLER UCONNECT)
* [10582] [Desktop platform] Fn-lock behaves very inconsistently
* [10586] [Connectivity] Phone's sound level control problem with
BH-904 bluetooth headset

Of these, 1 was a critical/blocker -
( https://bugs.maemo.org/buglist.cgi?bug_id=10506 ):
* [10506] [Desktop platform] 'My nokia' unsubscribe attempt costs
money. This is in breach of the UK regulations on premium rate texts.

4 enhancements were opened -
( https://bugs.maemo.org/buglist.cgi?bug_id=10457,10517,10539,10554 ):
* [10457] [Synchronization] Provide option to choose synchronisation folders
* [10517] [Location] No portrait mode in Ovi maps even when Walk mode
is selected
* [10539] [Desktop platform] Add function keys
* [10554] [UI Specification] Feature Request: Clock Visible while locked



Re: Maemo Official Platform Bug Jar 2010.23

2010-06-06 Thread Stephen Gadsby
(continued)

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

Ten biggest open bugs by number of votes -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=6063,5880,6766,8723,7633,8435,10310,5786,6694,2501
):
1. (5%) [6063] [Telephony] voice calls inaudible most of the time, but
not through speakers or earplugs
2. (4%) [5880] [Connectivity] A2DP unstable when WiFi is on.
3. (4%) [6766] [Connectivity] Bluetooth Audio Very Choppy and Stuttering
4. (4%) [8723] [Desktop platform] Items in hildon-home can be
non-responsive for several minutes
5. (3%) [7633] [Core] Enable SmartReflex on N900 by default
6. (3%) [8435] [Desktop platform] Strange readings from pressure
sensitive applications using gtk.gdk.AXIS_PRESSURE
7. (2%) [10310] [Desktop platform] can't write a lower case letter
after a dot even if you'd do it with shift (new this week)
8. (2%) [5786] [Connectivity] Wi-Fi Protected Setup doesn't work, is
not optional, and is used when disabled. (-1 this week)
9. (2%) [6694] [Multimedia] libplayback missing -doc package (-1 this week)
10. (2%) [2501] [Desktop platform] Hardware keyboard doesn't switch
Input language when pressing Ctrl+Space (-1 this week)
  ---
  Please visit https://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=6368,5371,793,6685,1043,5835,6357,5791,8483,5422
):
1. (7%) [6368] [Connectivity] No way for car kit to access contact
information (PBAP)
2. (5%) [5371] [Desktop platform] Allow same shortcut to be used on
multiple home screen desktops
3. (4%) [793] [System software] lock screen should have 'if lost' info
(e.g. display owner contact info)
4. (4%) [6685] [Core] Generic pc105 layout is not supported
5. (4%) [1043] [Connectivity] Add priority to defined wifi connections
6. (3%) [5835] [Synchronization] Mail for Exchange does not Sync all
Information for Google Contacts
7. (3%) [6357] [UI Specification] HildonPannableArea: Support arrow
keys (in Image Viewer/Photos  RSS feed reader  MicroB)
8. (3%) [5791] [Connectivity] Unable to set alternate APN
9. (3%) [8483] [Connectivity] Bluetooth HID does not work
10. (3%) [5422] [Connectivity] Disconnect inactive internet
connections after idle timeout
  ---
  Please visit https://bugs.maemo.org/ to vote. Registration is easy and free.

Ten hottest open bugs -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=10310,9138,6806,7017,8645,8862,3755,4607,6501,7796
):
1. [10310] [Desktop platform] can't write a lower case letter after a
dot even if you'd do it with shift (new this week)
2. [9138] [Licensing Change Requests] HildonFancyButton - request to
have its licensing changed to LGPL 2.1 (+1 this week)
3. [6806] [System software] Cannot turn on device while charging (+1 this week)
4. [7017] [Core] SGX memory reset seems failed during reboot (+2 this week)
5. [8645] [Core] External vfat mmc corrupted, file tables damaged? all
files missing (+3 this week)
6. [8862] [Data] Music, videos and pictures aren't appearing in my
default media player. (+3 this week)
7. [3755] [Development platform] DNS breaks from rootstraps (new this week)
8. [4607] [Development platform] Sbrsh not included in Fremantle SDK
devkits (CPU Transparency not working) (new this week)
9. [6501] [Connectivity] Major lag after pairing with bluetooth
headset and rebooting (new this week)
10. [7796] [Connectivity] Call goes silent or bluetooth disconnects in
car (new this week)

Ten hottest open enhancements -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=793,7019,356,995,1043,1050,1249,1574,2043,2076
):
1. [793] [System software] lock screen should have 'if lost' info
(e.g. display owner contact info)
2. [7019] [Licensing Change Requests] Release source code of getbootstate
3. [356] [Core] Kernel lacks IPv6 support
4. [995] [Connectivity] DNS resolution ignores local domain
5. [1043] [Connectivity] Add priority to defined wifi connections
6. [1050] [Connectivity] Connect automatically should be connection specific
7. [1249] [UI Specification] Maemo does not have persistent state
8. [1574] [Connectivity] Certificate Manager and WLAN EAP-TLS
9. [2043] [Development platform] Development environment should
support x86_64 and other non-x86 platforms
10. [2076] [UI Specification] Adding file directories (i.e. Documents,
MMC) to Task Launcher/Navigator

Ten oldest open bugs -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=796,1045,1792,2051,2168,2259,2441,2468,2501,2747
):
1. [796] [Desktop platform] Fix hard-coded paths in osso-af-startup build files
2. [1045] [Data] Media player breaks the original sorting of songs in a CD
3. [1792] [Core] chage assumes shadow passwords enabled, hence fails
4. [2051] [Connectivity] Unable to connect to EAP PEAP MSCHAPV2
without certificates
5. [2168] [Desktop platform] API needs destroy functions for user data
6. [2259] [Desktop platform] can't use stroke as dead key
7. [2441] [Desktop platform] Apps failing to launch without any
feedback why it failed
8. [2468] [Development platform] 

Maemo Official Applications Bug Jar 2010.23

2010-06-06 Thread Stephen Gadsby
A Quick Look at Maemo Official Applications in Bugzilla
(https://bugs.maemo.org/).
2010-05-31 through 2010-06-06

As of 2010-06-07 Maemo Official Applications contains 3518 items (+66
this week),
including 925 open issues (+38 this week):
* 553 open bugs (+35 this week)
* 12 critical/blocker (+1 this week)
* 0 easyfix (no change this week)
* 90 moreinfo (+5 this week)
* 6 crash (+1 this week)
* 9 patch (no change this week)
* 27 reopened (no change this week)
* 159 unconfirmed (+8 this week)
* 372 open enhancements (+3 this week)
* 2 easyfix (no change this week)
* 10 moreinfo (+1 this week)
* 17 patch (no change this week)
* 13 reopened (no change this week)
* 71 unconfirmed (+1 this week)

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

57 bugs were opened -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=10437,10439,10442,10443,10444,10445,10447,10448,10449,10451,10453,10460,10461,10467,10468,10471,10475,10480,10482,10483,10485,10486,10492,10495,10499,10501,10504,10505,10514,10521,10522,10524,10525,10526,10528,10534,10535,10536,10540,10543,10544,10551,10552,10555,10557,10566,10567,10569,10572,10574,10576,10578,10579,10581,10585,10587,10588
):
* [10437] [Browser] Initial page load is delayed often without a reason
* [10439] [Chat  Call  SMS] Entering a space character in the 'To'
field causes the contact to not be found.
* [10442] [Browser] Flash Video Fullscreen mode only partially fills
screen on some sites
* [10443] [Browser] virtual keyboard opened when clicking link in gmail menu
* [10444] [Contacts] When entering phone number from virtual
keyaboard,shift is auto-pressed
* [10445] [Chat  Call  SMS] Screen blinks when sending or receiving
SMS or Chat messages on active conversation
* [10447] [Browser] Transmission Web interface File Chooser broken after PR1.2
* [10448] [Email] Email checking to Hotmail POP often not working
since PR1.2 upgrade
* [10449] [Browser] Search in page broken in PR1.2 when search term offscreen
* [10451] [Browser] Selecting Browser deselects Browser as product
in maemo bug search
* [10453] [Media player] Share- and trash-icon cut when tapped
* [10460] [Chat  Call  SMS] Empty Select contacts dialog in New
SMS menu when going back and forth to Conversations view
* [10461] [Chat  Call  SMS] Skype video call option not present for
online user with Windows Skype 4.2.0.169
* [10467] [Chat  Call  SMS] Messages that were affected by the
unread status bug in PR1.1.1. STILL don't change status to READ
after PR1.2 upgrade
* [10468] [Browser] Browser - [Shift]+[Up] not working - several
european Keyboard Layouts not supported
* [10471] [Images and Camera] Images of front-facing camera are extremely dark
* [10475] [Media player] Shuffle disabled when selecting song
* [10480] [Media player] Media Player loses connection to Media Tomb
* [10482] [Settings and Maintenance] Apt-worker uses too many resources
* [10483] [Chat  Call  SMS] Screen remains locked at end of GSM call
* [10485] [Chat  Call  SMS] Skype rejects incoming calls
automatically after about 4 rings
* [10486] [Sharing] Bluetooth adapter doesn`t shutdown after sending a file.
* [10492] [Email] Email messages are deleted from POP3 server
* [10495] [Browser] Double-tap to zoom into text paragraph doesn't work properly
* [10499] [Map] Contact Address does not open in Maps: Unable to open
maps. Address may be invalid.
* [10501] [Chat  Call  SMS] Missing entries in New IM popup
* [10504] [Email] email client unable to create internet connection by itself
* [10505] [Chat  Call  SMS] Since yesterday i can't make SIP call anymore
* [10514] [Utilities] No way to change alarm sound after upgrade
* [10521] [Chat  Call  SMS] Phone app's settings affect other applications
* [10522] [Email] No Line Breaks When replying to mail in Modest
* [10524] [Chat  Call  SMS] Sametime crashes Conversations and
Contacts when opening/creating an IM
* [10525] [Email] Hotmail account does not update automatically
* [10526] [Calendar] Smart Birthday not showing after update to 10.2010.19-1.002
* [10528] [Email] Cannot move messages to Nokia Messaging
* [10534] [Email] Email signature issue
* [10535] [Browser] Incremental search function is broken for select
objects dialogue in html form elements like drop-down menus or
multiple choice element lists
* [10536] [Media player] Media Player starts to play music with no
user intervention
* [10540] [Utilities] Terminal Font/Background selection UI is clunky
* [10543] [Settings and Maintenance] have to wait after installing application
* [10544] [Settings and Maintenance] can't switch off automatic updates
* [10551] [Settings and Maintenance] Slow unresponsive Application Manager
* [10552] [Email] Email notification broken if screen is off but not locked.
* [10555] [Media player] ogg vorbis tags not showing
* [10557] [Media player] Cannot open MP3 URL through http if spaces
(%20) in the URL
* [10566] [Email] Nokia Messaging does not sync email and 

Re: Maemo Official Applications Bug Jar 2010.23

2010-06-06 Thread Stephen Gadsby
(continued)

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

Ten biggest open bugs by number of votes -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=3888,3700,7190,6009,3762,10294,6907,7909,9557,5667
):
1. (12%) [3888] [Email] IMAP-IDLE not working
2. (3%) [3700] [Email] Put signatures not on top in replies (thereby
not forcing top-post)
3. (3%) [7190] [Media player] music stutters while multi-tasking,
especially browsing web
4. (3%) [6009] [Utilities] Enter key sends wrong keycode to console
applications
5. (3%) [3762] [Email] Performance is unusable on IMAP accounts with a
large number of messages in one or more folders (e.g. INBOX)
6. (2%) [10294] [Desktop Widgets] Email desktop widget does not
display mails from Nokia Messaging accounts
7. (2%) [6907] [Desktop Widgets] Media Player widget suddenly starts
music after Phone call ends (+2 this week)
8. (2%) [7909] [Desktop Widgets] After booting, Media Player Widget
does not work (needs to be readded)
9. (1%) [9557] [Calendar] DST start: Calendar Events created before
are now an hour ahead (+1 this week)
10. (1%) [5667] [Media player] Media Player stops playing when Camera
app is accessed (new this week)
  ---
  Please visit https://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=1695,601,2557,5294,5139,2796,7740,1129,5327,5345
):
1. (4%) [1695] [Browser] Browser: Provide open link in background
2. (3%) [601] [Settings and Maintenance] should offer remove/install
multiple packages at once
3. (3%) [2557] [Email] Keep Sent and Drafts on IMAP server
4. (3%) [5294] [Calendar] Support for modifying/deleting a single
occurrence of repeating event
5. (3%) [5139] [Chat  Call  SMS] Provide multi-user chat (chatroom /
IRC) support again
6. (2%) [2796] [Media player] Media player should play audio tracks
continuously (gapless)
7. (2%) [7740] [Chat  Call  SMS] Missing call duration for each call
in Phone UI
8. (2%) [1129] [Media player] Media player doesn't save the
timeposition on close for audio
9. (2%) [5327] [Utilities] Reintroduce shortcut configuration into Maemo5 XTerm
10. (2%) [5345] [Chat  Call  SMS] Enable or disable IM/VoIP accounts
based on connection
  ---
  Please visit https://bugs.maemo.org/ to vote. Registration is easy and free.

Ten hottest open bugs -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=9557,10418,6907,10505,6898,6933,5385,7275,8220,7499
):
1. [9557] [Calendar] DST start: Calendar Events created before are now
an hour ahead
2. [10418] [Chat  Call  SMS] Conversations and Call Log remain empty
after 10.2010.19-1.003
3. [6907] [Desktop Widgets] Media Player widget suddenly starts music
after Phone call ends
4. [10505] [Chat  Call  SMS] Since yesterday i can't make SIP call
anymore (new this week)
5. [6898] [Email] Sometimes auto-update intervals are lost
6. [6933] [Calendar] Alarm times are shown wrong
7. [5385] [Settings and Maintenance] Check available diskspace BEFORE
starting the installation
8. [7275] [Sharing] Flickr sharing authentication (almost) didn't work
9. [8220] [Chat  Call  SMS] IM service defined screen name always
overrides N900 assigned screen name (+1 this week)
10. [7499] [Settings and Maintenance] After Restore, permissions in
/home/user are much to permissive (rwxrwxrwx) (new this week)

Ten hottest open enhancements -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=463,1129,1563,1695,2317,2557,2779,3089,5139,5321
):
1. [463] [Settings and Maintenance] Date format should be user defined
2. [1129] [Media player] Media player doesn't save the timeposition on
close for audio
3. [1563] [Settings and Maintenance] Application installer to send
feedback to the providing site if install fails
4. [1695] [Browser] Browser: Provide open link in background
5. [2317] [Chat  Call  SMS] Chat doesn't show composing and
inactive for chatting contact
6. [2557] [Email] Keep Sent and Drafts on IMAP server
7. [2779] [Email] Modest doesn't support S/MIME encryption
8. [3089] [Utilities] Add Contact and/or Map link to alarm
9. [5139] [Chat  Call  SMS] Provide multi-user chat (chatroom / IRC)
support again
10. [5321] [Chat  Call  SMS] Annoying connection lost/established banners

Ten oldest open bugs -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=935,1142,1860,2150,2152,2745,2987,3014,3124,3402
):
1. [935] [RSS feed reader] RSS reader misbehavior on HTTP redirects
(RFC 2616 violation)
2. [1142] [RSS feed reader] Impossible to add authenticated RSS feeds
(username  password)
3. [1860] [Chat  Call  SMS] Won't pass through VPN
4. [2150] [Utilities] PDF Reader doesn't support internal document hyperlinks
5. [2152] [Browser] Documentation on how to build MicroB is not correct
6. [2745] [Email] Space not allowed in username popup (which is not true)
7. [2987] [Email] Does not always mark e-mails as read
(dovecot/cyrus/google IMAP server)
8. [3014] [Browser] File chooser should remember last directory
9. [3124] [Email] Incorrect displaying of format=flowed paragraphs
10. 

maemo.org Website Bug Jar 2010.23

2010-06-06 Thread Stephen Gadsby
A Quick Look at maemo.org Website in Bugzilla (https://bugs.maemo.org/).
2010-05-31 through 2010-06-06

As of 2010-06-07 maemo.org Website contains 1510 items (+10 this week),
including 249 open issues (+4 this week):
* 181 open bugs (+4 this week)
* 3 critical/blocker (no change this week)
* 2 easyfix (no change this week)
* 1 moreinfo (no change this week)
* 0 crash (no change this week)
* 0 patch (no change this week)
* 1 reopened (no change this week)
* 52 unconfirmed (no change this week)
* 68 open enhancements (no change this week)
* 1 easyfix (no change this week)
* 0 moreinfo (no change this week)
* 2 patch (no change this week)
* 3 reopened (no change this week)
* 15 unconfirmed (no change this week)

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

10 bugs were opened -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=10450,10488,10491,10502,10509,10527,10529,10556,10565,10573
):
* [10450] [Autobuilder] libsdl-ttf2.0-dev has broken dependencies
* [10488] [Talk] Should use p for paragraphs in posts
* [10491] [Autobuilder] Autobuilder is broken - extras-devel in
http://stage missing
* [10502] [Packages] Cannot become maintainer of my own package
* [10509] [Talk] Lost password on forum is missing from login page
* [10527] [Repositories] repository.maemo.org indicates diablo is the
latest sdk release for apt-get
* [10529] [Promoter] Can't promote a package to Extras: Server error
500: Package debhelper-maemo-package-icons is not available in this
repository
* [10556] [Packages] Whitespace should be treated as wildcard in package search
* [10565] [Promoter] Extras repository python2.5, python2.5-minimal
dependency issues
* [10573] [Wiki] wiki search fails to yield any hits

0 bugs were critical/blocker.

0 enhancements were opened.


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

5 bugs were resolved fixed -
( https://bugs.maemo.org/buglist.cgi?bug_id=10450,10491,10502,10527,10529 ):
* [10450] [Autobuilder] libsdl-ttf2.0-dev has broken dependencies
* [10491] [Autobuilder] Autobuilder is broken - extras-devel in
http://stage missing
* [10502] [Packages] Cannot become maintainer of my own package
* [10527] [Repositories] repository.maemo.org indicates diablo is the
latest sdk release for apt-get
* [10529] [Promoter] Can't promote a package to Extras: Server error
500: Package debhelper-maemo-package-icons is not available in this
repository

1 bug was resolved invalid -
( https://bugs.maemo.org/buglist.cgi?bug_id=10509 ):
* [10509] [Talk] Lost password on forum is missing from login page

0 bugs were resolved wontfix.

0 bugs were resolved duplicate.

0 bugs were resolved worksforme.

0 bugs were resolved moved.


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

0 enhancements were resolved fixed.

0 enhancements were resolved invalid.

0 enhancements were resolved wontfix.

0 enhancements were resolved duplicate.

0 enhancements were resolved worksforme.

0 enhancements were resolved moved.


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

3 bugs were confirmed -
( https://bugs.maemo.org/buglist.cgi?bug_id=10450,10565,10573 ):
* [10450] [Autobuilder] libsdl-ttf2.0-dev has broken dependencies
* [10565] [Promoter] Extras repository python2.5, python2.5-minimal
dependency issues
* [10573] [Wiki] wiki search fails to yield any hits

0 enhancements were confirmed.


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

1 bug was reopened -
( https://bugs.maemo.org/buglist.cgi?bug_id=10450 ):
* [10450] [Autobuilder] libsdl-ttf2.0-dev has broken dependencies (nc)
  ---
  (nc) indicates the bug no longer has listed status.

0 enhancements were reopened.


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

10 bugs were needing love -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=5446,5666,10254,4531,5220,4489,8290,10086,8806,9727
):
* [5446] [General] Site search is missing Brainstorm filter
* [5666] [Packages] Implement proper Extras QA voting interface
* [10254] [Packages] Thumbing up package does not update package karma
till reload.
* [4531] [Talk] Not able to unsubscribe, nor use checkbox to perform
subscription actions on subscribed threads
* [5220] [Talk] broken javascript in minimalism theme
* [4489] [Talk] There is no Today's Posts link from the Minimalistic theme
* [8290] [Brainstorm] Add brainstorm.maemo.org redirect
* [10086] [Brainstorm] multiple voting records on brainstorm after
refreshing page
* [8806] [Packages] Diablo packages interface reports dependencies on
packages only in device rootfs as missing
* [9727] [Downloads] Download counter could link to some further information

5 enhancements were needing love -
( https://bugs.maemo.org/buglist.cgi?bug_id=6952,6723,7022,5131,9729 ):
* [6952] [Brainstorm] Add possibility to save bugzilla styled searches
* [6723] [Autobuilder] Would be great if it would be possible to see
build log of in-progress build
* [7022] [Downloads] maemo.org on downloads category links when viewing list
* [5131] [Talk] Poll edit or update on t.m.o.
* [9729] [Downloads] Show full package page when only one 

maemo.org Extras Bug Jar 2010.23

2010-06-06 Thread Stephen Gadsby
A Quick Look at Extras in Bugzilla (https://bugs.maemo.org/).
2010-05-31 through 2010-06-06

As of 2010-06-07 Extras contains 1722 items (+34 this week),
including 669 open issues (-7 this week):
* 410 open bugs (-4 this week)
* 21 critical/blocker (no change this week)
* 3 easyfix (no change this week)
* 5 moreinfo (no change this week)
* 0 crash (no change this week)
* 6 patch (+1 this week)
* 7 reopened (no change this week)
* 217 unconfirmed (+1 this week)
* 259 open enhancements (-3 this week)
* 1 easyfix (no change this week)
* 2 moreinfo (+1 this week)
* 2 patch (no change this week)
* 1 reopened (-1 this week)
* 89 unconfirmed (+1 this week)

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

27 bugs were opened -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=10455,10456,10458,10459,10462,10464,10466,10469,10472,10493,10494,10498,10503,10507,10508,10518,10531,10542,10548,10549,10550,10564,10568,10570,10571,10577,10583
):
* [10455] [Ukeyboard] Missing letters on Turkish layout
* [10456] [fMMS] fmms hangs downloading
* [10458] [Panucci] Panucci doesn't work after upgrade to PR1.2
* [10459] [PyMaemo] selector_get_selected(column) is mentionned in
documentation but doesn't exist
* [10462] [Ukeyboard] does it support vietnamese unicode?
* [10464] [fMMS] Failing to send MMS
* [10466] [FM Radio] after pr 1.2 update, fm radio switches between
landscape and portrait mode depending on phone position, also portrait
mode is not sized to fit screen
* [10469] [Conboy] Sync with snowy
* [10472] [gPodder] Episode list does not refresh to reflect new episode(s)
* [10493] [Panucci] The fixed landscape mode doesn't longer work.
* [10494] [gPodder] The fixed orientation in Landscape doesn't work.
* [10498] [eCoach] Saved GPX files have wrong timezone information
* [10503] [fMMS] Message rejected due to operator SLA violation
* [10507] [Vagalume] Tagging doesn't work for Libre.fm
* [10508] [Vagalume] Vagalume website points to wrong bug tracker
* [10518] [Conversations Inbox] conversation inbox disappears after
latest maemo5 update
* [10531] [diablo-community-updates] libhildonmenu only scans
/usr/share/applications/ for applications, not
/opt/share/applications/ etc
* [10542] [contacts-merger] Reboot needed after installing the contacts merger
* [10548] [Panucci] Audio is interrupted by alerts
* [10549] [Extended Call Log] Deleting a call doesn't leave the call
details window
* [10550] [Extended Call Log] You are not notified when a call is deleted
* [10564] [Gonvert] Cannot Install to Firmware PR1.2
* [10568] [JamMo] High power use when idle.
* [10570] [Hermes] Hermes apparently doesn't use HTTPS for retrieving
information
* [10571] [diablo-community-updates] ps no longer supports the -ef arguments
* [10577] [Ukeyboard] Cannot enter the finalnun hebrew key with
physical keypress
* [10583] [gPodder] Gpodder complains about No downloadable episodes in feed

Of these, 2 were critical/blockers -
( https://bugs.maemo.org/buglist.cgi?bug_id=10458,10571 ):
* [10458] [Panucci] Panucci doesn't work after upgrade to PR1.2
* [10571] [diablo-community-updates] ps no longer supports the -ef arguments

7 enhancements were opened -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=10481,10487,10489,10533,10541,10547,10584
):
* [10481] [mafw-lastfm] British English translation
* [10487] [mafw-lastfm] Russian translation
* [10489] [mafw-lastfm] German translation for mafw-lastfm
* [10533] [openvpn] Remember user name (optional)
* [10541] [mafw-lastfm] Finnish translation
* [10547] [BlueMaemo] wifi
* [10584] [fMMS] things to make fmms more awesome.


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

24 bugs were resolved fixed -
( 
https://bugs.maemo.org/buglist.cgi?bug_id=7186,7303,7318,7418,7962,8536,8759,9709,9915,9955,10028,10215,10234,10260,10379,10406,10456,10458,10464,10469,10472,10493,10508,10564
):
* [7186] [Conboy] German translation too long in search view menu
* [7303] [kmplayer] Seeking forward then back in mp3 aborts playback
* [7318] [Conboy] Options in search menu are too long in Polish.
* [7418] [Conboy] Untranslatable strings in Conboy 0.6.3 (don't appear
in Transifex)
* [7962] [Barrage] Does not install on N900, because depends on
maemo-select-menu-location
* [8536] [kmplayer] kmplayer doesn't work in silent profile mode
* [8759] [kmplayer] kmplayer stops playing video after switching out and back
* [9709] [Conboy] Cursor visible in portrait mode
* [9915] [Webtexter] unspecified error sending message via websms.ru
* [9955] [Healthcheck] Erroneous apostrophy in package description
* [10028] [Multilist] Multilist can't switch through lists/category
without losing its database
* [10215] [Canola] Switching to other themes does not work
* [10234] [PyMaemo] [PATCH] satellites and cell_info available on
python-location
* [10260] [gPodder] Cannot download/upload list of podcasts to
my.gpodder.org Unauthorized is shown (nc)
* [10379] [Webtexter] Cant start application after system