diff options
-rw-r--r-- | src/protocolhandler.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/protocolhandler.cpp b/src/protocolhandler.cpp index 00d97f54..6dfc33a1 100644 --- a/src/protocolhandler.cpp +++ b/src/protocolhandler.cpp @@ -114,6 +114,10 @@ bool ProtocolHandler::preHandling(const QNetworkRequest &request, QWebFrame *fra // rekonq can handle file & ftp schemes, if you like,, if (_url.protocol() == QL1S("ftp") || _url.protocol() == QL1S("file")) return false; + + // rekonq can handle kde documentation protocol + if (_url.protocol() == QL1S("man") || _url.protocol() == QL1S("help") || _url.protocol() == QL1S("info")) + return false; // relative urls if (_url.isRelative()) |