aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Chatzimichos <tampakrap@gentoo.org>2010-11-07 20:53:17 +0200
committerTheo Chatzimichos <tampakrap@gentoo.org>2010-11-07 20:53:17 +0200
commit8c9fa4110cbf54e0e27eef25ab7fb1c9ef8f4cc4 (patch)
tree875246ea016d5f59c2f69848385b11bc079e569f /www-client
parentRemove kde-base/kbugbuster:live -- dropped upstream (diff)
downloadkde-8c9fa4110cbf54e0e27eef25ab7fb1c9ef8f4cc4.tar.gz
kde-8c9fa4110cbf54e0e27eef25ab7fb1c9ef8f4cc4.tar.bz2
kde-8c9fa4110cbf54e0e27eef25ab7fb1c9ef8f4cc4.zip
[www-client/rekonq] 0.6.1 InCVS
Diffstat (limited to 'www-client')
-rw-r--r--www-client/rekonq/files/rekonq-0.6.1-cve-2010-2536.patch26
-rw-r--r--www-client/rekonq/rekonq-0.6.1.ebuild42
2 files changed, 0 insertions, 68 deletions
diff --git a/www-client/rekonq/files/rekonq-0.6.1-cve-2010-2536.patch b/www-client/rekonq/files/rekonq-0.6.1-cve-2010-2536.patch
deleted file mode 100644
index f84c0a1c13..0000000000
--- a/www-client/rekonq/files/rekonq-0.6.1-cve-2010-2536.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/src/webpage.cpp b/src/webpage.cpp
-index 9be0d3c..386f209 100644
---- a/src/webpage.cpp
-+++ b/src/webpage.cpp
-@@ -68,6 +68,9 @@
-
- // Qt Includes
- #include <QtCore/QFileInfo>
-+
-+#include <QtGui/QTextDocument>
-+
- #include <QtDBus/QDBusConnection>
- #include <QtDBus/QDBusConnectionInterface>
- #include <QtDBus/QDBusInterface>
-@@ -589,7 +592,10 @@ QString WebPage::errorPage(QNetworkReply *reply)
- }
-
- QString title = i18n("There was a problem while loading the page");
-- QString urlString = reply->url().toString(QUrl::RemoveUserInfo | QUrl::RemoveQuery | QUrl::RemovePath);
-+
-+ // NOTE:
-+ // this, to be sure BUG 217464 (Universal XSS) has been fixed..
-+ QString urlString = Qt::escape(reply->url().toString(QUrl::RemoveUserInfo | QUrl::RemoveQuery | QUrl::RemovePath));
-
- QString iconPath = QString("file://") + KIconLoader::global()->iconPath("dialog-warning" , KIconLoader::Small);
- iconPath.replace(QL1S("16"), QL1S("128"));
diff --git a/www-client/rekonq/rekonq-0.6.1.ebuild b/www-client/rekonq/rekonq-0.6.1.ebuild
deleted file mode 100644
index edaeb1da27..0000000000
--- a/www-client/rekonq/rekonq-0.6.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/rekonq/rekonq-0.5.0-r1.ebuild,v 1.2 2010/10/12 18:20:48 tampakrap Exp $
-
-EAPI=3
-
-WEBKIT_REQUIRED=always
-QT_MINIMAL="4.7"
-KDE_MINIMAL="4.5"
-
-if [[ ${PV} != *9999* ]]; then
- KDE_LINGUAS_DIR="i18n"
- KDE_LINGUAS="ca cs da de el en_GB es et fr hu it ja ko lt nb
- nds nl pt_BR pt ru sl sr sv uk zh_CN"
- KDE_DOC_DIRS="docs"
- KDE_HANDBOOK="optional"
- SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-else
- EGIT_REPO_URI="git://git.kde.org/rekonq.git"
- GIT_ECLASS="git"
-fi
-
-inherit kde4-base ${GIT_ECLASS}
-
-unset GIT_ECLASS
-
-DESCRIPTION="A browser based on qt-webkit"
-HOMEPAGE="http://rekonq.sourceforge.net/"
-
-LICENSE="GPL-3"
-SLOT="4"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug"
-
-DEPEND="
- >=x11-libs/qt-xmlpatterns-${QT_MINIMAL}
-"
-RDEPEND="${DEPEND}"
-
-RESTRICT="test"
-
-PATCHES=( "${FILESDIR}/${P}-cve-2010-2536.patch" )