| Summary: | Javascript misfunction in akregator built-in browser | ||
|---|---|---|---|
| Product: | [Applications] akregator | Reporter: | Raúl <rasasi78> |
| Component: | general | Assignee: | kdepim bugs <pim-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | animimotus |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Raúl
2007-01-19 18:50:26 UTC
Can you give a precise example so someone else can try to reproduce the problem? For example, when you have a feed and inside one of the articles there's a link to for example, youtube, google video or some other web with some javascript contents, the embedded html browser acts if javascript weren't enabled. I don't know if javascript isn't really enabled, we maybe JS is not interpreted correctly or there's some compatibility issue. What I see is that heavy javascript webs are not seen properly. I also have been talking to Frank Osterfeld and told me that he knows about the issue. This is just a reminder. SVN commit 637063 by osterfeld:
explicitely disable java and javascript in the article viewer (as discussed with kde-security some time ago), but follow
user defaults in the browser tabs.
BUG: 140306
M +4 -0 articleviewer.cpp
M +0 -3 viewer.cpp
--- branches/KDE/3.5/kdepim/akregator/src/articleviewer.cpp #637062:637063
@@ -160,6 +160,10 @@
ArticleViewer::ArticleViewer(QWidget *parent, const char *name)
: Viewer(parent, name), m_htmlFooter(), m_currentText(), m_node(0), m_viewMode(NormalView)
{
+ setJScriptEnabled(false);
+ setJavaEnabled(false);
+ setPluginsEnabled(false);
+
m_showSummaryVisitor = new ShowSummaryVisitor(this);
setXMLFile(locate("data", "akregator/articleviewer.rc"), true);
--- branches/KDE/3.5/kdepim/akregator/src/viewer.cpp #637062:637063
@@ -51,10 +51,7 @@
: KHTMLPart(parent, name), m_url(0)
{
setZoomFactor(100);
- setJScriptEnabled(false);
- setJavaEnabled(true);
setMetaRefreshEnabled(true);
- setPluginsEnabled(true);
setDNDEnabled(true);
setAutoloadImages(true);
setStatusMessagesEnabled(true);
*** Bug 142484 has been marked as a duplicate of this bug. *** |