Open Source Telephony
 help / color / mirror / Atom feed
From: Marcel Holtmann <marcel@holtmann.org>
To: ofono@ofono.org
Subject: Re: list-modems patch
Date: Fri, 15 Oct 2010 12:09:26 +0300	[thread overview]
Message-ID: <1287133766.3316.59.camel@aeonflux> (raw)
In-Reply-To: <1287133345.21789.0.camel@mezon.ru>

[-- Attachment #1: Type: text/plain, Size: 4638 bytes --]

Hi Alex,

> > > > > > > Sometimes i see 
> > > > > > > 
> > > > > > > [root(a)alexander-desktop ofono-0.31]# /usr/lib/ofono/test/list-modems 
> > > > > > > [ /huawei5 ]
> > > > > > >     Features = sim 
> > > > > > >     Powered = 1
> > > > > > >     Interfaces = org.ofono.Phonebook org.ofono.AudioSettings
> > > > > > > org.ofono.VoiceCallManager org.ofono.SimManager 
> > > > > > >     Online = 0
> > > > > > >     Model = E1550
> > > > > > >     Manufacturer = huawei
> > > > > > >     Serial = 353142033084081
> > > > > > >     Revision = 11.608.12.00.143
> > > > > > >     [ org.ofono.Phonebook ]
> > > > > > >     [ org.ofono.AudioSettings ]
> > > > > > > Traceback (most recent call last):
> > > > > > >   File "/usr/lib/ofono/test/list-modems", line 61, in <module>
> > > > > > >     print "        %s = %s" % (key, val).encode('ascii')
> > > > > > > 
> > > > > > > 
> > > > > > > Patch
> > > > > > > 
> > > > > > > 
> > > > > > > 
> > > > > > > diff --git a/test/list-modems b/test/list-modems
> > > > > > > index 557efd5..df1dca8 100755
> > > > > > > --- a/test/list-modems
> > > > > > > +++ b/test/list-modems
> > > > > > > @@ -58,6 +58,10 @@ for path, properties in modems:
> > > > > > >                                         ")" for text, icon in
> > > > > > > properties[key] ])
> > > > > > >                         else:
> > > > > > >                              	val = str(properties[key])
> > > > > > > -                       print "        %s = %s" % (key, val)
> > > > > > > +                       try:
> > > > > > > +                               print  "       %s = %s" % (key, val)
> > > > > > > +                       except:
> > > > > > > +                               continue
> > > > > > > +
> > > > > > 
> > > > > > can you at least print the key value. Just not printing that property at
> > > > > > all is bad since it is there. Just marking the value as not printable
> > > > > > seems to be the better approach.
> > > > > > 
> > > > > > Regards
> > > > > > 
> > > > > > Marcel
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > 
> > > > > Last fully-working script
> > > > > 
> > > > > [ /huawei0 ]
> > > > > 
> > > > > 
> > > > > del overquote
> > > > > 
> > > > >         ServiceNumbers = [Моб. Помощник] = '111' [MTС] =
> > > > > '+78003330890' [Служба спасения] = '112' 
> > > > >         CardIdentifier = 89701012417666587513
> > > > >         LockedPins = 
> > > > >         PinRequired = none
> > > > >         SubscriberIdentity = 250011766658751
> > > > >         Present = 1
> > > > > 
> > > > > 
> > > > > [Моб. Помощник] - in russian means "Mobile Partner"
> > > > > [Служба спасения] - rescue rangers :3           
> > > > > 
> > > > > 
> > > > > 
> > > > > 
> > > > > diff --git a/test/list-modems b/test/list-modems
> > > > > index 557efd5..59765f9 100755
> > > > > --- a/test/list-modems
> > > > > +++ b/test/list-modems
> > > > > @@ -58,6 +58,10 @@ for path, properties in modems:
> > > > >                                         ")" for text, icon in
> > > > > properties[key] ])
> > > > >                         else:
> > > > >                                 val = str(properties[key])
> > > > > -                       print "        %s = %s" % (key, val)
> > > > > -
> > > > > +                       try:
> > > > > +                               print "        %s = %s" %
> > > > > (key.encode('utf8'), val.encode('utf8'))
> > > > > +                       except:
> > > > > +                               print "Cannot encode some charcters
> > > > > please change locale"
> > > > > +                       else:
> > > > > +                                continue
> > > > >         print
> > > > 
> > > > patch does not apply. Please always check with git am that your patch
> > > > would apply cleanly. And that your mailer doesn't screw it up.
> > > > 
> > > > Regards
> > > > 
> > > > Marcel
> > > > 
> > > > 
> > > > 
> > > 
> > > Evolution reformate message anyway
> > > Please click on link.
> > > Was checked and applied for me with success
> > > 
> > > http://pastie.org/pastes/1220422/text
> > 
> > I see a whitespace damage in the patch and it is still not possible to
> > apply this. Please send a proper patch to the mailing list. You do need
> > to get your email client fixed anyway.
> > 
> > Regards
> > 
> > Marcel
> > 
> > 
> > 
> 
> Patch verified with applying 2 times.
> File in attach.

if the patch does not apply with git am, it is not ready.

Regards

Marcel



       reply	other threads:[~2010-10-15  9:09 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1287133345.21789.0.camel@mezon.ru>
2010-10-15  9:09 ` Marcel Holtmann [this message]
2010-10-14  8:10 [PATCH 08/13] stk: IdleModeIcon and MainMenuIcon properties Denis Kenzior
2010-10-14  8:31 ` list-modems patch Alexander A Khryukin
2010-10-14  8:45   ` Marcel Holtmann
2010-10-14  9:17     ` Alexander A Khryukin
2010-10-14  9:34     ` Alexander A Khryukin
2010-10-14 10:13       ` Marcel Holtmann
2010-10-14 10:36         ` Alexander A Khryukin
2010-10-15  6:17           ` Marcel Holtmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1287133766.3316.59.camel@aeonflux \
    --to=marcel@holtmann.org \
    --cc=ofono@ofono.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox