From b4ee41496efb89fe7c45c012fe77841f5059b6d8 Mon Sep 17 00:00:00 2001 From: Alexey Shvetsov Date: Sun, 14 Jun 2009 12:36:35 +0000 Subject: [kde-base/kdeaddons] Clean unneeded patches (Portage version: 2.2_rc33/cvs/Linux x86_64) --- kde-base/kdeaddons/ChangeLog | 8 +++-- .../files/konq-plugins-3.5-archiver.patch | 37 ---------------------- 2 files changed, 6 insertions(+), 39 deletions(-) delete mode 100644 kde-base/kdeaddons/files/konq-plugins-3.5-archiver.patch (limited to 'kde-base/kdeaddons') diff --git a/kde-base/kdeaddons/ChangeLog b/kde-base/kdeaddons/ChangeLog index c7e70f2aacd1..4777ff423705 100644 --- a/kde-base/kdeaddons/ChangeLog +++ b/kde-base/kdeaddons/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for kde-base/kdeaddons -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeaddons/ChangeLog,v 1.231 2008/06/07 15:59:37 keytoaster Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeaddons/ChangeLog,v 1.232 2009/06/14 12:36:35 alexxy Exp $ + + 14 Jun 2009; Alexey Shvetsov + -files/konq-plugins-3.5-archiver.patch: + Clean unneeded patches 07 Jun 2008; Tobias Heinlein -kdeaddons-3.5.8.ebuild: diff --git a/kde-base/kdeaddons/files/konq-plugins-3.5-archiver.patch b/kde-base/kdeaddons/files/konq-plugins-3.5-archiver.patch deleted file mode 100644 index 441567df1b2f..000000000000 --- a/kde-base/kdeaddons/files/konq-plugins-3.5-archiver.patch +++ /dev/null @@ -1,37 +0,0 @@ ------------------------------------------------------------------------- -r626814 | mueller | 2007-01-24 18:16:52 +0100 (Wed, 24 Jan 2007) | 5 lines -Changed paths: - M /branches/KDE/3.5/kdeaddons/konq-plugins/webarchiver/archivedialog.cpp - M /branches/KDE/3.5/kdeaddons/konq-plugins/webarchiver/webarchivecreator.cpp - -fix a minor but annoying privacy issue: the web archiver -would happily put local files or other launch other unsafe -protocols if referenced in the website, even though konqueror -itself wouldn't handle it - ------------------------------------------------------------------------- -Index: konq-plugins/webarchiver/archivedialog.cpp -=================================================================== ---- konq-plugins/webarchiver/archivedialog.cpp (revision 626813) -+++ konq-plugins/webarchiver/archivedialog.cpp (revision 626814) -@@ -395,12 +395,15 @@ void ArchiveDialog::saveArchiveRecursive - QString ArchiveDialog::handleLink(const KURL& _url, const QString& _link) - { - KURL url(getAbsoluteURL(_url, _link)); -- QString tarFileName; - -- if (m_state==Retrieving) -- m_urlsToDownload.append(url); -- else if (m_state==Saving) -- tarFileName = m_downloadedURLDict[url.url()]; -+ QString tarFileName; -+ if (kapp->authorizeURLAction("redirect", _url, url)) -+ { -+ if (m_state==Retrieving) -+ m_urlsToDownload.append(url); -+ else if (m_state==Saving) -+ tarFileName = m_downloadedURLDict[url.url()]; -+ } - - return tarFileName; - } -- cgit v1.2.3-65-gdbad