[Pidgin] #15273: HTTPS Link contents shown via IE cache on Windows 8

Pidgin trac at pidgin.im
Tue Sep 25 01:11:59 EDT 2012


#15273: HTTPS Link contents shown via IE cache on Windows 8
----------------------------------+------------------------------
 Reporter:  kibmcz                |       Owner:  datallah
     Type:  defect                |      Status:  new
Milestone:                        |   Component:  winpidgin (gtk)
  Version:  2.10.6                |  Resolution:
 Keywords:  Windows 8 https file  |
----------------------------------+------------------------------

Comment (by EionRobb):

 removing the SEE_MASK_CLASSNAME isn't 100% correct, this just turns on
 auto-detect of the path which probably opens things up to problems.  I've
 found that sending in the correct handler is more valid:

 {{{

 @@ -174,7 +174,10 @@
         /* We'll allow whatever URI schemes are supported by the
          * default http browser.
          */
 -       winpidgin_shell_execute(uri, "open", "http");
 +       if (g_str_has_prefix(uri, "https://"))
 +               winpidgin_shell_execute(uri, "open", "https");
 +       else
 +               winpidgin_shell_execute(uri, "open", "http");
  }

  #define PIDGIN_WM_FOCUS_REQUEST (WM_APP + 13)

 }}}

-- 
Ticket URL: <https://developer.pidgin.im/ticket/15273#comment:5>
Pidgin <http://pidgin.im>
Pidgin


More information about the Tracker mailing list