[SCM] kio packaging branch, master, updated. debian/5.28.0-1-14-g6a34213

Maximiliano Curia maxy at moszumanska.debian.org
Wed Apr 5 08:43:39 UTC 2017


Gitweb-URL: http://git.debian.org/?p=pkg-kde/frameworks/kio.git;a=commitdiff;h=e89acce

The following commit has been merged in the master branch:
commit e89acce6f88a075450d698cd3d60657ae09d28d8
Author: Maximiliano Curia <maxy at gnuservers.com.ar>
Date:   Tue Apr 4 17:42:18 2017 +0200

    Add new upstream patch: keep-query-encoding-when-HTTP-Proxy-is-used.patch
---
 ...ep-query-encoding-when-HTTP-Proxy-is-used.patch | 24 ++++++++++++++++++++++
 debian/patches/series                              |  1 +
 2 files changed, 25 insertions(+)

diff --git a/debian/patches/keep-query-encoding-when-HTTP-Proxy-is-used.patch b/debian/patches/keep-query-encoding-when-HTTP-Proxy-is-used.patch
new file mode 100644
index 0000000..f8abc57
--- /dev/null
+++ b/debian/patches/keep-query-encoding-when-HTTP-Proxy-is-used.patch
@@ -0,0 +1,24 @@
+From: Alexander Trufanov <trufanovan at gmail.com>
+Date: Tue, 21 Mar 2017 16:51:32 +0300
+Subject: keep query encoding when HTTP Proxy is used
+
+REVIEW:130040
+
+Otherwise some '%XX' parts of url query might be converted back to ASCII and this cause problems while passing info_hash to torrent trackers. Detailed description is in review.
+---
+ src/ioslaves/http/http.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/ioslaves/http/http.cpp b/src/ioslaves/http/http.cpp
+index 62eb09d2..0ea501d8 100644
+--- a/src/ioslaves/http/http.cpp
++++ b/src/ioslaves/http/http.cpp
+@@ -2322,7 +2322,7 @@ QString HTTPProtocol::formatRequestUri() const
+         u.setPort(m_request.url.port());
+         u.setPath(m_request.url.path(QUrl::FullyEncoded));
+         u.setQuery(m_request.url.query(QUrl::FullyEncoded));
+-        return u.toString();
++        return u.toString(QUrl::FullyEncoded);
+     } else {
+         QString result = m_request.url.path(QUrl::FullyEncoded);
+         if (m_request.url.hasQuery()) {
diff --git a/debian/patches/series b/debian/patches/series
index fff9c36..76d2bc0 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -13,3 +13,4 @@ kssl-Ensure-user-certificate-directory-has-been-created-b.patch
 Fix-memleak-in-KDynamicJobTracker-KWidgetJobTracker-needs.patch
 Fix-parsing-of-directories-listing-on-a-specific-ftp-serv.patch
 Sanitize-URLs-before-passing-them-to-FindProxyForURL.patch
+keep-query-encoding-when-HTTP-Proxy-is-used.patch

-- 
kio packaging



More information about the pkg-kde-commits mailing list