Summary: | Wish: replace "unknown host" dialog pop-ups with passive messages | ||
---|---|---|---|
Product: | [Applications] akregator | Reporter: | monstermunch |
Component: | general | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
monstermunch
2005-06-19 17:01:44 UTC
I agree, and I consider this as a bug. I've took a look at the KHTML's source code where this thing comes from and tried to understand what's the reason of having that popup sometimes and sometimes not without success... Anyways, we should always show the page as it isn't possible to refresh the page when there was popup. SVN commit 577325 by osterfeld: show error messages in the htmlpart instead of using annoying popups BUG: 107740 M +1 -1 browserrun.cpp --- trunk/KDE/kdepim/akregator/src/browserrun.cpp #577324:577325 @@ -31,7 +31,7 @@ namespace Akregator { BrowserRun::BrowserRun(const OpenURLRequest& request, QWidget* parent) - : KParts::BrowserRun(request.url(), request.args(), 0L, parent, false, true), m_request(request) + : KParts::BrowserRun(request.url(), request.args(), 0L, parent, false, false, true), m_request(request) { setEnableExternalBrowser(false); } SVN commit 577326 by osterfeld: backport: show error message in the htmlpart instead of using popups CCBUG: 107740 M +1 -1 akregator_run.cpp --- branches/KDE/3.5/kdepim/akregator/src/akregator_run.cpp #577325:577326 @@ -31,7 +31,7 @@ BrowserRun::BrowserRun(QWidget* mainWindow, Viewer* currentViewer, const KURL& url, const KParts::URLArgs& args, OpeningMode mode) - : KParts::BrowserRun(url, args, 0L, mainWindow, false, true) + : KParts::BrowserRun(url, args, 0L, mainWindow, false, false, true) { m_currentViewer = currentViewer; m_openingMode = mode; |