summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/webpage.cpp46
-rw-r--r--src/webpage.h2
2 files changed, 28 insertions, 20 deletions
diff --git a/src/webpage.cpp b/src/webpage.cpp
index e941d2d5..4c361f7b 100644
--- a/src/webpage.cpp
+++ b/src/webpage.cpp
@@ -170,6 +170,7 @@ void WebPage::manageNetworkErrors(QNetworkReply* reply)
break;
};
+ viewErrorPage(reply);
}
@@ -280,7 +281,12 @@ void WebPage::slotHandleUnsupportedContent(QNetworkReply *reply)
// }
// return;
}
+ viewErrorPage(reply);
+}
+
+void WebPage::viewErrorPage(QNetworkReply *reply)
+{
// display "not found" page
QString notfoundFilePath = KStandardDirs::locate("data", "rekonq/htmls/notfound.html");
QFile file(notfoundFilePath);
@@ -300,26 +306,26 @@ void WebPage::slotHandleUnsupportedContent(QNetworkReply *reply)
.arg(reply->errorString())
.arg(reply->url().toString());
- QList<QWebFrame*> frames;
- frames.append(mainFrame());
- while (!frames.isEmpty())
- {
- QWebFrame *firstFrame = frames.takeFirst();
- if (firstFrame->url() == reply->url())
- {
- firstFrame->setHtml(html, reply->url());
- return;
- }
- QList<QWebFrame *> children = firstFrame->childFrames();
- foreach(QWebFrame *frame, children)
- {
- frames.append(frame);
- }
- }
- if (m_loadingUrl == reply->url())
- {
+// QList<QWebFrame*> frames;
+// frames.append(mainFrame());
+// while (!frames.isEmpty())
+// {
+// QWebFrame *firstFrame = frames.takeFirst();
+// if (firstFrame->url() == reply->url())
+// {
+// firstFrame->setHtml(html, reply->url());
+// return;
+// }
+// QList<QWebFrame *> children = firstFrame->childFrames();
+// foreach(QWebFrame *frame, children)
+// {
+// 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());
- }
-}
+// }
+} \ No newline at end of file
diff --git a/src/webpage.h b/src/webpage.h
index ba440663..5fd69702 100644
--- a/src/webpage.h
+++ b/src/webpage.h
@@ -69,6 +69,8 @@ protected Q_SLOTS:
virtual void slotHandleUnsupportedContent(QNetworkReply *reply);
private:
+ void viewErrorPage(QNetworkReply *);
+
friend class WebView;
// set the webview mousepressedevent