summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-07-27 11:28:11 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-07-27 11:28:11 +0200
commita30c12b810b2fc9cfa61a4be999ff6cb2a4c38b2 (patch)
treea2943a12562dc445b5af5ba13dab3f23b25b58ac
parentRekonq 0.1.11 (diff)
downloadrekonq-a30c12b810b2fc9cfa61a4be999ff6cb2a4c38b2.tar.xz
KDE "real" Web Browsing shortcut support!
-rw-r--r--src/application.cpp44
1 files changed, 8 insertions, 36 deletions
diff --git a/src/application.cpp b/src/application.cpp
index cc34d946..4213e276 100644
--- a/src/application.cpp
+++ b/src/application.cpp
@@ -45,6 +45,7 @@
#include <kio/jobclasses.h>
#include <KPassivePopup>
#include <KToolInvocation>
+#include <KUriFilter>
// Qt Includes
#include <QRegExp>
@@ -256,59 +257,30 @@ void Application::loadUrl(const KUrl& url, const Rekonq::OpenType& type)
if (url.isEmpty())
return;
- QString scheme = url.scheme();
-
- if (scheme == QLatin1String("mailto"))
+ if (url.scheme() == QLatin1String("mailto"))
{
KToolInvocation::invokeMailer(url);
return;
}
-
+
KUrl loadingUrl(url);
- // create convenience fake api:// protocol for KDE apidox search and Qt docs
- if (scheme == QLatin1String("api"))
- {
- QString path;
- QString className = url.host().toLower();
- if (className[0] == 'k')
- {
- path = QString("http://api.kde.org/new.classmapper.php?class=%1").arg(className);
- }
- else if (className[0] == 'q')
- {
- path = QString("http://doc.trolltech.com/4.5/%1.html").arg(className);
- }
- loadingUrl.setUrl(path);
- }
-
if (loadingUrl.isRelative())
{
+ QString fn = loadingUrl.url(KUrl::RemoveTrailingSlash);
+ loadingUrl.setUrl("//" + fn);
if(loadingUrl.path().contains('.'))
{
- QString fn = loadingUrl.url(KUrl::RemoveTrailingSlash);
- loadingUrl.setUrl("//" + fn);
loadingUrl.setScheme("http");
}
else
{
- scheme = QLatin1String("gg");
+ loadingUrl.setScheme("gg");
}
}
- // create convenience fake gg:// protocol, waiting for KServices learning
- if(scheme == QLatin1String("gg"))
- {
- QString str = loadingUrl.path();
- loadingUrl.setUrl( QString("http://google.com/search?&q=%1").arg(str) );
- }
-
- // create convenience fake wk:// protocol, waiting for KServices learning
- if(scheme == QLatin1String("wk"))
- {
- QString str = loadingUrl.path();
- loadingUrl.setUrl( QString("http://en.wikipedia.org/wiki/%1").arg(str) );
- }
+ // this should let rekonq to support the beautiful KDE web browsing shortcuts
+ loadingUrl = KUriFilter::self()->filteredUri(loadingUrl);
WebView *webView;
if( type == Rekonq::CurrentTab )