package promotion blocked

2011-06-07 Thread b0unc3
Hello,

I would like to promote my package to the extras-testing, but I see a
warning that says:
Warning: Promotion of experimental Qtm based applications (libqtm11 or
libqtm-extras) is blocked due to conflicts with stable versions.
My package is a QML app, that, as far as I can tell, depends (needs) on
libqtm-11-sensors and libqtm-11-declarative.
Could someone please give some advice on which library I've to use to
promote my package?
Thank you.
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: upstart and dbus

2010-05-13 Thread b0unc3
On Thu, May 13, 2010 at 11:33 AM, Graham Cobb
g+...@cobb.uk.netg%2b...@cobb.uk.net
 wrote:

 On Thursday 13 May 2010 00:27:21 Faheem Pervez wrote:
  On 5/13/10, Graham Cobb g+...@cobb.uk.net g%2b...@cobb.uk.net wrote:
   Faheem, what were you using as the start condition for your upstart
   script? I
   would have assumed that if it were anything after start on started
 dbus
   then the waitdbus would be unnecessary.
 
  I was using:
  start on started dbus
  stop on stopping dbus
  stop on stopped fmtx

 Thanks Faheem.  From your experience, it seems that start on started dbus
 is
 not good enough to know that dbus really is available so we should all get
 into the habit of adding the following into upstart scripts that need dbus
 (or which need run-standalone.sh), to avoid obscure race conditions:

 pre-start script
/usr/sbin/waitdbus system
 end script


I found that if I use :
 start on started hildon-desktop

as starting condition, I don't need to put the pre-start script


 Graham
 ___
 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: Problem running installed app (using icon)

2010-05-13 Thread b0unc3
On Thu, May 13, 2010 at 1:31 PM, saurabh aggarwal 
aggarwal.saur...@gmail.com wrote:

 Here it is -

 [Desktop Entry]
 Encoding=UTF-8
 Version=0.1
 Type=Application
 Name=myapp
 Exec=/usr/bin/myapp
 Icon=myapp
 X-Maemo-Category=Main
 X-Window-Icon=myapp
 X-Window-Icon-Dimmed=myapp


I bet you need a valid osso context reference in your app. And also a good
.service file (post it here if you have still problems)
Follow this guide :
http://wiki.maemo.org/Documentation/Maemo_5_Developer_Guide/Application_Development/Writing_a_new_maemo_application




 On Thu, May 13, 2010 at 4:56 PM, Faheem Pervez tripp...@gmail.com wrote:

 Start by posting the desktop file.

 On Thu, May 13, 2010 at 12:23 PM, saurabh aggarwal
 aggarwal.saur...@gmail.com wrote:
  Any ideas on how to debug.
 

 Best Regards,
 Faheem

  Regards,
  -Saurabh
 
  ___
  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


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


Re: Problem running installed app (using icon)

2010-05-13 Thread b0unc3
On Thu, May 13, 2010 at 2:17 PM, saurabh aggarwal 
aggarwal.saur...@gmail.com wrote:

 Ok, here's the Noob question -
 1) Do all apps need a .service file


Yes, if you want your app to appear in the task navigator menu.


 2) What is the need when my application doesn't listen to any dbus event?


DBus and osso context are not related.



 BTW, my app is a QT application.


You can browse the source of some other qt apps to see how to get this done.



 -Saurabh


 On Thu, May 13, 2010 at 5:22 PM, b0unc3 b0u...@email.it wrote:



 On Thu, May 13, 2010 at 1:31 PM, saurabh aggarwal 
 aggarwal.saur...@gmail.com wrote:

 Here it is -

 [Desktop Entry]
 Encoding=UTF-8
 Version=0.1
 Type=Application
 Name=myapp
 Exec=/usr/bin/myapp
 Icon=myapp
 X-Maemo-Category=Main
 X-Window-Icon=myapp
 X-Window-Icon-Dimmed=myapp


 I bet you need a valid osso context reference in your app. And also a good
 .service file (post it here if you have still problems)
 Follow this guide :
 http://wiki.maemo.org/Documentation/Maemo_5_Developer_Guide/Application_Development/Writing_a_new_maemo_application




 On Thu, May 13, 2010 at 4:56 PM, Faheem Pervez tripp...@gmail.comwrote:

 Start by posting the desktop file.

 On Thu, May 13, 2010 at 12:23 PM, saurabh aggarwal
 aggarwal.saur...@gmail.com wrote:
  Any ideas on how to debug.
 

 Best Regards,
 Faheem

  Regards,
  -Saurabh
 
  ___
  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




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


upstart and dbus

2010-05-12 Thread b0unc3
Hello,

I've wrote a little daemon that basically listen on DBus for some events and
now I want to automatically start it through upstart.
But, upstart doesn't like my app :(
I discovered that if I use a DBUS_BUS_SYSTEM for the DBusConnection,
everything works fine.
Instead, if I use a DBUS_BUS_SESSION it makes upstart fails to start my app.
Any hints?

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


Re: upstart and dbus

2010-05-12 Thread b0unc3
Using run-standalone.sh everything works as expected.
Thanks to all!

On Thu, May 13, 2010 at 12:07 AM, Faheem Pervez tripp...@gmail.com wrote:

 If you do use run-standalone.sh in an Upstart script, please be aware
 of https://bugs.maemo.org/show_bug.cgi?id=8148. Lucas Maneos'
 awesomeness helped me to fix my issue.

 On 5/12/10, Graham Cobb g+...@cobb.uk.net g%2b...@cobb.uk.net wrote:
  On Wednesday 12 May 2010 21:50:31 Ram Kurvakat wrote:
  I cant provide a full solution now but to use the session bus you will
  need
  the session bus address I think which changes every restart. Are you
 doing
  that in your upstart script already ? ( setting the dbus session address
  something like here /tmp/session_bus_address.user )
 
  Using run-standalone.sh to start your application should set up the
 session
  bus info.  You always need to use run-standalone.sh to start user apps if
  they are not being invoked from the hildon environment (from upstart,
 from a
  root terminal, from an ssh session, in scratchbox, etc.).
 
  Graham
  ___
  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

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


Re: HAL DBus

2010-04-19 Thread b0unc3
Hi,

On Mon, Apr 19, 2010 at 3:48 PM, Igor Mironchick imironch...@gmail.comwrote:

 Hi.

 Can anybody explain me where is service name, object path, interface of the
 DBus here

 /org/freedesktop/Hal/devices/platform_cam_focus

 ?


I think you must use libhal to get informations, take a look here :

http://maemo.org/api_refs/5.0/5.0-final/libhal



 Thx. And sorry for the offtopic.

 --
 Regards,
 Igor Mironchick

 ___
 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: GSoC'10: MaeAgent, an anti-theft application

2010-04-08 Thread b0unc3
On Tue, Apr 6, 2010 at 11:47 AM, b0unc3 b0u...@email.it wrote:

 Hello,

 reading the GSoc'10 ideas list, I feel that MaeAgent is a very interesting
 project. Such application would be very useful for all the maemo users and
 would also bring a benefit to the incoming meego.
 I've many ideas on my mind on how to do that, thanks to the great
 capabilities of a device like the N900, and I also see that there are some
 threads on t.m.o. on this topic with some useful tips.
 On the other hand I see that there are still no mentor for this project, so
 I would like to know if somebody would be interested in mentoring this
 project and, of course, generally what you think about.


FYI I made a first proposal :
http://socghop.appspot.com/gsoc/student_proposal/show/google/gsoc2010/b0unc3/t127075984698

I will appreciate any comment/suggestion you have about it.




 Best Regards,
 Daniele Maio

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


GSoC'10: MaeAgent, an anti-theft application

2010-04-06 Thread b0unc3
Hello,

reading the GSoc'10 ideas list, I feel that MaeAgent is a very interesting
project. Such application would be very useful for all the maemo users and
would also bring a benefit to the incoming meego.
I've many ideas on my mind on how to do that, thanks to the great
capabilities of a device like the N900, and I also see that there are some
threads on t.m.o. on this topic with some useful tips.
On the other hand I see that there are still no mentor for this project, so
I would like to know if somebody would be interested in mentoring this
project and, of course, generally what you think about.



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


possible a gsoc project ?

2010-03-14 Thread b0unc3
Hi,

I've a idea on mind, browsing the brainstorm I found that there are many
interests/requests for a better notification system[1].
I think I can provide an implementation for the proposed solutions #2 and #3
(or moreover for the #3 that sounds better).
Since this project can/would be simple I don't know if it can be considered
a valid GSOC project, and before updating the GSOC wiki page
I would like to know what you think about.


[1] : http://maemo.org/community/brainstorm/view/notifications_widget/



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


Re: reloading a status bar plugin

2010-02-24 Thread b0unc3
2010/2/24 Kimmo Hämäläinen kimmo.hamalai...@nokia.com

 On Tue, 2010-02-23 at 20:06 +0100, ext b0unc3 wrote:
  Hello,
 
  I've created a statusbar plugin, now I want to reload it (eg. when the
  configuration file changes).
  What is the best way to do that ?

 If the plugin can be unloaded and reloaded cleanly (meaning, it does not
 crash hildon-status-menu :)), you could touch the .desktop file in some
 way (e.g. increase version number inside the file) to make HSM unload
 and reload you.


I cannot change the .desktop contents by user.



 If your plugin is not unloadable, you can do this ugly trick (other
 plugins can react to this somehow):

 dsmetool -k /usr/bin/hildon-status-menu
 dsmetool -t /usr/bin/hildon-status-menu


This is the current way I'm doing that, but, as you said, it's ugly.



 -Kimmo

 
 
 
  Best Regards,
  Daniele Maio.


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


Re: reloading a status bar plugin

2010-02-24 Thread b0unc3
2010/2/24 Kimmo Hämäläinen kimmo.hamalai...@nokia.com

 On Wed, 2010-02-24 at 13:21 +0100, ext b0unc3 wrote:
 ...
 
  dsmetool -k /usr/bin/hildon-status-menu
  dsmetool -t /usr/bin/hildon-status-menu
 
  This is the current way I'm doing that, but, as you said, it's ugly.

 Yes, because The Right Way is for your plugin to load the new settings
 without requiring reloading of the plugin. That should be doable for all
 settings, no?  You can look e.g. hildon-desktop that reloads
 its /usr/share/hildon-desktop/transitions.ini configuration on-the-fly.
 Using Gconf settings (and handling change notifications for them) is
 another alternative.


Yes GConf is the best alternative nowdays (it works like a charm now :)). I
didn't know why I haven't think to use it before.
Btw, thanks for your help.



 -Kimmo


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


reloading a status bar plugin

2010-02-23 Thread b0unc3
Hello,

I've created a statusbar plugin, now I want to reload it (eg. when the
configuration file changes).
What is the best way to do that ?



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


Re: gtk_label_set_markup issue

2010-01-28 Thread b0unc3
On Thu, Jan 28, 2010 at 8:22 AM, daniel wilms daniel.wi...@nokia.comwrote:

 Hi,


 ext b0unc3 wrote:

 Anyone know how I can avoid this problem and make a link in a label in an
 easy way ?
 And when the new gtk version will be ported to maemo ?


 You could use the GtkLinkButton:

 http://maemo.org/api_refs/5.0/5.0-final/gtk/GtkLinkButton.html


not exactly what I want.. but nice anyway, thank you.


 Cheers Daniel


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


gtk_label_set_markup issue

2010-01-27 Thread b0unc3
Hello,

today I'm facing out with a problem with gtk_label_set_markup().
Reading the gtk api docs regarding the GtkLabel I read that use link in a
label can be done with :

gtk_label_set_markup (label, Go to the a href=\http://www.gtk.org\;
title=\Out website\GTK+ Website/a form more ...);

now I tried it several time , but I cannot get it working.
Reading carefully I notice :
Since 2.18, GTK+ supports markup for clickable hyperlinks in addition to
regular Pango markup.

So, which version of gtk we have on maemo ?
With pkg -l | grep -i gtk I get :
ii  libgtk2.0-0
2:2.14.7-1maemo21+0m5The GTK+ graphical user interface library

that seems to be 2.14.7 , am I correct ?
Anyone know how I can avoid this problem and make a link in a label in an
easy way ?
And when the new gtk version will be ported to maemo ?


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


Re: NFS on N900

2010-01-12 Thread b0unc3
Hi,


On Mon, Jan 11, 2010 at 1:04 PM, daniel wilms daniel.wi...@nokia.comwrote:

 Hi

  Any idea why it is not possible to mount an NFS share on an N900?  I get:


Yes, I found the nfs kernel module in /lib/modules/2.6.28-omap1/nfs.ko so ,
modprobe it , install portmap (that is on repository) and everything will
works fine.

mount: mounting host:/home/jeffbarish on /mnt/host failed: Input/output
 error

 you could try to install strace and then run strace mount to see what is
 going wrong.

 Daniel


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



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


Re: proposal for a Maemo Italian Long Weekend

2009-11-22 Thread b0unc3
2009/11/22 Andrea Borgia and...@borgia.bo.it

 [versione italiana sotto]

 Hi folks.

 There's a possibility that another Long Weekend event like Barcelona
 will be taking place in Italy, early next year. For the moment, we're


That`s will be great!!


 still gathering suggestions and shows of interest.

 You're welcome to give your feedback in this t.m.o. thread:
 http://talk.maemo.org/showthread.php?t=34744

 There's also a very basic wiki page here:
 http://wiki.maemo.org/Maemo-Italian_Long_Weekend

 Please forward this message to all people who might be interested!


I`m definitly interested, of course :)


 Thanks,
 Andrea (aboaboit)


 [versione italiana]

 Ciao gente.

 Esiste la possibilità che si tenga un altro evento come quello di
 Barcellona, in Italia all'inizio dell'anno prossimo. Per il momento,
 stiamo solo raccogliendo suggerimenti e manifestazioni di interesse.

 Siete invitati a lasciare un commento in questo thread su t.m.o.:
 http://talk.maemo.org/showthread.php?t=34744

 C'è anche una semplice pagina wiki qui:
 http://wiki.maemo.org/Maemo-Italian_Long_Weekend

 Per favore fate arrivare questo messaggio a tutti coloro che potrebbero
 essere interessati!

 Grazie,
 Andrea (aboaboit)

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

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


Re: Asking for developers and user support for a N900 application

2009-09-04 Thread b0unc3
On Fri, Sep 4, 2009 at 7:50 PM, Andrea Grandi a.gra...@gmail.com wrote:

 Hi,

 2009/9/4 Antonio Di Cello antoniodice...@libero.it:
  Hi Andrea,
  I live  Study in Italy and have a TIM Telecom Italia SIM If I can help
 you let me know

 cool :)

 so we only miss Vodafone and at least all italian carriers can be
 supported.

I have a Vodafone SIM , if it can help.
And of course, I'm from Italy too  :)

 More details will follow, once I'm able to setup my development
 environment on my new PC.

 Stay tuned and thanks :)

 --
 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

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


Re: extras-assistant trouble

2009-07-08 Thread b0unc3
On Wed, Jul 8, 2009 at 12:38 PM, Ed Bartosh bart...@gmail.com wrote:

 2009/7/8 b0unc3 b0u...@email.it:
 
 
  On Wed, Jul 8, 2009 at 9:34 AM, Ed Bartosh bart...@gmail.com wrote:
 
  2009/7/8 b0unc3 b0u...@email.it:
   Hi,
  
   I'm the developer of wizard-mounter
   (https://garage.maemo.org/projects/wizard-mounter) and I have a
 problem
   with
   the extras-assistant.
   I build my own .deb in my sdk and it works fine, also the installation
   is
   correct (as you can check by downloading the .deb directly from the
   browser
   or you can try to build it yourself through svn in diablo-trunk/ ).
 When
   I
   upload the .tar.gz and other files to the extras-assistant that, I
   suppose,
   will automatically generate the deb but it result incorrect : the
   installation works quite fine but it never show the entry in the
   menu-list
   because the .desktop and .service files are placed alone in /.
   I'm wondering why of this strange behavior and what I'm doing wrong
   since
   the extras-assistant output is OK.
   In my sdk I simply run dpkg-build -rfakeroot to build the .deb and
 other
   files.
   What do extras-assistant exactly to build the .deb ?
  First of all it's autobuilder, not assistant. Extras assistent is a
  web interface to building system and repositories.
 
  My mistake, sorry.
 
  Autobuilder builds packages 'right way'. It starts from clean
  scratchbox target, install basic build system(gcc, glibc and small
  amount of other packages), then installs build dependencies and bulds
  the package using dpkg-buildpackage.
  The main difference from usual developer builds is that in developer
  environment there are already tons of installed packages(most of them
  are not needed for your build) and dirty filesystem. By dirty I mean
  that there are a lot of files in there that don't belong to any
  package, but can influence on build results. Each time you do make
  install you put those on your filesystem. Very often they forgotten
  after that.
 
  Now to the business. The reason of above issue is most probably in
  your Makefile*. To check it our you can simply delete everything from
  debian/wizard-mounter and run 'make install
  DESTDIR=debian/wizard-mounter. You will most probably see your
  .desktop and .service files in debian/wizard-mounter instead of
  debian/wizard-mounter/usr/share/...
 
  I just tried it , but everything in the destdir is at his right place.
 
 
 Unfrotunately I didn't find sources of your package in diablo extras
 repo, so I checked out your trunk and tried to build your package in
 clean environment.
 Found issues:
 1. Package lacks build dependency to libhildonhelp-dev.
 configure complains that libossohelp package doesn't exist:
 checking for pkg-config... /scratchbox/tools/bin/pkg-config
 checking pkg-config is at least version 0.9.0... yes
 checking for GTK... yes
 checking for OSSO... configure: error: Package requirements (libosso
 = 1 libossohelp) were not met:

 No package 'libossohelp' found

 Consider adjusting the PKG_CONFIG_PATH environment variable if you
 installed software in a non-standard prefix.

 Alternatively, you may set the environment variables OSSO_CFLAGS
 and OSSO_LIBS to avoid the need to call pkg-config.
 See the pkg-config man page for more details.

 make: *** [configure-stamp] Error 1

 It happens because libossohelp.pc file is not found. libossohelp.pc is
 deprecated, and replaced with hildon-help.pc which is in
 libhildonhelp-dev package, AFAIK.
 So, I replaced libossohelp with hildonhelp in your configure.ac and
 added build-dependency to lbihildonhelp-dev package.

 2. The same for hildon-libs and hildon-fm:
 checking for HILDON... configure: error: Package requirements
 (hildon-libs = 0.9.50 hildon-fm) were not met:

 No package 'hildon-libs' found
 No package 'hildon-fm' found

 Consider adjusting the PKG_CONFIG_PATH environment variable if you
 installed software in a non-standard prefix.

 Alternatively, you may set the environment variables HILDON_CFLAGS
 and HILDON_LIBS to avoid the need to call pkg-config.
 See the pkg-config man page for more details.

 Replaced with hildon-1 and hildon-fm-2 in configure.ac

 Only after above changes I managed to build package. How did you
 actually get your package built? Did you use other sources?


These errors come up because you have checked out a wrong dir, as I said in
my first mail, the directory where I'm working on is diabo-trunk/ no trunk/




 It was built OK and I can see the problem:
 3.
  ls debian/wizard-mounter
 DEBIAN  etc  lib  usr  wizard_mounter.desktop  wizard_mounter.servic

 Here is the part of console output which explains why it happens:
 ...
 Making install in src
 make[2]: Entering directory `/tmp/wizard-mounter/src'
 make[3]: Entering directory `/tmp/wizard-mounter/src'
 /bin/sh ../mkinstalldirs /tmp/wizard-mounter/debian/wizard-mounter/usr/bin
 mkdir -p -- /tmp/wizard-mounter/debian/wizard-mounter/usr/bin
  /bin/sh ../libtool --mode=install

extras-assistant trouble

2009-07-07 Thread b0unc3
Hi,

I'm the developer of wizard-mounter (
https://garage.maemo.org/projects/wizard-mounter) and I have a problem with
the extras-assistant.
I build my own .deb in my sdk and it works fine, also the installation is
correct (as you can check by downloading the .deb directly from the browser
or you can try to build it yourself through svn in diablo-trunk/ ). When I
upload the .tar.gz and other files to the extras-assistant that, I suppose,
will automatically generate the deb but it result incorrect : the
installation works quite fine but it never show the entry in the menu-list
because the .desktop and .service files are placed alone in /.
I'm wondering why of this strange behavior and what I'm doing wrong since
the extras-assistant output is OK.
In my sdk I simply run dpkg-build -rfakeroot to build the .deb and other
files.
What do extras-assistant exactly to build the .deb ?
Thanks for the help.
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: developer program discount code does not work

2008-01-08 Thread b0unc3
I ordered mine a few minutes ago, with the new code sended in the last
mail without problems.

Btw I just wondering why nokia or maemo have changed that code.


On 1/8/08, Andrea Grandi [EMAIL PROTECTED] wrote:
 Hi,

 2008/1/8, Luca Donaggio [EMAIL PROTECTED]:
  I ordered mine yesterday morning from Nokia Shop Italy using the discount
  code I received with the last email and I received my brand new N810 a few
  minutes ago!

 you're the first!!! Congratulations :)

 I ordered mine on 4 January and it was shipped yesterday... I'm still
 waiting for the express courier :)

 --
 Andrea Grandi
 email: a.grandi [AT] gmail [DOT] com
 website: http://www.ptlug.org
 PGP Key: http://www.ptlug.org/andreagrandi.asc
 ___
 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