summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-07-16 00:11:01 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-07-16 00:11:01 +0200
commita13ffbbb2c36b787c8abb5a5f2ce4270a21bab43 (patch)
tree4862690433e4104c0a5ae7a14998c841b1de95c3 /src
parentRestoring KDE webpage actions (KDE webkit code) (diff)
downloadrekonq-a13ffbbb2c36b787c8abb5a5f2ce4270a21bab43.tar.xz
Removed some unuseful headers
Diffstat (limited to 'src')
-rw-r--r--src/webpage.cpp60
-rw-r--r--src/webpage.h10
2 files changed, 15 insertions, 55 deletions
diff --git a/src/webpage.cpp b/src/webpage.cpp
index a68d4eba..ecf61715 100644
--- a/src/webpage.cpp
+++ b/src/webpage.cpp
@@ -3,7 +3,10 @@
* This file is a part of the rekonq project
*
* Copyright (C) 2008 Benjamin C. Meyer <ben@meyerhome.net>
-* Copyright (C) 2009 by Andrea Diamantini <adjam7 at gmail dot com>
+* Copyright (C) 2008 Dirk Mueller <mueller@kde.org>
+* Copyright (C) 2008 Urs Wolfer <uwolfer @ kde.org>
+* Copyright (C) 2008 Michael Howell <mhowell123@gmail.com>
+* Copyright (C) 2008-2009 by Andrea Diamantini <adjam7 at gmail dot com>
*
*
* This program is free software; you can redistribute it
@@ -224,12 +227,6 @@ void WebPage::viewErrorPage(QNetworkReply *reply)
frames.append(frame);
}
}
-// if (m_loadingUrl == reply->url())
-// {
-// mainFrame()->setHtml(html, reply->url());
-// // Don't put error pages to the history.
-// Application::historyManager()->removeHistoryEntry(reply->url(), mainFrame()->title());
-// }
}
@@ -271,47 +268,13 @@ void WebPage::slotDownloadRequested(const QNetworkRequest &request)
const KUrl url(request.url());
kDebug() << url;
-// const QString fileName = d->getFileNameForDownload(request, reply);
-//
-// // parts of following code are based on khtml_ext.cpp
-// // DownloadManager <-> konqueror integration
-// // find if the integration is enabled
-// // the empty key means no integration
-// // only use download manager for non-local urls!
-// bool downloadViaKIO = true;
-// if (!url.isLocalFile()) {
-// KConfigGroup cfg = KSharedConfig::openConfig("konquerorrc", KConfig::NoGlobals)->group("HTML Settings");
-// const QString downloadManger = cfg.readPathEntry("DownloadManager", QString());
-// if (!downloadManger.isEmpty()) {
-// // then find the download manager location
-// kDebug() << "Using: " << downloadManger << " as Download Manager";
-// QString cmd = KStandardDirs::findExe(downloadManger);
-// if (cmd.isEmpty()) {
-// QString errMsg = i18n("The Download Manager (%1) could not be found in your $PATH.", downloadManger);
-// QString errMsgEx = i18n("Try to reinstall it. \n\nThe integration with Konqueror will be disabled.");
-// KMessageBox::detailedSorry(view(), errMsg, errMsgEx);
-// cfg.writePathEntry("DownloadManager", QString());
-// cfg.sync();
-// } else {
-// downloadViaKIO = false;
-// cmd += ' ' + KShell::quoteArg(url.url());
-// kDebug() << "Calling command" << cmd;
-// KRun::runCommand(cmd, view());
-// }
-// }
-// }
-//
-// if (downloadViaKIO) {
- const QString destUrl = KFileDialog::getSaveFileName(url.fileName(), QString(), view());
- if (destUrl.isEmpty()) return;
- KIO::Job *job = KIO::file_copy(url, KUrl(destUrl), -1, KIO::Overwrite);
- //job->setMetaData(metadata); //TODO: add metadata from request
- job->addMetaData("MaxCacheSize", "0"); // Don't store in http cache.
- job->addMetaData("cache", "cache"); // Use entry from cache if available.
- job->uiDelegate()->setAutoErrorHandlingEnabled(true);
-// }
-
-
+ const QString destUrl = KFileDialog::getSaveFileName(url.fileName(), QString(), view());
+ if (destUrl.isEmpty()) return;
+ KIO::Job *job = KIO::file_copy(url, KUrl(destUrl), -1, KIO::Overwrite);
+ //job->setMetaData(metadata); //TODO: add metadata from request
+ job->addMetaData("MaxCacheSize", "0"); // Don't store in http cache.
+ job->addMetaData("cache", "cache"); // Use entry from cache if available.
+ job->uiDelegate()->setAutoErrorHandlingEnabled(true);
}
@@ -326,4 +289,3 @@ WebPage *WebPage::newWindow(WebWindowType type)
Q_UNUSED(type);
return 0;
}
-
diff --git a/src/webpage.h b/src/webpage.h
index d8ffc787..9c4eef49 100644
--- a/src/webpage.h
+++ b/src/webpage.h
@@ -2,7 +2,10 @@
*
* This file is a part of the rekonq project
*
-* Copyright (C) 2007-2008 Trolltech ASA. All rights reserved
+* Copyright (C) 2008 Benjamin C. Meyer <ben@meyerhome.net>
+* Copyright (C) 2008 Dirk Mueller <mueller@kde.org>
+* Copyright (C) 2008 Urs Wolfer <uwolfer @ kde.org>
+* Copyright (C) 2008 Michael Howell <mhowell123@gmail.com>
* Copyright (C) 2008-2009 by Andrea Diamantini <adjam7 at gmail dot com>
*
*
@@ -26,9 +29,6 @@
// KDE Includes
#include <KUrl>
-#include <kdewebkit/kwebpage.h>
-#include <kdewebkit/kwebview.h>
-
// Qt Includes
#include <QWebPage>
@@ -65,8 +65,6 @@ protected Q_SLOTS:
private:
void viewErrorPage(QNetworkReply *);
-
-// KUrl m_loadingUrl;
};
#endif