Re: [evolution-patches] partial fix for bug #47541



Curious, why does this work on 1.5, is it the composer/gthtml adding the
http:// explictly?

On Thu, 2003-08-28 at 12:37, Jeffrey Stedfast wrote:
> Index: ChangeLog
> ===================================================================
> RCS file: /cvs/gnome/evolution/mail/ChangeLog,v
> retrieving revision 1.2761.2.16
> diff -u -r1.2761.2.16 ChangeLog
> --- ChangeLog   22 Aug 2003 17:01:07 -0000      1.2761.2.16
> +++ ChangeLog   28 Aug 2003 17:36:22 -0000
> @@ -1,3 +1,9 @@
> +2003-08-28  Jeffrey Stedfast  <fejj ximian com>
> +
> +       * mail-display.c (on_link_clicked): Don't pass cid: nor
> +       thismessage: urls off to gnome_url_show(). See discussion of bug
> +       #47541.
> +
>  2003-08-14  Jeffrey Stedfast  <fejj ximian com>
>  
>         * mail-ops.c (mail_send_message): Don't abort at the first
> failure
> Index: mail-display.c
> ===================================================================
> RCS file: /cvs/gnome/evolution/mail/mail-display.c,v
> retrieving revision 1.282.4.5
> diff -u -r1.282.4.5 mail-display.c
> --- mail-display.c      19 Aug 2003 04:15:07 -0000      1.282.4.5
> +++ mail-display.c      28 Aug 2003 17:36:23 -0000
> @@ -305,6 +305,10 @@
>                 send_to_url (url, NULL);
>         } else if (*url == '#') {
>                 mail_display_jump_to_anchor (md, url);
> +       } else if (!strncasecmp (url, "cid:", 4) != 0) {
> +               /* FIXME: what do we do here? we can't pass to
> gnome_url_show() */
> +       } else if (!strncasecmp (url, "thismessage:", 12)) {
> +               /* FIXME: same as jump_to_anchor? */
>         } else {
>                 GError *err = NULL;
>  




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]