summaryrefslogtreecommitdiff
path: root/src/protocolhandler.cpp
diff options
context:
space:
mode:
authorRohan Garg <rohangarg@kubuntu.org>2010-10-14 23:30:36 +0530
committerRohan Garg <rohangarg@kubuntu.org>2010-10-14 23:30:36 +0530
commitf8a2d38a68138a2677774a6cdac8cd90ec6ca185 (patch)
treeee98de87976019beb25843fe3a058f26df79dfbc /src/protocolhandler.cpp
parentFix 'make buildtests' (diff)
downloadrekonq-f8a2d38a68138a2677774a6cdac8cd90ec6ca185.tar.xz
Optimize rekonq to handle more protocols
Diffstat (limited to 'src/protocolhandler.cpp')
-rw-r--r--src/protocolhandler.cpp43
1 files changed, 18 insertions, 25 deletions
diff --git a/src/protocolhandler.cpp b/src/protocolhandler.cpp
index be236843..4ac85738 100644
--- a/src/protocolhandler.cpp
+++ b/src/protocolhandler.cpp
@@ -49,6 +49,8 @@
#include <KProcess>
#include <KStandardDirs>
#include <KToolInvocation>
+#include <KProtocolInfo>
+#include <KRun>
// Qt Includes
#include <QtNetwork/QNetworkRequest>
@@ -74,8 +76,8 @@ bool ProtocolHandler::preHandling(const QNetworkRequest &request, QWebFrame *fra
_url = request.url();
_frame = frame;
- // "http(s)" (fast) handling
- if (_url.protocol() == QL1S("http") || _url.protocol() == QL1S("https"))
+ // rekonq can handle http/s and file browsing easily
+ if (_url.protocol() == QL1S("http") || _url.protocol() == QL1S("https") || _url.protocol() == QL1S("file"))
return false;
// relative urls
@@ -104,29 +106,6 @@ bool ProtocolHandler::preHandling(const QNetworkRequest &request, QWebFrame *fra
return true;
}
- // "mailto" handling
- if (_url.protocol() == QL1S("mailto"))
- {
- KToolInvocation::invokeMailer(_url);
- return true;
- }
-
- // "apturl" handling
- if (_url.protocol() == QL1S ("apt"))
- {
- //Declare apturl as QString
- QString apturl="apturl";
- //We need to convert the url to QStringList to pass as a argument to apturl
- QStringList host;
- host << _url.url();
-
- if ( KProcess::execute (apturl,host)==0)
- return true;
- else
- return false;
-
- }
-
// "abp" handling
if (_url.protocol() == QL1S("abp"))
{
@@ -172,6 +151,20 @@ bool ProtocolHandler::preHandling(const QNetworkRequest &request, QWebFrame *fra
return true;
}
+ //If rekonq cant handle a protocol by itself, it will hand it over to KDE via KRun
+ if(KProtocolInfo::isKnownProtocol(_url))
+ {
+ new KRun(_url, Application::instance()->mainWindow());
+ return true; //No need to delete KRun, it autodeletes it self
+ }
+ else if(!KProtocolInfo::isKnownProtocol(_url))
+ {
+ //Error Message, for those protocols even KDE cant handle
+ KMessageBox::error( Application::instance()->mainWindow(), i18n("rekonq cannot handle this URL, please use a appropriate application to open it"));
+ return false;
+ }
+
+
return false;
}