Dear maintainer,

The version in stable (4:2.6.0-1) suffers from the same problem. As the fix 
simply means using https instead of http it was simple to back-port the patch 
to stable.
I have attached the back-ported patch, which works fine on my amd64 machine. 
The patch changes some web addresses from http to https and bumps copyright 
dates in comments. I'm not sure the latter really makes sense, but it doesn't 
have any effect on the compiled program anyway.

Regards,
Arnold Metselaar
commit 1d4a95bc3d36060a025b8950aaaca467253532bc
Author: Gilles Caulier <caulier.gil...@gmail.com>
Date:   Mon Jul 28 07:57:11 2014 +0200

    use SSL based url for flickr web service communication
    BUGS: 336835
    FIXED-IN: 4.2.0

--- a/extra/kipi-plugins/flickrexport/flickrtalker.cpp
+++ b/extra/kipi-plugins/flickrexport/flickrtalker.cpp
@@ -7,7 +7,7 @@
  * Description : a kipi plugin to export images to Flickr web service
  *
  * Copyright (C) 2005-2009 by Vardhman Jain <vardhman at gmail dot com>
- * Copyright (C) 2009-2012 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright (C) 2009-2014 by Gilles Caulier <caulier dot gilles at gmail dot com>
  *
  * This program is free software; you can redistribute it
  * and/or modify it under the terms of the GNU General
@@ -104,9 +104,9 @@
     }
     else
     {
-        m_apiUrl    = QString("http://www.flickr.com/services/rest/";);
-        m_authUrl   = QString("http://www.flickr.com/services/auth/";);
-        m_uploadUrl = QString("http://api.flickr.com/services/upload/";);
+        m_apiUrl    = QString("https://www.flickr.com/services/rest/";);
+        m_authUrl   = QString("https://www.flickr.com/services/auth/";);
+        m_uploadUrl = QString("https://api.flickr.com/services/upload/";);
 
         m_apikey = "49d585bafa0758cb5c58ab67198bf632";
         m_secret = "34b39925e6273ffd";
--- a/extra/kipi-plugins/flickrexport/flickrtalker.h
+++ b/extra/kipi-plugins/flickrexport/flickrtalker.h
@@ -7,7 +7,7 @@
  * Description : a kipi plugin to export images to Flickr web service
  *
  * Copyright (C) 2005-2009 by Vardhman Jain <vardhman at gmail dot com>
- * Copyright (C) 2009      by Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright (C) 2009-2014 by Gilles Caulier <caulier dot gilles at gmail dot com>
  *
  * This program is free software; you can redistribute it
  * and/or modify it under the terms of the GNU General

Reply via email to