Re: [Evolution] Time Zone Info
Hey that's super. Really appreciate it. Axel - Ursprüngliche Mail Von: Chenthill <[EMAIL PROTECTED]> An: Axel <[EMAIL PROTECTED]> CC: Evolution-list@gnome.org; [EMAIL PROTECTED] Gesendet: Freitag, den 6. Juni 2008, 15:59:04 Uhr Betreff: Re: AW: AW: [Evolution] Time Zone Info Hi Axel, There was a bug in the evolution code which I have fixed now. Here is the attached patch. I am committing the patch to stable and trunk. - Chenthill. On Thu, 2008-06-05 at 03:42 -0700, Axel wrote: > I am under the impression that Evo has its own translation tables. The > one for Bangkok is wrong, someone just typed rubish there - UTC. > +6:42:04, although it should be UTC +7 (for instance like Jakarta). > > System time and all other system-zone files are correct. > > Regards, > Axel > > > > - Ursprüngliche Mail > Von: chenthill <[EMAIL PROTECTED]> > An: Axel <[EMAIL PROTECTED]> > CC: Evolution-list@gnome.org > Gesendet: Donnerstag, den 5. Juni 2008, 06:21:54 Uhr > Betreff: Re: AW: [Evolution] Time Zone Info > > Is your system time showing up correctly ? > > - Chenthill. > On Thu, 2008-06-05 at 03:00 -0700, Axel wrote: > > Kubuntu 8.04 - Evo 2.22.2 > > > > Thanks, > > Axel > > > > > > - Ursprüngliche Mail > > Von: chenthill <[EMAIL PROTECTED]> > > An: Axel <[EMAIL PROTECTED]> > > CC: Evolution-list@gnome.org > > Gesendet: Donnerstag, den 5. Juni 2008, 06:07:31 Uhr > > Betreff: Re: [Evolution] Time Zone Info > > > > What is the distro which your using ? and What is the version of > your > > evolution ? > > > > - Chenthill. > > On Wed, 2008-06-04 at 23:48 -0700, Axel wrote: > > > Dear All - > > > > > > The time zone info for my current location, Bangkok, is wrong. I > > read > > > older emails that these are text files which can be edited. > However, > > I > > > can find them. If i look into usr/share/zoneinfo these are binarie > > > files and not editable. > > > > > > Please advise. > > > > > > Thanks, > > > Axel > > > > > > > > > > > > > > > > > > __ > > > Gesendet von Yahoo! Mail. > > > Dem pfiffigeren Posteingang. > > > ___ > > > Evolution-list mailing list > > > Evolution-list@gnome.org > > > http://mail.gnome.org/mailman/listinfo/evolution-list > > > > > > > > > > > __ > > Gesendet von Yahoo! Mail. > > Dem pfiffigeren Posteingang. > > > > > __ > Gesendet von Yahoo! Mail. > Dem pfiffigeren Posteingang. __ Gesendet von Yahoo! Mail. Dem pfiffigeren Posteingang. http://de.overview.mail.yahoo.com___ Evolution-list mailing list Evolution-list@gnome.org http://mail.gnome.org/mailman/listinfo/evolution-list
Re: [Evolution] Time Zone Info
Hi Axel, There was a bug in the evolution code which I have fixed now. Here is the attached patch. I am committing the patch to stable and trunk. - Chenthill. On Thu, 2008-06-05 at 03:42 -0700, Axel wrote: > I am under the impression that Evo has its own translation tables. The > one for Bangkok is wrong, someone just typed rubish there - UTC. > +6:42:04, although it should be UTC +7 (for instance like Jakarta). > > System time and all other system-zone files are correct. > > Regards, > Axel > > > > - Ursprüngliche Mail > Von: chenthill <[EMAIL PROTECTED]> > An: Axel <[EMAIL PROTECTED]> > CC: Evolution-list@gnome.org > Gesendet: Donnerstag, den 5. Juni 2008, 06:21:54 Uhr > Betreff: Re: AW: [Evolution] Time Zone Info > > Is your system time showing up correctly ? > > - Chenthill. > On Thu, 2008-06-05 at 03:00 -0700, Axel , > > Kubuntu 8.04 - Evo 2.22.2 > > > > Thanks, > > Axel > > > > > > - Ursprüngliche Mail > > Von: chenthill <[EMAIL PROTECTED]> > > An: Axel <[EMAIL PROTECTED]> > > CC: Evolution-list@gnome.org > > Gesendet: Donnerstag, den 5. Juni 2008, 06:07:31 Uhr > > Betreff: Re: [Evolution] Time Zone Info > > > > What is the distro which your using ? and What is the version of > your > > evolution ? > > > > - Chenthill. > > On Wed, 2008-06-04 at 23:48 -0700, Axel wrote: > > > Dear All - > > > > > > The time zone info for my current location, Bangkok, is wrong. I > > read > > > older emails that these are text files which can be edited. > However, > > I > > > can find them. If i look into usr/share/zoneinfo these are binarie > > > files and not editable. > > > > > > Please advise. > > > > > > Thanks, > > > Axel > > > > > > > > > > > > > > > > > > __ > > > Gesendet von Yahoo! Mail. > > > Dem pfiffigeren Posteingang. > > > ___ > > > Evolution-list mailing list > > > Evolution-list@gnome.org > > > http://mail.gnome.org/mailman/listinfo/evolution-list > > > > > > > > > > > __ > > Gesendet von Yahoo! Mail. > > Dem pfiffigeren Posteingang. > > > > > __ > Gesendet von Yahoo! Mail. > Dem pfiffigeren Posteingang. Index: ChangeLog === --- ChangeLog (revision 643) +++ ChangeLog (working copy) @@ -1,3 +1,8 @@ +2008-06-06 Chenthill Palanisamy <[EMAIL PROTECTED]> + + * src/libical/icaltz-util.c: (icaltzutil_fetch_timezone): If there + are no transitions take the index for types as 0. + 2008-05-06 Patrick Ohly <[EMAIL PROTECTED]> * src/libical/icalmemory.c: mark libical versions Index: src/libical/icaltz-util.c === --- src/libical/icaltz-util.c (revision 643) +++ src/libical/icaltz-util.c (working copy) @@ -148,7 +148,7 @@ find_transidx (time_t *transitions, ttin /* If the transition time is not found, it means the timezone does not have the dst changes */ if (!found) { - *stdidx = i -1; + *stdidx = i-1; return; } @@ -326,9 +326,9 @@ icaltzutil_fetch_timezone (const char *l icalcomponent_add_property (tz_comp, icalprop); if (stdidx != -1) { - if (stdidx != 0) + if (num_trans != 0) zidx = trans_idx [stdidx]; - else + else zidx = 0; std_comp = icalcomponent_new (ICAL_XSTANDARD_COMPONENT); ___ Evolution-list mailing list Evolution-list@gnome.org http://mail.gnome.org/mailman/listinfo/evolution-list
Re: [Evolution] Time Zone Info
Hi Axel, There was a bug in the evolution code which I have fixed now. Here is the attached patch. I am committing the patch to stable and trunk. - Chenthill. On Thu, 2008-06-05 at 03:42 -0700, Axel wrote: > I am under the impression that Evo has its own translation tables. The > one for Bangkok is wrong, someone just typed rubish there - UTC. > +6:42:04, although it should be UTC +7 (for instance like Jakarta). > > System time and all other system-zone files are correct. > > Regards, > Axel > > > > - Ursprüngliche Mail > Von: chenthill <[EMAIL PROTECTED]> > An: Axel <[EMAIL PROTECTED]> > CC: Evolution-list@gnome.org > Gesendet: Donnerstag, den 5. Juni 2008, 06:21:54 Uhr > Betreff: Re: AW: [Evolution] Time Zone Info > > Is your system time showing up correctly ? > > - Chenthill. > On Thu, 2008-06-05 at 03:00 -0700, Axel wrote: > > Kubuntu 8.04 - Evo 2.22.2 > > > > Thanks, > > Axel > > > > > > - Ursprüngliche Mail > > Von: chenthill <[EMAIL PROTECTED]> > > An: Axel <[EMAIL PROTECTED]> > > CC: Evolution-list@gnome.org > > Gesendet: Donnerstag, den 5. Juni 2008, 06:07:31 Uhr > > Betreff: Re: [Evolution] Time Zone Info > > > > What is the distro which your using ? and What is the version of > your > > evolution ? > > > > - Chenthill. > > On Wed, 2008-06-04 at 23:48 -0700, Axel wrote: > > > Dear All - > > > > > > The time zone info for my current location, Bangkok, is wrong. I > > read > > > older emails that these are text files which can be edited. > However, > > I > > > can find them. If i look into usr/share/zoneinfo these are binarie > > > files and not editable. > > > > > > Please advise. > > > > > > Thanks, > > > Axel > > > > > > > > > > > > > > > > > > __ > > > Gesendet von Yahoo! Mail. > > > Dem pfiffigeren Posteingang. > > > ___ > > > Evolution-list mailing list > > > Evolution-list@gnome.org > > > http://mail.gnome.org/mailman/listinfo/evolution-list > > > > > > > > > > > __ > > Gesendet von Yahoo! Mail. > > Dem pfiffigeren Posteingang. > > > > > __ > Gesendet von Yahoo! Mail. > Dem pfiffigeren Posteingang. Index: ChangeLog === --- ChangeLog (revision 643) +++ ChangeLog (working copy) @@ -1,3 +1,8 @@ +2008-06-06 Chenthill Palanisamy <[EMAIL PROTECTED]> + + * src/libical/icaltz-util.c: (icaltzutil_fetch_timezone): If there + are no transitions take the index for types as 0. + 2008-05-06 Patrick Ohly <[EMAIL PROTECTED]> * src/libical/icalmemory.c: mark libical versions Index: src/libical/icaltz-util.c === --- src/libical/icaltz-util.c (revision 643) +++ src/libical/icaltz-util.c (working copy) @@ -148,7 +148,7 @@ find_transidx (time_t *transitions, ttin /* If the transition time is not found, it means the timezone does not have the dst changes */ if (!found) { - *stdidx = i -1; + *stdidx = i-1; return; } @@ -326,9 +326,9 @@ icaltzutil_fetch_timezone (const char *l icalcomponent_add_property (tz_comp, icalprop); if (stdidx != -1) { - if (stdidx != 0) + if (num_trans != 0) zidx = trans_idx [stdidx]; - else + else zidx = 0; std_comp = icalcomponent_new (ICAL_XSTANDARD_COMPONENT); ___ Evolution-list mailing list Evolution-list@gnome.org http://mail.gnome.org/mailman/listinfo/evolution-list
Re: [Evolution] opening PDF attachments
You need to open Nautilis ( if you don't have it, as I do coz I use KDE, install it :-( ) Then over a pdf file do right clik and select properties. There is an icon for the actions to do with that type an let you select the applications for it. I have to do the same for .doc files on Fedora 9. Can't find a short cut. LALO On Wed, 2008-06-04 at 13:11 -0400, Art Alexion wrote: > On Wed, 2008-06-04 at 12:35 -0400, Pete Biggs wrote: > > > > and/or > > > > 2) use nautilus to associate evince/acroreader/appOfChoice with the > > > > file type. > > > > > > Seems to already be associated when I right click or double click the > > > file. This seems to only be affecting Evo. > > > > > > I tried adding a mimetype for .PDF as well as .pdf, but that didn't make > > > any difference. > > > > Is it all PDFs or just in one email? I've had problems with mail from > > some sources that don't correctly structure the mime information such > > that, for instance, .doc files won't open by double clicking - I have to > > save them and then open them - other .doc files are fine. > > Even happens with PDFs sent to myself from the same version of Evo on > the same machine. > > The mimetype is application/acrobat, though I think it used to look for > application/PDF. I added a mimetype for application/acrobat copying > everything from application/pdf, but mime-edit doesn't select an > associated app; it just defines the mimetype. > > > ___ > Evolution-list mailing list > Evolution-list@gnome.org > http://mail.gnome.org/mailman/listinfo/evolution-list El presente e-mail y cualquierposible archivo adjunto está dirigido únicamente al destinatario del mensaje y contiene información que puede ser confidencial. Si Ud. no es el destinatario correcto por favor notifique al remitente respondiendo anexando este mensaje y elimine inmediatamente el e-mail y los posibles archivos adjuntos al mismo de su sistema. Está prohibida cualquier utilización, difusión o copia de este e-mail por cualquier persona o entidad que no sean las específicas destinatarias del mensaje. ANTEL no acepta ninguna responsabilidad con respecto a cualquier comunicación que haya sido emitida incumpliendo nuestra Política de Seguridad de la Información. . . . . . . . . . This e-mail and any attachment is confidential and is intended solely for the addressee(s). If you are not intended recipient please inform the sender immediately, answering this e-mail and delete it as well as the attached files. Any use, circulation or copy of this e-mail by any person or entity that is not the specific addressee(s) is prohibited. ANTEL is not responsible for any communication emitted without respecting our Information Security Policy. ___ Evolution-list mailing list Evolution-list@gnome.org http://mail.gnome.org/mailman/listinfo/evolution-list