<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-6398</id>
	<title>Nabble - konqueror</title>
	<updated>2009-11-05T11:41:58Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/konqueror-f6398.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/konqueror-f6398.html" />
	<subtitle type="html">konqueror home is &lt;a href=&quot;http://www.kde.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26221194</id>
	<title>Re: PATCH: Entering the same url in Konqueror's location bar...</title>
	<published>2009-11-05T11:41:58Z</published>
	<updated>2009-11-05T11:41:58Z</updated>
	<author>
		<name>Bugzilla from adawit@kde.org</name>
	</author>
	<content type="html">On Wednesday 04 November 2009 10:37:45 Dawit A. wrote:
&lt;br&gt;&amp;gt; The attached patch fixes the problem where typing the same url or simply
&lt;br&gt;&amp;gt; pressing the &amp;quot;Go&amp;quot; button beside the location bar causes addresses to be
&lt;br&gt;&amp;gt; duplicated in the history list. With this patch such requests will simply
&lt;br&gt;&amp;gt; &amp;nbsp;be interpreted as if the user pressed the reload.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;Updated patch based on issues pointed out by Maks. For details, see 
&lt;br&gt;&lt;a href=&quot;http://lists.kde.org/?l=kde-core-devel&amp;m=125744641812425&amp;w=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.kde.org/?l=kde-core-devel&amp;m=125744641812425&amp;w=2&lt;/a&gt;&lt;br&gt;&lt;br /&gt;&lt;tt&gt;[konqmainwindow.patch]&lt;/tt&gt;&lt;br /&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;tt&gt;Index: konqmainwindow.cpp
&lt;br&gt;=========================
&lt;br&gt;--- konqmainwindow.cpp	(revision 1044576)
&lt;br&gt;+++ konqmainwindow.cpp	(working copy)
&lt;br&gt;@@ -469,7 +469,7 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if (m_currentDir.isEmpty() &amp;&amp; m_currentView)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; m_currentDir = m_currentView-&amp;gt;url().path( KUrl::AddTrailingSlash );
&lt;br&gt;&amp;nbsp;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;KUrl filteredURL ( KonqMisc::konqFilteredURL( this, url, m_currentDir ) );
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;const QString filteredURL = KonqMisc::konqFilteredURL( this, url, m_currentDir );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;kDebug(1202) &amp;lt;&amp;lt; &amp;quot;url&amp;quot; &amp;lt;&amp;lt; url &amp;lt;&amp;lt; &amp;quot;filtered into&amp;quot; &amp;lt;&amp;lt; filteredURL;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if ( filteredURL.isEmpty() ) // initially empty, or error (e.g. ~unknown_user)
&lt;br&gt;@@ -477,8 +477,16 @@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;m_currentDir.clear();
&lt;br&gt;&amp;nbsp;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;openUrl(0, filteredURL, QString(), req);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;const QString prevFilteredURL = KonqMisc::konqFilteredURL(this, m_currentView-&amp;gt;typedUrl(), m_currentDir);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;kDebug(1202) &amp;lt;&amp;lt; &amp;quot;previous url&amp;quot; &amp;lt;&amp;lt; m_currentView-&amp;gt;typedUrl() &amp;lt;&amp;lt; &amp;quot;filtered into&amp;quot; &amp;lt;&amp;lt; prevFilteredURL;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;// If the current url in the view is the same as the one being displayed
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;// simply do a reload instead of calling openUrl...
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;if (urlcmp(filteredURL, prevFilteredURL))
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;slotReload();
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;else
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;openUrl(0, KUrl(filteredURL), QString(), req);
&lt;br&gt;+
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;// #4070: Give focus to view after URL was entered manually
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;// Note: we do it here if the view mode (i.e. part) wasn't changed
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;// If it is changed, then it's done in KonqView::changePart
&lt;br&gt;&lt;/tt&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PATCH%3A-Entering-the-same-url-in-Konqueror%27s-location-bar...-tp26198623p26221194.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26198623</id>
	<title>PATCH: Entering the same url in Konqueror's location bar...</title>
	<published>2009-11-04T07:37:45Z</published>
	<updated>2009-11-04T07:37:45Z</updated>
	<author>
		<name>Bugzilla from adawit@kde.org</name>
	</author>
	<content type="html">The attached patch fixes the problem where typing the same url or simply 
&lt;br&gt;pressing the &amp;quot;Go&amp;quot; button beside the location bar causes addresses to be 
&lt;br&gt;duplicated in the history list. With this patch such requests will simply be 
&lt;br&gt;interpreted as if the user pressed the reload.
&lt;br&gt;&lt;br /&gt;&lt;tt&gt;[konqmainwindow.patch]&lt;/tt&gt;&lt;br /&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;tt&gt;Index: konqmainwindow.cpp
&lt;br&gt;=========================
&lt;br&gt;--- konqmainwindow.cpp	(revision 1044576)
&lt;br&gt;+++ konqmainwindow.cpp	(working copy)
&lt;br&gt;@@ -469,7 +469,7 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if (m_currentDir.isEmpty() &amp;&amp; m_currentView)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; m_currentDir = m_currentView-&amp;gt;url().path( KUrl::AddTrailingSlash );
&lt;br&gt;&amp;nbsp;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;KUrl filteredURL ( KonqMisc::konqFilteredURL( this, url, m_currentDir ) );
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;const QString filteredURL = KonqMisc::konqFilteredURL( this, url, m_currentDir );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;kDebug(1202) &amp;lt;&amp;lt; &amp;quot;url&amp;quot; &amp;lt;&amp;lt; url &amp;lt;&amp;lt; &amp;quot;filtered into&amp;quot; &amp;lt;&amp;lt; filteredURL;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if ( filteredURL.isEmpty() ) // initially empty, or error (e.g. ~unknown_user)
&lt;br&gt;@@ -477,8 +477,16 @@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;m_currentDir.clear();
&lt;br&gt;&amp;nbsp;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;openUrl(0, filteredURL, QString(), req);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;const QString prevFilteredURL = KonqMisc::konqFilteredURL(this, m_currentView-&amp;gt;typedUrl(), m_currentDir);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;kDebug(1202) &amp;lt;&amp;lt; &amp;quot;previous url&amp;quot; &amp;lt;&amp;lt; m_currentView-&amp;gt;typedUrl() &amp;lt;&amp;lt; &amp;quot;filtered into&amp;quot; &amp;lt;&amp;lt; prevFilteredURL;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;// If the current url in the view is the same as the one being displayed
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;// simply do a reload instead of calling openUrl...
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;if (urlcmp(filteredURL, prevFilteredURL, KUrl::CompareWithoutTrailingSlash))
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;slotReload();
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;else
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;openUrl(0, KUrl(filteredURL), QString(), req);
&lt;br&gt;+
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;// #4070: Give focus to view after URL was entered manually
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;// Note: we do it here if the view mode (i.e. part) wasn't changed
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;// If it is changed, then it's done in KonqView::changePart
&lt;br&gt;&lt;/tt&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PATCH%3A-Entering-the-same-url-in-Konqueror%27s-location-bar...-tp26198623p26198623.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26131825</id>
	<title>Bekijk mijn Netlog profiel</title>
	<published>2009-10-30T08:17:28Z</published>
	<updated>2009-10-30T08:17:28Z</updated>
	<author>
		<name>夏伟-2</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 3.2 Final//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
 &lt;title&gt;Bekijk mijn Netlog profiel&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;table width=&quot;620&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; style=&quot;line-height:18px;&quot;&gt;
 &lt;tr&gt;
 &lt;td height=&quot;10&quot; colspan=&quot;4&quot; bgcolor=&quot;#303030&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td height=&quot;10&quot; colspan=&quot;4&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td height=&quot;10&quot; colspan=&quot;3&quot; bgcolor=&quot;#303030&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td height=&quot;10&quot; bgcolor=&quot;#efefef&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td height=&quot;10&quot; colspan=&quot;2&quot; bgcolor=&quot;#efefef&quot; text-align:&quot;right&quot; style=&quot;text-align: right;&quot;&gt;&lt;font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;-2&quot; color=&quot;#666666&quot;&gt;
 Wil je in de toekomst geen uitnodigingen meer ontvangen van je vrienden?
 &lt;a href=&quot;http://nl.netlog.com/go/mailurl/type=invite_1&amp;mailid=336121387&amp;id=1&amp;url=-L2dvL25vbWFpbHMvaW52aXRlL2VtYWlsPS1hMlp0TFdSbGRtVnNRR3RrWlM1dmNtY18mY29kZT0wNzAxNzEyNSZpZD04NTE0MjczMTEmaT1oOTY_&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;font color=&quot;#bd0710&quot;&gt;Klik hier&lt;/font&gt;&lt;/a&gt;.
 &lt;/td&gt;
 &lt;td width=&quot;15&quot; bgcolor=&quot;#efefef&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td width=&quot;15&quot; rowspan=&quot;3&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td height=&quot;10&quot; colspan=&quot;3&quot; bgcolor=&quot;#303030&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td height=&quot;10&quot; colspan=&quot;4&quot; bgcolor=&quot;#efefef&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td height=&quot;10&quot; colspan=&quot;1&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td width=&quot;30&quot; height=&quot;90&quot; bgcolor=&quot;#303030&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td width=&quot;115&quot; height=&quot;90&quot; valign=&quot;top&quot; bgcolor=&quot;#303030&quot;&gt;
 &lt;table width=&quot;86&quot; border=&quot;0&quot; cellpadding=&quot;3&quot; cellspacing=&quot;0&quot; bgcolor=&quot;#FFFFFF&quot;&gt;
 &lt;tr&gt;
 &lt;td text-align:&quot;center&quot; style=&quot;text-align: center; padding: 3px 0;&quot;&gt;&lt;img src=&quot;http://nl.netlog.com/go/mainphoto/userid=46271004&quot; alt=&quot;&quot; width=&quot;80&quot; height=&quot;60&quot; /&gt;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/table&gt;
 &lt;br /&gt;
 &lt;font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;-1&quot; color=&quot;#FFFFFF&quot; style=&quot;font-size: 12px;&quot;&gt;
 Hugo Coolens&lt;br /&gt;
 &lt;font size=&quot;-2&quot; style=&quot;font-size: 11px;&quot;&gt;
 man - 48 jaar&lt;br /&gt;
 Oost-Vlaanderen&lt;/font&gt;&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;
 &lt;br /&gt;
 &lt;table border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot;&gt;
  &lt;tr&gt;
 &lt;td width=&quot;35&quot; align=&quot;center&quot; bgcolor=&quot;#444444&quot;&gt;&lt;font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;-1&quot; color=&quot;#FFFFFF&quot;&gt;&lt;b&gt;2&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;
 &lt;td&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td&gt;&lt;font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;-1&quot; color=&quot;#888888&quot; style=&quot;font-size: 12px;&quot;&gt;vrienden&lt;/font&gt;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td width=&quot;35&quot; height=&quot;5&quot; align=&quot;center&quot;&gt;&lt;/td&gt;
 &lt;td height=&quot;5&quot;&gt;&lt;/td&gt;
 &lt;td height=&quot;5&quot;&gt;&lt;/td&gt;
 &lt;/tr&gt;
    &lt;/table&gt;
 &lt;/td&gt;
 &lt;td width=&quot;20&quot; height=&quot;90&quot; valign=&quot;top&quot; bgcolor=&quot;#303030&quot;&gt;&lt;img src=&quot;http://v.netlogstatic.com/v4.00/2375//s/i/mail/balloon-point.gif&quot; width=&quot;20&quot; height=&quot;55&quot; align=&quot;top&quot;&gt;&lt;/td&gt;
 &lt;td width=&quot;15&quot; height=&quot;90&quot; bgcolor=&quot;#efefef&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td width=&quot;15&quot; height=&quot;90&quot; bgcolor=&quot;#efefef&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td style=&quot;font-size: 13px;&quot; height=&quot;90&quot; bgcolor=&quot;#efefef&quot;&gt;&lt;font face=&quot;Arial, Helvetica, sans-serif&quot; color=&quot;#666666&quot;&gt;&lt;font color=&quot;#bd0710&quot; size=&quot;+2&quot;&gt;Hey!&lt;/font&gt;&lt;br /&gt;
 &lt;br /&gt;
  Ik heb een &lt;font color=&quot;#000000&quot;&gt;&lt;b&gt;Netlog&lt;/b&gt;&lt;/font&gt; profiel aangemaakt met mijn foto's, video's, blog en events en ik wil je toevoegen als vriend zodat je dit kan zien. Eerst moet je je &lt;a href=&quot;http://nl.netlog.com/go/mailurl/type=invite_1&amp;mailid=336121387&amp;id=2&amp;url=-L2dvL3JlZ2lzdGVyL2lkPTg1MTQyNzMxMSZpPWg5MQ__&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;font color=&quot;#bd0710&quot;&gt;registreren op Netlog&lt;/font&gt;&lt;/a&gt;!
  &lt;br /&gt;
 Daarna kan je ook je eigen profiel aanmaken.&lt;/font&gt; &lt;br /&gt;
 &lt;br /&gt;
 &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; bgcolor=&quot;#BD0710&quot; background=&quot;http://v.netlogstatic.com/v4.00/2375//s/i/mail/btn-gradient.gif&quot;&gt;
 &lt;tr&gt;
 &lt;td height=&quot;3&quot; colspan=&quot;4&quot;&gt;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td&gt;&lt;img src=&quot;http://v.netlogstatic.com/v4.00/2375//s/i/mail/btn-logo.gif&quot; alt=&quot;&quot; width=&quot;35&quot; height=&quot;35&quot; /&gt;&lt;/td&gt;
 &lt;td&gt;
  &lt;a href=&quot;http://nl.netlog.com/go/mailurl/type=invite_1&amp;mailid=336121387&amp;id=3&amp;url=-L2dvL3JlZ2lzdGVyL2lkPTg1MTQyNzMxMSZpPWg5Mg__&quot; style=&quot;font-family: Arial, helvetica, 'sans-serif'; color: #ffffff&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;+1&quot; color=&quot;#FFFFFF&quot;&gt;Neem een kijkje&lt;/font&gt;
 &lt;/a&gt; 
 &lt;/td&gt;
 &lt;td width=&quot;10&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td height=&quot;3&quot; colspan=&quot;4&quot;&gt;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/table&gt;
 &lt;br /&gt;
 &lt;font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;-1&quot; style=&quot;font-size: 13px;&quot; color=&quot;#666666&quot;&gt;Groetjes,&lt;br /&gt;Hugo&lt;/font&gt;
 &lt;/td&gt;
 &lt;td width=&quot;15&quot; bgcolor=&quot;#efefef&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td colspan=&quot;3&quot; rowspan=&quot;4&quot; bgcolor=&quot;#303030&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td width=&quot;15&quot; bgcolor=&quot;#efefef&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td colspan=&quot;2&quot; bgcolor=&quot;#efefef&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td width=&quot;15&quot; bgcolor=&quot;#efefef&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td width=&quot;15&quot; rowspan=&quot;3&quot; bgcolor=&quot;#303030&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td colspan=&quot;4&quot; bgcolor=&quot;#FFFFFF&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td valign=&quot;top&quot; bgcolor=&quot;#FFFFFF&quot;&gt;
 &lt;font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;-2&quot; color=&quot;#666666&quot;&gt;
 Wordt de bovenstaande button niet goed weergegeven? &lt;br /&gt;
  Klik dan &lt;a href=&quot;http://nl.netlog.com/go/mailurl/type=invite_1&amp;mailid=336121387&amp;id=4&amp;url=-L2dvL3JlZ2lzdGVyL2lkPTg1MTQyNzMxMSZpPWg5Mw__&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;font color=&quot;#bd0710&quot;&gt;hier&lt;/font&gt;&lt;/a&gt;, of plak onderstaande link in de adresbalk van je browser.&lt;br /&gt;
 &lt;a style=&quot;color: #bd0710&quot; href=&quot;http://nl.netlog.com/go/mailurl/type=invite_1&amp;mailid=336121387&amp;id=5&amp;url=-L2dvL3JlZ2lzdGVyL2lkPTg1MTQyNzMxMSZpPWg5NA__&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;font color=&quot;#bd0710&quot;&gt;http://nl.netlog.com/go/mailurl/type=invite_1&amp;mailid=336121387&amp;id=6&amp;url=-L2dvL3JlZ2lzdGVyL2lkPTg1MTQyNzMxMSZpPWg5NQ__&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;
  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
 &lt;br /&gt;&lt;br /&gt;
 &lt;img src=&quot;http://v.netlogstatic.com/v4.00/2375//s/i/mail/netlog-logo.gif&quot; alt=&quot;&quot; width=&quot;112&quot; height=&quot;23&quot; /&gt;&lt;br /&gt;&lt;br /&gt;
 &lt;font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;-2&quot; color=&quot;#666666&quot;&gt;
 Wil je in de toekomst geen uitnodigingen meer ontvangen van je vrienden?
  &lt;a style=&quot;color:#bd0710;&quot; href=&quot;http://nl.netlog.com/go/mailurl/type=invite_1&amp;mailid=336121387&amp;id=1&amp;url=-L2dvL25vbWFpbHMvaW52aXRlL2VtYWlsPS1hMlp0TFdSbGRtVnNRR3RrWlM1dmNtY18mY29kZT0wNzAxNzEyNSZpZD04NTE0MjczMTEmaT1oOTY_&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
  &lt;font color=&quot;#bd0710&quot;&gt;Klik hier&lt;/font&gt;&lt;/a&gt;.
 &lt;/p&gt;
 &lt;strong&gt;Netlog NV/SA&lt;/strong&gt; - E. Braunplein 18. B-9000 Gent. Belgium. . &lt;br /&gt;
 BE0859635972 - 
  &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26131825&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;abuse-nl@...&lt;/a&gt;&lt;/p&gt;
 &lt;/font&gt;
 &lt;/td&gt;
 &lt;td colspan=&quot;2&quot; rowspan=&quot;2&quot; bgcolor=&quot;#FFFFFF&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&amp;nbsp;&lt;/td&gt;
 &lt;/tr&gt;
&lt;/table&gt;
&lt;img src=&quot;http://nl.netlog.com/go/mailimage/type=invite_1&amp;mailid=336121387&amp;header.gif&quot; alt=&quot;&quot; /&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Bekijk-mijn-Netlog-profiel-tp26131825p26131825.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26131730</id>
	<title>Re: Problem with saving the &quot;ServiceName&quot; in Konqueror profile files...</title>
	<published>2009-10-30T08:09:43Z</published>
	<updated>2009-10-30T08:09:43Z</updated>
	<author>
		<name>Bugzilla from adawit@kde.org</name>
	</author>
	<content type="html">Never mind this question. I see why &amp;quot;ServiceName&amp;quot; is saved in the profile files. 
&lt;br&gt;It is still confusing specially if you had saved the profile a long time ago 
&lt;br&gt;and forgot about doing so. Anyhow disregard this question... It was user error 
&lt;br&gt;;)
&lt;br&gt;&lt;br&gt;On Wednesday 28 October 2009 13:44:23 Dawit A. wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; For the longest time I could not figure out why everytime I launced
&lt;br&gt;&amp;gt; &amp;nbsp;Konqueror it defaulted to khtml part when I had chosen webkit part to be
&lt;br&gt;&amp;gt; &amp;nbsp;my default html handler. I finally discovered that this happened because I
&lt;br&gt;&amp;gt; &amp;nbsp;have had saved the webbrowsing profile and it contained the servicename
&lt;br&gt;&amp;gt; &amp;nbsp;parameter which was set to &amp;quot;khtml&amp;quot;. The unfortunate side effect of that is
&lt;br&gt;&amp;gt; &amp;nbsp;it completely overrides the user's own preference set in filetypes.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; As such should not Konqueror at least check to see if the current handler
&lt;br&gt;&amp;gt; &amp;nbsp;for the specified &amp;quot;servicetype&amp;quot;, e.g. text/html, is still the same as the
&lt;br&gt;&amp;gt; &amp;nbsp;one saved in the profile file and if not simply default to using the one
&lt;br&gt;&amp;gt; &amp;nbsp;currently set instead of blindly following what was added in the profile ?
&lt;br&gt;&amp;gt; &amp;nbsp;I was originally going to suggest that this information should not even be
&lt;br&gt;&amp;gt; &amp;nbsp;read by Konqueror, but looking at the code in KonqViewManager::loadItem
&lt;br&gt;&amp;gt; &amp;nbsp;(konqviewmanager.cpp) it seems that idea will probably cause other
&lt;br&gt;&amp;gt; &amp;nbsp;problems when Konqueror's start page is set to &amp;quot;Show Introduction Page&amp;quot; ??
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-with-saving-the-%22ServiceName%22-in-Konqueror-profile-files...-tp26099021p26131730.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26129463</id>
	<title>Adblock Plugin improvements, part III</title>
	<published>2009-10-30T05:44:08Z</published>
	<updated>2009-10-30T05:44:08Z</updated>
	<author>
		<name>Jonathan Marten-3</name>
	</author>
	<content type="html">Getting round to working on this again after a long break... but the
&lt;br&gt;good news is that the filter lookup is now in KHTML, so the blockable
&lt;br&gt;elements list can show which filter caused an element to get blocked
&lt;br&gt;in a tooltip. &amp;nbsp;I'll commit the adblock support for that very soon.
&lt;br&gt;&lt;br&gt;The patch below is some polishing of Konqueror's adblock filter
&lt;br&gt;dialogue, to address bug 189563. &amp;nbsp;The button enable/disable states and
&lt;br&gt;the default button are set in accordance with the selected filter and
&lt;br&gt;the text in the edit box, so two common actions can be done as would
&lt;br&gt;be expected with the keyboard:
&lt;br&gt;&lt;br&gt;(a) select a filter in the list, edit it, press RETURN -&amp;gt; filter is
&lt;br&gt;updated and dialogue stays open.
&lt;br&gt;&lt;br&gt;(b) type a new filter, press RETURN -&amp;gt; new filter is added and
&lt;br&gt;dialogue stays open.
&lt;br&gt;&lt;br&gt;There is also additional information on the import/export format, and
&lt;br&gt;the filter syntax - shown as popup tooltips so as not to clutter the
&lt;br&gt;dialogue.
&lt;br&gt;&lt;br&gt;Any comments? &amp;nbsp;I'd like to commit this, if possible, before the 4.4
&lt;br&gt;soft feature freeze next week (it could be argued it's not really a
&lt;br&gt;&amp;quot;feature&amp;quot;, since it is addressing a bug...).
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&amp;nbsp; Jonathan
&lt;br&gt;&lt;br&gt;&lt;br&gt;--------------------------------------------------------------------------
&lt;br&gt;Index: kdebase/apps/konqueror/settings/konqhtml/filteropts.h
&lt;br&gt;===================================================================
&lt;br&gt;--- kdebase/apps/konqueror/settings/konqhtml/filteropts.h	(revision 1040936)
&lt;br&gt;+++ kdebase/apps/konqueror/settings/konqhtml/filteropts.h	(working copy)
&lt;br&gt;@@ -22,7 +22,7 @@
&lt;br&gt;&amp;nbsp;#include &amp;lt;ksharedconfig.h&amp;gt;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;class KListWidget;
&lt;br&gt;-class QPushButton;
&lt;br&gt;+class KPushButton;
&lt;br&gt;&amp;nbsp;class QLineEdit;
&lt;br&gt;&amp;nbsp;class QCheckBox;
&lt;br&gt;&amp;nbsp;class KListWidgetSearchLine;
&lt;br&gt;@@ -48,6 +48,7 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;void slotItemSelected();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;void slotEnableChecked();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;void slotKillChecked();
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;void slotInfoLinkActivated(const QString &amp;url);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;void exportFilters();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;void importFilters();
&lt;br&gt;@@ -59,15 +60,16 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;QLineEdit *mString;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;QCheckBox *mEnableCheck;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;QCheckBox *mKillCheck;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;QPushButton *mInsertButton;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;QPushButton *mUpdateButton;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;QPushButton *mRemoveButton;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;QPushButton *mImportButton;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;QPushButton *mExportButton;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;KPushButton *mInsertButton;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;KPushButton *mUpdateButton;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;KPushButton *mRemoveButton;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;KPushButton *mImportButton;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;KPushButton *mExportButton;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;KSharedConfig::Ptr mConfig;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;QString mGroupname;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;int mSelCount;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;QString mOriginalString;
&lt;br&gt;&amp;nbsp;};
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;#endif
&lt;br&gt;Index: kdebase/apps/konqueror/settings/konqhtml/filteropts.cpp
&lt;br&gt;===================================================================
&lt;br&gt;--- kdebase/apps/konqueror/settings/konqhtml/filteropts.cpp	(revision 1040936)
&lt;br&gt;+++ kdebase/apps/konqueror/settings/konqhtml/filteropts.cpp	(working copy)
&lt;br&gt;@@ -26,8 +26,8 @@
&lt;br&gt;&amp;nbsp;#include &amp;lt;QtGui/QCheckBox&amp;gt;
&lt;br&gt;&amp;nbsp;#include &amp;lt;QtGui/QLabel&amp;gt;
&lt;br&gt;&amp;nbsp;#include &amp;lt;QtGui/QLayout&amp;gt;
&lt;br&gt;-#include &amp;lt;QtGui/QPushButton&amp;gt;
&lt;br&gt;&amp;nbsp;#include &amp;lt;QtGui/QGroupBox&amp;gt;
&lt;br&gt;+#include &amp;lt;QtGui/QWhatsThis&amp;gt;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;// KDE
&lt;br&gt;&amp;nbsp;#include &amp;lt;kaboutdata.h&amp;gt;
&lt;br&gt;@@ -41,13 +41,15 @@
&lt;br&gt;&amp;nbsp;#include &amp;lt;KListWidget&amp;gt;
&lt;br&gt;&amp;nbsp;#include &amp;lt;klistwidgetsearchline.h&amp;gt;
&lt;br&gt;&amp;nbsp;#include &amp;lt;klineedit.h&amp;gt;
&lt;br&gt;+#include &amp;lt;kpushbutton.h&amp;gt;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;K_PLUGIN_FACTORY_DECLARATION(KcmKonqHtmlFactory)
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;KCMFilter::KCMFilter( QWidget *parent, const QVariantList&amp; )
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;: KCModule( KcmKonqHtmlFactory::componentData(), parent ),
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mGroupname( &amp;quot;Filter Settings&amp;quot; ),
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp;mSelCount(0)
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;mSelCount(0),
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;mOriginalString(QString())
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;mConfig = KSharedConfig::openConfig(&amp;quot;khtmlrc&amp;quot;, KConfig::NoGlobals);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;setButtons(Default|Apply);
&lt;br&gt;@@ -65,16 +67,30 @@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;QVBoxLayout *vbox = new QVBoxLayout;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;mListBox = new KListWidget;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;mListBox-&amp;gt;setSelectionMode(QListWidget::ExtendedSelection);
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;// If the filter list were sensitive to ordering, then we would need to
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;// preserve the order of items inserted or arranged by the user (and the
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;// GUI would need &amp;quot;Move Up&amp;quot; and &amp;quot;Move Down&amp;quot; buttons to reorder the filters).
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;// However, now the filters are applied in an unpredicatble order because
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;// of the new hashed matching algorithm. &amp;nbsp;So the list can stay sorted.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;mListBox-&amp;gt;setSortingEnabled( true );
&lt;br&gt;&amp;nbsp;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;mSearchLine = new KListWidgetSearchLine( this, mListBox );
&lt;br&gt;- &amp;nbsp; &amp;nbsp;vbox-&amp;gt;addWidget( mSearchLine );
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;KHBox *searchBox = new KHBox;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;searchBox-&amp;gt;setSpacing( -1 );
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;new QLabel( i18n(&amp;quot;Search:&amp;quot;), searchBox ) ;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;mSearchLine = new KListWidgetSearchLine( searchBox, mListBox );
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;vbox-&amp;gt;addWidget( searchBox );
&lt;br&gt;+
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;vbox-&amp;gt;addWidget(mListBox);
&lt;br&gt;- &amp;nbsp; &amp;nbsp;vbox-&amp;gt;addWidget(new QLabel( i18n(&amp;quot;Expression (e.g. &lt;a href=&quot;http://www.example.com/ad/*):&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.example.com/ad/*):&lt;/a&gt;&amp;quot;)));
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;QLabel *exprLabel = new QLabel( i18n(&amp;quot;&amp;lt;qt&amp;gt;Filter expression (e.g. &amp;lt;tt&amp;gt;&lt;a href=&quot;http://www.example.com/ad/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.example.com/ad/*&lt;/a&gt;&amp;lt;/tt&amp;gt;, &amp;lt;a href=\&amp;quot;filterhelp\&amp;quot;&amp;gt;more information&amp;lt;/a&amp;gt;):&amp;quot;), this );
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;connect( exprLabel, SIGNAL(linkActivated(const QString &amp;)), SLOT(slotInfoLinkActivated(const QString &amp;)) );
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;vbox-&amp;gt;addWidget(exprLabel);
&lt;br&gt;+
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;mString = new KLineEdit;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;vbox-&amp;gt;addWidget(mString);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;@@ -82,18 +98,26 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;vbox-&amp;gt;addWidget(buttonBox);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;topBox-&amp;gt;setLayout(vbox);
&lt;br&gt;- &amp;nbsp; &amp;nbsp;mInsertButton = new QPushButton( i18n(&amp;quot;Insert&amp;quot;), buttonBox );
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;mInsertButton = new KPushButton( KIcon(&amp;quot;list-add&amp;quot;), i18n(&amp;quot;Insert&amp;quot;), buttonBox );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;connect( mInsertButton, SIGNAL( clicked() ), SLOT( insertFilter() ) );
&lt;br&gt;- &amp;nbsp; &amp;nbsp;mUpdateButton = new QPushButton( i18n(&amp;quot;Update&amp;quot;), buttonBox );
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;mUpdateButton = new KPushButton( KIcon(&amp;quot;document-edit&amp;quot;), i18n(&amp;quot;Update&amp;quot;), buttonBox );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;connect( mUpdateButton, SIGNAL( clicked() ), SLOT( updateFilter() ) );
&lt;br&gt;- &amp;nbsp; &amp;nbsp;mRemoveButton = new QPushButton( i18n(&amp;quot;Remove&amp;quot;), buttonBox );
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;mRemoveButton = new KPushButton( KIcon(&amp;quot;list-remove&amp;quot;), i18n(&amp;quot;Remove&amp;quot;), buttonBox );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;connect( mRemoveButton, SIGNAL( clicked() ), SLOT( removeFilter() ) );
&lt;br&gt;&amp;nbsp;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;mImportButton = new QPushButton(i18n(&amp;quot;Import...&amp;quot;),buttonBox);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;mImportButton = new KPushButton( KIcon(&amp;quot;document-import&amp;quot;), i18n(&amp;quot;Import...&amp;quot;),buttonBox);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;connect( mImportButton, SIGNAL( clicked() ), SLOT( importFilters() ) );
&lt;br&gt;- &amp;nbsp; &amp;nbsp;mExportButton = new QPushButton(i18n(&amp;quot;Export...&amp;quot;),buttonBox);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;mExportButton = new KPushButton( KIcon(&amp;quot;document-export&amp;quot;), i18n(&amp;quot;Export...&amp;quot;),buttonBox);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;connect( mExportButton, SIGNAL( clicked() ), SLOT( exportFilters() ) );
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;KHBox *impexpBox = new KHBox;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;QLabel *impexpLabel = new QLabel( i18n(&amp;quot;&amp;lt;qt&amp;gt;More information on &amp;quot;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;&amp;lt;a href=\&amp;quot;importhelp\&amp;quot;&amp;gt;import format&amp;lt;/a&amp;gt;, &amp;quot;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;&amp;lt;a href=\&amp;quot;exporthelp\&amp;quot;&amp;gt;export format&amp;lt;/a&amp;gt;&amp;quot;), impexpBox );
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;connect( impexpLabel, SIGNAL(linkActivated(const QString &amp;)), SLOT(slotInfoLinkActivated(const QString &amp;)) );
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;vbox-&amp;gt;addWidget(impexpBox,0,Qt::AlignRight);
&lt;br&gt;+
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;connect( mEnableCheck, SIGNAL( toggled(bool)), this, SLOT( slotEnableChecked()));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;connect( mKillCheck, SIGNAL( clicked()), this, SLOT( slotKillChecked()));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;connect( mListBox, SIGNAL(itemSelectionChanged()),this, SLOT(slotItemSelected()));
&lt;br&gt;@@ -101,24 +125,45 @@
&lt;br&gt;&amp;nbsp;/*
&lt;br&gt;&amp;nbsp; * Whats this items
&lt;br&gt;&amp;nbsp; */
&lt;br&gt;- &amp;nbsp; &amp;nbsp;mEnableCheck-&amp;gt;setWhatsThis( i18n(&amp;quot;Enable or disable AdBlocK filters. When enabled a set of expressions &amp;quot;
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;to be blocked should be defined in the filter list for blocking to &amp;quot;
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;take effect.&amp;quot;));
&lt;br&gt;- &amp;nbsp; &amp;nbsp;mKillCheck-&amp;gt;setWhatsThis( i18n(&amp;quot;When enabled blocked images will be removed from the page completely &amp;quot;
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;otherwise a placeholder 'blocked' image will be used.&amp;quot;));
&lt;br&gt;- &amp;nbsp; &amp;nbsp;mListBox-&amp;gt;setWhatsThis( i18n(&amp;quot;This is the list of URL filters that will be applied to all linked &amp;quot;
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;images and frames. The filters are processed in order so place &amp;quot;
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;more generic filters towards the top of the list.&amp;quot;));
&lt;br&gt;- &amp;nbsp; &amp;nbsp;mString-&amp;gt;setWhatsThis( i18n(&amp;quot;Enter an expression to filter. Expressions can be defined as either &amp;quot;
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;a filename style wildcard e.g. &lt;a href=&quot;http://www.example.com/ads*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.example.com/ads*&lt;/a&gt;&amp;nbsp;or as a full &amp;quot;
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;regular expression by surrounding the string with '/' e.g. &amp;quot;
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot; //(ad|banner)\\./&amp;quot;));
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;mEnableCheck-&amp;gt;setWhatsThis( i18n(&amp;quot;Enable or disable AdBlocK filters. When enabled, a set of URL expressions &amp;quot;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;should be defined in the filter list for blocking to take effect.&amp;quot;));
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;mKillCheck-&amp;gt;setWhatsThis( i18n(&amp;quot;When enabled blocked images will be removed from the page completely, &amp;quot;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;otherwise a placeholder 'blocked' image will be used.&amp;quot;));
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;// The list is no longer sensitive to order, because of the new hashed
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;// matching. &amp;nbsp;So this tooltip doesn't imply that.
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;//
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;// FIXME: blocking of frames is not currently implemented by KHTML
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;mListBox-&amp;gt;setWhatsThis( i18n(&amp;quot;This is the list of URL filters that will be applied to all embedded &amp;quot;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;images and media objects.&amp;quot;) );
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;// &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;images, objects and frames.&amp;quot;) );
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;mString-&amp;gt;setWhatsThis( i18n(&amp;quot;&amp;lt;qt&amp;gt;&amp;lt;p&amp;gt;Enter an expression to filter. Filters can be defined as either:&amp;quot;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;a shell-style wildcard, e.g. &amp;lt;tt&amp;gt;&lt;a href=&quot;http://www.example.com/ads*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.example.com/ads*&lt;/a&gt;&amp;lt;/tt&amp;gt;, the wildcards &amp;lt;tt&amp;gt;*?[]&amp;lt;/tt&amp;gt; may be used&amp;lt;/li&amp;gt;&amp;quot;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;&amp;lt;li&amp;gt;a full regular expression by surrounding the string with '&amp;lt;tt&amp;gt;/&amp;lt;/tt&amp;gt;', e.g. &amp;lt;tt&amp;gt;/\\/(ad|banner)\\./&amp;lt;/tt&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;quot;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;&amp;lt;p&amp;gt;Any filter string can be preceded by '&amp;lt;tt&amp;gt;@@&amp;lt;/tt&amp;gt;' to whitelist (allow) any matching URL, &amp;quot;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;which takes priority over any blacklist (blocking) filter.&amp;quot;));
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;KCMFilter::~KCMFilter()
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+void KCMFilter::slotInfoLinkActivated(const QString &amp;url)
&lt;br&gt;+{
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;if ( url == &amp;quot;filterhelp&amp;quot; )
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QWhatsThis::showText( QCursor::pos(), mString-&amp;gt;whatsThis() );
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;else if ( url == &amp;quot;importhelp&amp;quot; )
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QWhatsThis::showText( QCursor::pos(), i18n(&amp;quot;&amp;lt;qt&amp;gt;&amp;lt;p&amp;gt;The filter import format is a plain text file. &amp;quot;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;Blank lines, comment lines starting with '&amp;lt;tt&amp;gt;!&amp;lt;/tt&amp;gt;' &amp;quot;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;and the header line &amp;lt;tt&amp;gt;[AdBlock]&amp;lt;/tt&amp;gt; are ignored. &amp;quot;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;Any other line is added as a filter expression.&amp;quot;) );
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;else if ( url == &amp;quot;exporthelp&amp;quot; )
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QWhatsThis::showText( QCursor::pos(), i18n(&amp;quot;&amp;lt;qt&amp;gt;&amp;lt;p&amp;gt;The filter export format is a plain text file. &amp;quot;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;The file begins with a header line &amp;lt;tt&amp;gt;[AdBlock]&amp;lt;/tt&amp;gt;, then all of &amp;quot;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;the filters follow each on a separate line.&amp;quot;) );
&lt;br&gt;+}
&lt;br&gt;+
&lt;br&gt;&amp;nbsp;void KCMFilter::slotKillChecked()
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;emit changed( true );
&lt;br&gt;@@ -145,7 +190,9 @@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if ( currentId &amp;gt;= 0 )
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mString-&amp;gt;setText(mListBox-&amp;gt;item(currentId)-&amp;gt;text());
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mOriginalString = mListBox-&amp;gt;item(currentId)-&amp;gt;text();
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mString-&amp;gt;setText(mOriginalString);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mString-&amp;gt;setFocus(Qt::OtherFocusReason);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;updateButton();
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;@@ -154,15 +201,28 @@
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;bool state = mEnableCheck-&amp;gt;isChecked();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;bool expressionIsNotEmpty = !mString-&amp;gt;text().isEmpty();
&lt;br&gt;- &amp;nbsp; &amp;nbsp;mUpdateButton-&amp;gt;setEnabled(state &amp;&amp; (mSelCount == 1) &amp;&amp; expressionIsNotEmpty );
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;bool filterEdited = expressionIsNotEmpty &amp;&amp; mOriginalString!=mString-&amp;gt;text();
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;mInsertButton-&amp;gt;setEnabled(state &amp;&amp; expressionIsNotEmpty &amp;&amp; filterEdited );
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;mUpdateButton-&amp;gt;setEnabled(state &amp;&amp; (mSelCount == 1) &amp;&amp; expressionIsNotEmpty &amp;&amp; filterEdited );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;mRemoveButton-&amp;gt;setEnabled(state &amp;&amp; (mSelCount &amp;gt; 0));
&lt;br&gt;- &amp;nbsp; &amp;nbsp;mInsertButton-&amp;gt;setEnabled(state &amp;&amp; expressionIsNotEmpty);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;mImportButton-&amp;gt;setEnabled(state);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;mExportButton-&amp;gt;setEnabled(state &amp;&amp; mListBox-&amp;gt;count()&amp;gt;0);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;mListBox-&amp;gt;setEnabled(state);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;mString-&amp;gt;setEnabled(state);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;mKillCheck-&amp;gt;setEnabled(state);
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;if (filterEdited)
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;{
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (mSelCount==1 &amp;&amp; mUpdateButton-&amp;gt;isEnabled()) mUpdateButton-&amp;gt;setDefault(true);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else if (mInsertButton-&amp;gt;isEnabled()) mInsertButton-&amp;gt;setDefault(true);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;}
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;else 
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;{
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mInsertButton-&amp;gt;setDefault(false);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mUpdateButton-&amp;gt;setDefault(false);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;void KCMFilter::importFilters()
&lt;br&gt;@@ -179,7 +239,7 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;while (!ts.atEnd())
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;line = ts.readLine();
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (line.toLower().compare(&amp;quot;[adblock]&amp;quot;) == 0 || line.isEmpty())
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (line.isEmpty() || line.compare(&amp;quot;[adblock]&amp;quot;, Qt::CaseInsensitive) == 0)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;continue;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Treat leading ! as filter comment, otherwise check expressions
&lt;br&gt;@@ -295,13 +355,26 @@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;void KCMFilter::insertFilter()
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;- &amp;nbsp; &amp;nbsp;if ( !mString-&amp;gt;text().isEmpty() &amp;&amp; mListBox-&amp;gt;findItems (mString-&amp;gt;text(),Qt::MatchCaseSensitive|Qt::MatchExactly).isEmpty() )
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;QString newFilter = mString-&amp;gt;text();
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;if ( !newFilter.isEmpty() &amp;&amp; mListBox-&amp;gt;findItems( newFilter, Qt::MatchCaseSensitive|Qt::MatchExactly ).isEmpty() )
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mListBox-&amp;gt;addItem( mString-&amp;gt;text() );
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;int id=mListBox-&amp;gt;count()-1;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mListBox-&amp;gt;clearSelection();
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mListBox-&amp;gt;item(id)-&amp;gt;setSelected(true);
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mListBox-&amp;gt;setCurrentRow(id);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mListBox-&amp;gt;addItem( newFilter );
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// The next line assumed that the new item would be added at the end
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// of the list, but that may not be the case if sorting is enabled.
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// So we search again to locate the just-added item.
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//int id = mListBox-&amp;gt;count()-1;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QListWidgetItem *newItem = mListBox-&amp;gt;findItems( newFilter, Qt::MatchCaseSensitive|Qt::MatchExactly ).first();
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (newItem != 0 )
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;int id = mListBox-&amp;gt;row(newItem);
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mListBox-&amp;gt;item(id)-&amp;gt;setSelected(true);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mListBox-&amp;gt;setCurrentRow(id);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;+
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;updateButton();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;emit changed( true );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Jonathan Marten &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.keelhaul.demon.co.uk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.keelhaul.demon.co.uk&lt;/a&gt;&lt;br&gt;Twickenham, UK &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26129463&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jjm2@...&lt;/a&gt;
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Adblock-Plugin-improvements%2C-part-III-tp26129463p26129463.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26099073</id>
	<title>Re: Problem with saving the &quot;ServiceName&quot; in Konqueror profile files...</title>
	<published>2009-10-28T10:48:12Z</published>
	<updated>2009-10-28T10:48:12Z</updated>
	<author>
		<name>Bugzilla from adawit@kde.org</name>
	</author>
	<content type="html">On Wednesday 28 October 2009 13:44:23 Dawit A. wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; For the longest time I could not figure out why everytime I launced
&lt;br&gt;&amp;gt; &amp;nbsp;Konqueror it defaulted to khtml part when I had chosen webkit part to be
&lt;br&gt;&amp;gt; &amp;nbsp;my default html handler. I finally discovered that this happened because I
&lt;br&gt;&amp;gt; &amp;nbsp;have had saved the webbrowsing profile and it contained the servicename
&lt;br&gt;&amp;gt; &amp;nbsp;parameter which was set to &amp;quot;khtml&amp;quot;. The unfortunate side effect of that is
&lt;br&gt;&amp;gt; &amp;nbsp;it completely overrides the user's own preference set in filetypes.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; As such should not Konqueror at least check to see if the current handler
&lt;br&gt;&amp;gt; &amp;nbsp;for the specified &amp;quot;servicetype&amp;quot;, e.g. text/html, is still the same as the
&lt;br&gt;&amp;gt; &amp;nbsp;one saved in the profile file and if not simply default to using the one
&lt;br&gt;&amp;gt; &amp;nbsp;currently set instead of blindly following what was added in the profile ?
&lt;br&gt;&amp;gt; &amp;nbsp;I was originally going to suggest that this information should not even be
&lt;br&gt;&amp;gt; &amp;nbsp;read by Konqueror, but looking at the code in KonqViewManager::loadItem
&lt;/div&gt;&amp;nbsp; &amp;nbsp; ^^^
&lt;br&gt;meant &amp;quot;saved&amp;quot;, i.e. the servicename information...
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-with-saving-the-%22ServiceName%22-in-Konqueror-profile-files...-tp26099021p26099073.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26099021</id>
	<title>Problem with saving the &quot;ServiceName&quot; in Konqueror profile files...</title>
	<published>2009-10-28T10:44:23Z</published>
	<updated>2009-10-28T10:44:23Z</updated>
	<author>
		<name>Bugzilla from adawit@kde.org</name>
	</author>
	<content type="html">For the longest time I could not figure out why everytime I launced Konqueror 
&lt;br&gt;it defaulted to khtml part when I had chosen webkit part to be my default html 
&lt;br&gt;handler. I finally discovered that this happened because I have had saved the 
&lt;br&gt;webbrowsing profile and it contained the servicename parameter which was set to 
&lt;br&gt;&amp;quot;khtml&amp;quot;. The unfortunate side effect of that is it completely overrides the 
&lt;br&gt;user's own preference set in filetypes.
&lt;br&gt;&lt;br&gt;As such should not Konqueror at least check to see if the current handler for 
&lt;br&gt;the specified &amp;quot;servicetype&amp;quot;, e.g. text/html, is still the same as the one saved 
&lt;br&gt;in the profile file and if not simply default to using the one currently set 
&lt;br&gt;instead of blindly following what was added in the profile ? I was originally 
&lt;br&gt;going to suggest that this information should not even be read by Konqueror, 
&lt;br&gt;but looking at the code in KonqViewManager::loadItem (konqviewmanager.cpp) it 
&lt;br&gt;seems that idea will probably cause other problems when Konqueror's start page 
&lt;br&gt;is set to &amp;quot;Show Introduction Page&amp;quot; ??
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-with-saving-the-%22ServiceName%22-in-Konqueror-profile-files...-tp26099021p26099021.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26017268</id>
	<title>Re: Flash plugin resize problem</title>
	<published>2009-10-22T14:08:18Z</published>
	<updated>2009-10-22T14:08:18Z</updated>
	<author>
		<name>Pau Garcia i Quiles</name>
	</author>
	<content type="html">On Thu, Oct 22, 2009 at 10:50 PM, Dawit A. &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26017268&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;adawit@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Thursday 22 October 2009 06:29:03 Pau Garcia i Quiles wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; (cross-posted to Webkit-Qt and Konqueror mailing lists because this
&lt;br&gt;&amp;gt;&amp;gt; fails on both)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I'm having trouble with QtWebKit from Qt 4.6 beta1 and Konqueror trunk
&lt;br&gt;&amp;gt;&amp;gt; when resizing Flash plugins. On QtWebKit it somewhat works (the
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;canvas&amp;quot; for the plugin is resized) but not quite (the plugin output
&lt;br&gt;&amp;gt;&amp;gt; is not repainted).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; You can download an example from &lt;a href=&quot;http://www.elpauer.org/tmp/demo3.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.elpauer.org/tmp/demo3.tar.gz&lt;/a&gt;&amp;nbsp;.
&lt;br&gt;&amp;gt;&amp;gt; Tested and works fine with Safari 4.0.3 on Mac, Firefox 3.5.3 on Linux and
&lt;br&gt;&amp;gt;&amp;gt; Opera 10.0 on Linux. With Konqueror trunk, it makes nspluginviewer crash.
&lt;br&gt;&amp;gt;&amp;gt; With Arora or any other QtWebKit browser I have tested, it does not repaint
&lt;br&gt;&amp;gt;&amp;gt; the plugin output.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If you are using the webkitpart, then the nspluginviewer does not come into
&lt;br&gt;&amp;gt; the picture at all since we let the built-in QtWebKit handle flash content. The
&lt;br&gt;&amp;gt; behavior you get if you are using the KDE webkitpart should be the same as
&lt;br&gt;&amp;gt; Arora. Anyhow, any issue related to content rendering in QtWebKit should be
&lt;br&gt;&amp;gt; reported upstream to the QtWebKit team either as a bug or a question...
&lt;/div&gt;&lt;br&gt;I'm not using webkitpart but khtmlpart. In the webkit-qt mailing list
&lt;br&gt;I've been told it's not a WebKit or QtWebKit issue but a bug in the
&lt;br&gt;Flash plugin. See &lt;a href=&quot;https://bugs.webkit.org/show_bug.cgi?id=24002&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://bugs.webkit.org/show_bug.cgi?id=24002&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Pau Garcia i Quiles
&lt;br&gt;&lt;a href=&quot;http://www.elpauer.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.elpauer.org&lt;/a&gt;&lt;br&gt;(Due to my workload, I may need 10 days to answer)
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Flash-plugin-resize-problem-tp26007669p26017268.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26016988</id>
	<title>Re: Flash plugin resize problem</title>
	<published>2009-10-22T13:50:02Z</published>
	<updated>2009-10-22T13:50:02Z</updated>
	<author>
		<name>Bugzilla from adawit@kde.org</name>
	</author>
	<content type="html">On Thursday 22 October 2009 06:29:03 Pau Garcia i Quiles wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; (cross-posted to Webkit-Qt and Konqueror mailing lists because this
&lt;br&gt;&amp;gt; fails on both)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm having trouble with QtWebKit from Qt 4.6 beta1 and Konqueror trunk
&lt;br&gt;&amp;gt; when resizing Flash plugins. On QtWebKit it somewhat works (the
&lt;br&gt;&amp;gt; &amp;quot;canvas&amp;quot; for the plugin is resized) but not quite (the plugin output
&lt;br&gt;&amp;gt; is not repainted).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; You can download an example from &lt;a href=&quot;http://www.elpauer.org/tmp/demo3.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.elpauer.org/tmp/demo3.tar.gz&lt;/a&gt;&amp;nbsp;.
&lt;br&gt;&amp;gt; Tested and works fine with Safari 4.0.3 on Mac, Firefox 3.5.3 on Linux and
&lt;br&gt;&amp;gt; Opera 10.0 on Linux. With Konqueror trunk, it makes nspluginviewer crash.
&lt;br&gt;&amp;gt; With Arora or any other QtWebKit browser I have tested, it does not repaint
&lt;br&gt;&amp;gt; the plugin output.
&lt;/div&gt;&lt;br&gt;If you are using the webkitpart, then the nspluginviewer does not come into 
&lt;br&gt;the picture at all since we let the built-in QtWebKit handle flash content. The 
&lt;br&gt;behavior you get if you are using the KDE webkitpart should be the same as 
&lt;br&gt;Arora. Anyhow, any issue related to content rendering in QtWebKit should be 
&lt;br&gt;reported upstream to the QtWebKit team either as a bug or a question...
&lt;br&gt;&lt;br&gt;&amp;gt; Copyright (just in case :-) ) :
&lt;br&gt;&amp;gt; - The image is taken from
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.fsoft.it/panorama/PTViewer/images/chaberton.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fsoft.it/panorama/PTViewer/images/chaberton.jpg&lt;/a&gt;&lt;br&gt;&amp;gt; - The krpano.swf is the KrPano 1.0.8 beta8 demo plugin from
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.krpano.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.krpano.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;BTW, I did not try your demo, but I tried the ones in on the site above, and 
&lt;br&gt;yes indeed I see the problem you state, namely the content not being repainted 
&lt;br&gt;after resize, but there is nothing we can do at this level. You need to report 
&lt;br&gt;it upstream: &lt;a href=&quot;http://trac.webkit.org/wiki/QtWebKitContrib&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://trac.webkit.org/wiki/QtWebKitContrib&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Flash-plugin-resize-problem-tp26007669p26016988.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26007669</id>
	<title>Flash plugin resize problem</title>
	<published>2009-10-22T03:29:03Z</published>
	<updated>2009-10-22T03:29:03Z</updated>
	<author>
		<name>Pau Garcia i Quiles</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;(cross-posted to Webkit-Qt and Konqueror mailing lists because this
&lt;br&gt;fails on both)
&lt;br&gt;&lt;br&gt;I'm having trouble with QtWebKit from Qt 4.6 beta1 and Konqueror trunk
&lt;br&gt;when resizing Flash plugins. On QtWebKit it somewhat works (the
&lt;br&gt;&amp;quot;canvas&amp;quot; for the plugin is resized) but not quite (the plugin output
&lt;br&gt;is not repainted).
&lt;br&gt;&lt;br&gt;You can download an example from &lt;a href=&quot;http://www.elpauer.org/tmp/demo3.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.elpauer.org/tmp/demo3.tar.gz&lt;/a&gt;&amp;nbsp;.
&lt;br&gt;Tested and works fine with Safari 4.0.3 on
&lt;br&gt;Mac, Firefox 3.5.3 on Linux and Opera 10.0 on Linux. With Konqueror
&lt;br&gt;trunk, it makes nspluginviewer crash. With Arora or any other QtWebKit
&lt;br&gt;browser I have tested, it does not repaint the plugin output.
&lt;br&gt;&lt;br&gt;Copyright (just in case :-) ) :
&lt;br&gt;- The image is taken from
&lt;br&gt;&lt;a href=&quot;http://www.fsoft.it/panorama/PTViewer/images/chaberton.jpg&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fsoft.it/panorama/PTViewer/images/chaberton.jpg&lt;/a&gt;&lt;br&gt;- The krpano.swf is the KrPano 1.0.8 beta8 demo plugin from
&lt;br&gt;&lt;a href=&quot;http://www.krpano.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.krpano.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Pau Garcia i Quiles
&lt;br&gt;&lt;a href=&quot;http://www.elpauer.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.elpauer.org&lt;/a&gt;&lt;br&gt;(Due to my workload, I may need 10 days to answer)
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Flash-plugin-resize-problem-tp26007669p26007669.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25995415</id>
	<title>Re: how to activate Links / javascript function ?</title>
	<published>2009-10-21T09:01:14Z</published>
	<updated>2009-10-21T09:01:14Z</updated>
	<author>
		<name>stuseven</name>
	</author>
	<content type="html">I need to correct at least part of this question...
&lt;br&gt;after browsing the google voice site some more 
&lt;br&gt;to me it looks as though that application (google voice)
&lt;br&gt;only supports certain browsers... internet explorer and so forth
&lt;br&gt;but konqueror is not supported by this,
&lt;br&gt;&lt;br&gt;My guess is google voice came long after Konqueror was
&lt;br&gt;first developed, and has features konqueror doesnt know about.
&lt;br&gt;&lt;br&gt;Maybe in a newer release this could be fixed ?
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;stuseven wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Now Im using Konqueror for online browswer, and have some 
&lt;br&gt;problems with links... I'll have to guess these are JavaScript.
&lt;br&gt;&lt;br&gt;Already Ive added netscape plugin for konqueror and this fixed
&lt;br&gt;several things... but with links on pages, still there are several
&lt;br&gt;problems... mostly, clicking a link doesnt go anywhere !
&lt;br&gt;&lt;br&gt;I recently got google voice... and while I can access this page
&lt;br&gt;with Konqueror, some important menus are not showing up,
&lt;br&gt;and, like the links problem, clicking what does appear wont
&lt;br&gt;proceed to that function. &amp;nbsp;So... what can I install for konqueror
&lt;br&gt;which will enable these kind of linking things from web pages ?
&lt;br&gt;&lt;br&gt;thanks for reading &amp;nbsp;
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-activate-Links---javascript-function---tp25992328p25995415.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25992328</id>
	<title>how to activate Links / javascript function ?</title>
	<published>2009-10-21T06:17:07Z</published>
	<updated>2009-10-21T06:17:07Z</updated>
	<author>
		<name>stuseven</name>
	</author>
	<content type="html">Now Im using Konqueror for online browswer, and have some 
&lt;br&gt;problems with links... I'll have to guess these are JavaScript.
&lt;br&gt;&lt;br&gt;Already Ive added netscape plugin for konqueror and this fixed
&lt;br&gt;several things... but with links on pages, still there are several
&lt;br&gt;problems... mostly, clicking a link doesnt go anywhere !
&lt;br&gt;&lt;br&gt;I recently got google voice... and while I can access this page
&lt;br&gt;with Konqueror, some important menus are not showing up,
&lt;br&gt;and, like the links problem, clicking what does appear wont
&lt;br&gt;proceed to that function. &amp;nbsp;So... what can I install for konqueror
&lt;br&gt;which will enable these kind of linking things from web pages ?
&lt;br&gt;&lt;br&gt;thanks for reading &amp;nbsp;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-activate-Links---javascript-function---tp25992328p25992328.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25971871</id>
	<title>Re: Introducing Project Silk</title>
	<published>2009-10-20T02:02:02Z</published>
	<updated>2009-10-20T02:02:02Z</updated>
	<author>
		<name>Sebastian Kügler-4</name>
	</author>
	<content type="html">Hi Rigo,
&lt;br&gt;&lt;br&gt;On Monday 19 October 2009 15:17:54 Rigo Wenning wrote:
&lt;br&gt;&amp;gt; this is not only a one-way street. Only following is not sufficient.
&lt;br&gt;&amp;gt; I would really like if Silk-developers would also provide feedback
&lt;br&gt;&amp;gt; to the working group, especially in the non-browser environment, if
&lt;br&gt;&amp;gt; something is missing or especially painful.
&lt;br&gt;&lt;br&gt;Sure :) We can only barely keep our mouths shut if we run into something we need 
&lt;br&gt;fixed &amp;quot;upstream&amp;quot;, so I think that is a given.
&lt;br&gt;&lt;br&gt;Thanks for the friendly invitation :)
&lt;br&gt;-- 
&lt;br&gt;sebas
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.kde.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.kde.org&lt;/a&gt;&amp;nbsp;| &lt;a href=&quot;http://vizZzion.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vizZzion.org&lt;/a&gt;&amp;nbsp;| GPG Key ID: 9119 0EF9
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Introducing-Project-Silk-tp25512007p25971871.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25970753</id>
	<title>Re: Introducing Project Silk</title>
	<published>2009-10-19T06:17:54Z</published>
	<updated>2009-10-19T06:17:54Z</updated>
	<author>
		<name>Rigo Wenning</name>
	</author>
	<content type="html">Sebastian, 
&lt;br&gt;&lt;br&gt;this is not only a one-way street. Only following is not sufficient. 
&lt;br&gt;I would really like if Silk-developers would also provide feedback 
&lt;br&gt;to the working group, especially in the non-browser environment, if 
&lt;br&gt;something is missing or especially painful. 
&lt;br&gt;&lt;br&gt;Best, 
&lt;br&gt;&lt;br&gt;Rigo
&lt;br&gt;&lt;br&gt;On Friday 16 October 2009, Sebastian Kügler wrote:
&lt;br&gt;&amp;gt; &amp;gt; The target environments for the Web Applications Working
&lt;br&gt;&amp;gt; &amp;gt; Group's deliverables include desktop and mobile browsers as
&lt;br&gt;&amp;gt; &amp;gt; well as non- browser environments that make use of Web
&lt;br&gt;&amp;gt; &amp;gt; technologies.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Alright, it's a bit clearer now. I'll keep an eye on it. It seems
&lt;br&gt;&amp;gt; &amp;nbsp;like it complements &amp;nbsp;nicely what we want to achieve with Selkie.
&lt;br&gt;&amp;gt; &amp;nbsp;Doing that based on standards by the w3c makes a lot of sense.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (204 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/25970753/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Introducing-Project-Silk-tp25512007p25970753.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25929268</id>
	<title>Re: Introducing Project Silk</title>
	<published>2009-10-16T09:50:26Z</published>
	<updated>2009-10-16T09:50:26Z</updated>
	<author>
		<name>Sebastian Kügler-4</name>
	</author>
	<content type="html">On Friday 16 October 2009 18:32:11 Rigo Wenning wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I don't have a camera ready primer for you. Look at the
&lt;br&gt;&amp;gt; specifications in &lt;a href=&quot;http://www.w3.org/2008/webapps/wiki/PubStatus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2008/webapps/wiki/PubStatus&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The charter of the Webapps WG is a bit broad, but it explains a bit,
&lt;br&gt;&amp;gt; what the Group is doing:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.w3.org/2008/webapps/charter/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2008/webapps/charter/&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I will also ask back internally and give you further information if
&lt;br&gt;&amp;gt; there is anything significant. Note well this one sentence from the
&lt;br&gt;&amp;gt; charter:
&lt;br&gt;&amp;gt; The target environments for the Web Applications Working Group's
&lt;br&gt;&amp;gt; deliverables include desktop and mobile browsers as well as non-
&lt;br&gt;&amp;gt; browser environments that make use of Web technologies.
&lt;/div&gt;&lt;br&gt;Alright, it's a bit clearer now. I'll keep an eye on it. It seems like it complements 
&lt;br&gt;nicely what we want to achieve with Selkie. Doing that based on standards by the w3c 
&lt;br&gt;makes a lot of sense.
&lt;br&gt;&lt;br&gt;&amp;gt; The latter is what you intend to do as far as I can see.
&lt;br&gt;&lt;br&gt;Well, Silk as we look at it influenced all of those three aspects.
&lt;br&gt;-- 
&lt;br&gt;sebas
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.kde.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.kde.org&lt;/a&gt;&amp;nbsp;| &lt;a href=&quot;http://vizZzion.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vizZzion.org&lt;/a&gt;&amp;nbsp;| GPG Key ID: 9119 0EF9
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Introducing-Project-Silk-tp25512007p25929268.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25928351</id>
	<title>Re: Introducing Project Silk</title>
	<published>2009-10-16T09:32:11Z</published>
	<updated>2009-10-16T09:32:11Z</updated>
	<author>
		<name>Rigo Wenning</name>
	</author>
	<content type="html">Hi Sebastian, 
&lt;br&gt;&lt;br&gt;I don't have a camera ready primer for you. Look at the &amp;nbsp;
&lt;br&gt;specifications in &lt;a href=&quot;http://www.w3.org/2008/webapps/wiki/PubStatus&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2008/webapps/wiki/PubStatus&lt;/a&gt;&lt;br&gt;&lt;br&gt;The charter of the Webapps WG is a bit broad, but it explains a bit, 
&lt;br&gt;what the Group is doing:
&lt;br&gt;&lt;a href=&quot;http://www.w3.org/2008/webapps/charter/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2008/webapps/charter/&lt;/a&gt;&lt;br&gt;&lt;br&gt;I will also ask back internally and give you further information if 
&lt;br&gt;there is anything significant. Note well this one sentence from the 
&lt;br&gt;charter: 
&lt;br&gt;The target environments for the Web Applications Working Group's 
&lt;br&gt;deliverables include desktop and mobile browsers as well as non-
&lt;br&gt;browser environments that make use of Web technologies.
&lt;br&gt;&lt;br&gt;The latter is what you intend to do as far as I can see.
&lt;br&gt;&lt;br&gt;Best, 
&lt;br&gt;&lt;br&gt;Rigo
&lt;br&gt;&lt;br&gt;On Friday 16 October 2009, Sebastian Kügler wrote:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi Rigo,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Friday 16 October 2009 10:48:08 Rigo Wenning wrote:
&lt;br&gt;&amp;gt; &amp;gt; please be sure to monitor
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://www.w3.org/2008/webapps/wiki/Main_Page&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2008/webapps/wiki/Main_Page&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; reading your email, this struck me as nearly parallel. WebApps
&lt;br&gt;&amp;gt; &amp;gt; could hugely benefit from a KDE implementation and you could
&lt;br&gt;&amp;gt; &amp;gt; find an even more interoperable way of doing things.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; If you have further questions, please don't hesitate to ask.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I've browsed through the pages you link, but it's slightly
&lt;br&gt;&amp;gt; &amp;nbsp;unclear to me what the technical bits are. (The pages seem to be
&lt;br&gt;&amp;gt; &amp;nbsp;mostly about organisation issues.) It's a bit hazy to me, how
&lt;br&gt;&amp;gt; &amp;nbsp;it's useful for us (while of course the more we can work within
&lt;br&gt;&amp;gt; &amp;nbsp;existing standards the better).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Is there a write-up with example and more concrete information
&lt;br&gt;&amp;gt; &amp;nbsp;about implementations, maybe?
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;/div&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (204 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/25928351/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Introducing-Project-Silk-tp25512007p25928351.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25923980</id>
	<title>Re: Introducing Project Silk</title>
	<published>2009-10-16T04:39:59Z</published>
	<updated>2009-10-16T04:39:59Z</updated>
	<author>
		<name>Sebastian Kügler-4</name>
	</author>
	<content type="html">Hi Rigo,
&lt;br&gt;&lt;br&gt;On Friday 16 October 2009 10:48:08 Rigo Wenning wrote:
&lt;br&gt;&amp;gt; please be sure to monitor
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.w3.org/2008/webapps/wiki/Main_Page&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2008/webapps/wiki/Main_Page&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; reading your email, this struck me as nearly parallel. WebApps could
&lt;br&gt;&amp;gt; hugely benefit from a KDE implementation and you could find an even
&lt;br&gt;&amp;gt; more interoperable way of doing things.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; If you have further questions, please don't hesitate to ask.
&lt;br&gt;&lt;br&gt;I've browsed through the pages you link, but it's slightly unclear to me what the 
&lt;br&gt;technical bits are. (The pages seem to be mostly about organisation issues.) It's a 
&lt;br&gt;bit hazy to me, how it's useful for us (while of course the more we can work within 
&lt;br&gt;existing standards the better).
&lt;br&gt;&lt;br&gt;Is there a write-up with example and more concrete information about implementations, 
&lt;br&gt;maybe?
&lt;br&gt;-- 
&lt;br&gt;sebas
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.kde.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.kde.org&lt;/a&gt;&amp;nbsp;| &lt;a href=&quot;http://vizZzion.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vizZzion.org&lt;/a&gt;&amp;nbsp;| GPG Key ID: 9119 0EF9
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Introducing-Project-Silk-tp25512007p25923980.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25921948</id>
	<title>Re: Introducing Project Silk</title>
	<published>2009-10-16T01:48:08Z</published>
	<updated>2009-10-16T01:48:08Z</updated>
	<author>
		<name>Rigo Wenning</name>
	</author>
	<content type="html">Hi Sebastian, 
&lt;br&gt;&lt;br&gt;please be sure to monitor 
&lt;br&gt;&lt;a href=&quot;http://www.w3.org/2008/webapps/wiki/Main_Page&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2008/webapps/wiki/Main_Page&lt;/a&gt;&lt;br&gt;&lt;br&gt;reading your email, this struck me as nearly parallel. WebApps could 
&lt;br&gt;hugely benefit from a KDE implementation and you could find an even 
&lt;br&gt;more interoperable way of doing things. 
&lt;br&gt;&lt;br&gt;If you have further questions, please don't hesitate to ask. 
&lt;br&gt;&lt;br&gt;Best, 
&lt;br&gt;Rigo Wenning
&lt;br&gt;W3C Legal counsel
&lt;br&gt;&lt;br&gt;On Friday 18 September 2009, Sebastian Kügler wrote:
&lt;br&gt;[...]
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The client used to access the data through the service nowadays
&lt;br&gt;&amp;gt; &amp;nbsp;is the web browser. The current situation is that the service
&lt;br&gt;&amp;gt; &amp;nbsp;ships a complete application to the user. Web applications that
&lt;br&gt;&amp;gt; &amp;nbsp;get their data live from the server and present it in a
&lt;br&gt;&amp;gt; &amp;nbsp;JavaScript-controlled HTML page are the norm. One problem here
&lt;br&gt;&amp;gt; &amp;nbsp;is that it's for the service increasingly hard to anticipate
&lt;br&gt;&amp;gt; &amp;nbsp;what works for the client, a big detailed webpage might not fit
&lt;br&gt;&amp;gt; &amp;nbsp;on a small, hi-res screen with touch-screen input, small fonts
&lt;br&gt;&amp;gt; &amp;nbsp;and mouse-based navigation are both no-gos for a ten-foot
&lt;br&gt;&amp;gt; &amp;nbsp;interface with a remote control. There is also very little
&lt;br&gt;&amp;gt; &amp;nbsp;consistency in both, appearance and interaction for the user
&lt;br&gt;&amp;gt; &amp;nbsp;across different web applications.
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;/div&gt;&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (204 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/25921948/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Introducing-Project-Silk-tp25512007p25921948.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25793011</id>
	<title>Memory Leak when doing Reload()</title>
	<published>2009-10-07T12:38:35Z</published>
	<updated>2009-10-07T12:38:35Z</updated>
	<author>
		<name>Stefan Strobl-2</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;I'm having trouble with a memory leak when doing reloads. I've been
&lt;br&gt;searching for over a week now but am not getting any closer. Could
&lt;br&gt;anyone please help me with this issue? Maybe you can try if your system
&lt;br&gt;behaves the same?
&lt;br&gt;&lt;br&gt;I applied attached patch to konq-e-0.2-20040524 to be able to trigger a
&lt;br&gt;reload externally. I'm then using the attached program in main.cpp which
&lt;br&gt;does the triggering (via QCopChannel).
&lt;br&gt;&lt;br&gt;A simple test page of 2,4kB size causes a leak of about 476kB after a
&lt;br&gt;100 reloads.
&lt;br&gt;&lt;br&gt;I'm cross-compiling for ppc, using qte-3.3.4 and this is my configuration:
&lt;br&gt;./configure --host=ppc-linux --enable-embedded --enable-qt-embedded
&lt;br&gt;--without-arts --disable-pcre --disable-debug --disable-mt
&lt;br&gt;--enable-fontsubs --enable-xmlui --enable-final --prefix=/home/konq-e
&lt;br&gt;--exec-prefix=/home/konq-e
&lt;br&gt;--with-extra-includes=$QTDIR/src/3rdparty/libjpeg
&lt;br&gt;--with-extra-libs=$QTDIR/src/3rdparty/libjpeg --with-ipv6-lookup=n
&lt;br&gt;&lt;br&gt;Many thanks
&lt;br&gt;Stefan.
&lt;br&gt;&lt;br&gt;&lt;br /&gt;--- konqueror3-embedded-0.2-20040524.orig/konq-embed/src/view.h	2003-03-17 21:49:02.000000000 +0100
&lt;br&gt;+++ konqueror3-embedded-0.2-20040524/konq-embed/src/view.h	2009-10-07 20:09:51.000000000 +0200
&lt;br&gt;@@ -31,6 +31,8 @@
&lt;br&gt;&amp;nbsp;#include &amp;lt;kparts/factory.h&amp;gt;
&lt;br&gt;&amp;nbsp;#include &amp;lt;kaction.h&amp;gt;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+#include &amp;lt;qcopchannel_qws.h&amp;gt;
&lt;br&gt;+
&lt;br&gt;&amp;nbsp;class QMainWindow;
&lt;br&gt;&amp;nbsp;class KHTMLPart;
&lt;br&gt;&amp;nbsp;class HTMLView;
&lt;br&gt;@@ -226,6 +228,8 @@ protected:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;KAction *m_back;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;KAction *m_forward;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;QCopChannel *m_trigger;
&lt;br&gt;+
&lt;br&gt;&amp;nbsp;private:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;void setScaling( KHTMLPart *frame );
&lt;br&gt;&amp;nbsp;
&lt;br&gt;--- konqueror3-embedded-0.2-20040524.orig/konq-embed/src/view.cc	2003-05-27 18:08:25.000000000 +0200
&lt;br&gt;+++ konqueror3-embedded-0.2-20040524/konq-embed/src/view.cc	2009-10-07 20:02:52.000000000 +0200
&lt;br&gt;@@ -241,6 +241,11 @@ BrowserView::BrowserView( const QString 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;m_doc-&amp;gt;browserExtension()-&amp;gt;setBrowserInterface( m_browserIface );
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;m_goBuffer = 0;
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;/* trigger reload() externally */
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;m_trigger = new QCopChannel(&amp;quot;extTrigReload&amp;quot;, this);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;QObject::connect( m_trigger, SIGNAL(received(const QCString&amp;,const QByteArray&amp;)),
&lt;br&gt;+		 &amp;nbsp; &amp;nbsp; &amp;nbsp;this, SLOT(reload()) );
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;BrowserView::~BrowserView()
&lt;br&gt;&lt;br /&gt;/*
&lt;br&gt;&amp;nbsp;* konq Trigger
&lt;br&gt;&amp;nbsp;*
&lt;br&gt;&amp;nbsp;* sending QCopChannel &amp;quot;extTrigReload&amp;quot; causes
&lt;br&gt;&amp;nbsp;* patched konqueror browser to reload its view
&lt;br&gt;&amp;nbsp;*/
&lt;br&gt;#include &amp;lt;qapplication.h&amp;gt;
&lt;br&gt;#include &amp;lt;qcopchannel_qws.h&amp;gt;
&lt;br&gt;&lt;br&gt;int main( int argc, char **argv )
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; QApplication a( argc, argv );
&lt;br&gt;&amp;nbsp; &amp;nbsp; QCopChannel ch(&amp;quot;myTrigger&amp;quot;);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; QCopChannel::send(&amp;quot;extTrigReload&amp;quot;, &amp;quot;\0&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; return 0;
&lt;br&gt;}
&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;konq-e mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25793011&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;konq-e@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://mail.kde.org/mailman/listinfo/konq-e&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://mail.kde.org/mailman/listinfo/konq-e&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/konq-e-f6404.html&quot; embed=&quot;fixTarget[6404]&quot; target=&quot;_top&quot; &gt;konq-e&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Memory-Leak-when-doing-Reload%28%29-tp25793011p25793011.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25776726</id>
	<title>Re: qte version</title>
	<published>2009-10-06T14:17:32Z</published>
	<updated>2009-10-06T14:17:32Z</updated>
	<author>
		<name>Eva Brucherseifer</name>
	</author>
	<content type="html">Hello Stefan,
&lt;br&gt;&lt;br&gt;the GUI as shown in the screenshot was backported and developed for a Qtopia 
&lt;br&gt;platform, being based on Qt2.
&lt;br&gt;The code als runs with Qt3, but this hasn't been tested intensively (if at 
&lt;br&gt;all). 
&lt;br&gt;&lt;br&gt;Downloads are on the same page if you scroll down. The source code can also be 
&lt;br&gt;found in KDE's source repository (see &lt;a href=&quot;http://techbase.kde.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://techbase.kde.org&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;Eva
&lt;br&gt;&lt;br&gt;Am Mo Oktober 5 2009 17:00:23 schrieb Stefan Strobl:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; according to the website &lt;a href=&quot;http://www.basyskom.de/index.pl/konqe&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.basyskom.de/index.pl/konqe&lt;/a&gt;, the
&lt;br&gt;&amp;gt; current konq/e release was tested under:
&lt;br&gt;&amp;gt; &amp;nbsp; * Qt/E 2.3.12 with mt and rtti support
&lt;br&gt;&amp;gt; &amp;nbsp; * Qtopia 2.2.0
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; With all the renaming done earlier by trolltech I'm now a little
&lt;br&gt;&amp;gt; confused. As far as I understood QT/E was later renamed to Qtopia-Core
&lt;br&gt;&amp;gt; and then even later back to QT-Embedded-Linux.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I've a working QT/E-3.3.4 as well as newer
&lt;br&gt;&amp;gt; qt-embedded-linux-opensource-src-4.4.3. The Sources I downloaded here:
&lt;br&gt;&amp;gt; ftp://ftp.trolltech.no/pub/qt/source/
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; According to the version number QT/E-2.3.12 should be older than my
&lt;br&gt;&amp;gt; QT/E-3.3.4. Is that correct? Also I cannot find where to download the
&lt;br&gt;&amp;gt; sources. Can anyone provide me with a link?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt; Stefan.
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; konq-e mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25776726&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;konq-e@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://mail.kde.org/mailman/listinfo/konq-e&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://mail.kde.org/mailman/listinfo/konq-e&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;Eva Brucherseifer
&lt;br&gt;Managing Director
&lt;br&gt;&lt;br&gt;basysKom GmbH
&lt;br&gt;Robert-Bosch-Str. 7 | 64293 Darmstadt | Germany
&lt;br&gt;Tel: +49 6151 3969-961 | Fax: -736 | Mobile: +49 170 5533642
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25776726&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;eva.brucherseifer@...&lt;/a&gt; | www.basyskom.de
&lt;br&gt;&lt;br&gt;Handelsregister: Darmstadt HRB 9352
&lt;br&gt;Geschaeftsfuehrung: Eva Brucherseifer
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;konq-e mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25776726&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;konq-e@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://mail.kde.org/mailman/listinfo/konq-e&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://mail.kde.org/mailman/listinfo/konq-e&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/konq-e-f6404.html&quot; embed=&quot;fixTarget[6404]&quot; target=&quot;_top&quot; &gt;konq-e&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/qte-version-tp25752439p25776726.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25752439</id>
	<title>qte version</title>
	<published>2009-10-05T08:00:23Z</published>
	<updated>2009-10-05T08:00:23Z</updated>
	<author>
		<name>Stefan Strobl-2</name>
	</author>
	<content type="html">Hello
&lt;br&gt;&lt;br&gt;according to the website &lt;a href=&quot;http://www.basyskom.de/index.pl/konqe&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.basyskom.de/index.pl/konqe&lt;/a&gt;, the
&lt;br&gt;current konq/e release was tested under:
&lt;br&gt;&amp;nbsp; * Qt/E 2.3.12 with mt and rtti support
&lt;br&gt;&amp;nbsp; * Qtopia 2.2.0
&lt;br&gt;&lt;br&gt;With all the renaming done earlier by trolltech I'm now a little
&lt;br&gt;confused. As far as I understood QT/E was later renamed to Qtopia-Core
&lt;br&gt;and then even later back to QT-Embedded-Linux.
&lt;br&gt;&lt;br&gt;I've a working QT/E-3.3.4 as well as newer
&lt;br&gt;qt-embedded-linux-opensource-src-4.4.3. The Sources I downloaded here:
&lt;br&gt;ftp://ftp.trolltech.no/pub/qt/source/
&lt;br&gt;&lt;br&gt;According to the version number QT/E-2.3.12 should be older than my
&lt;br&gt;QT/E-3.3.4. Is that correct? Also I cannot find where to download the
&lt;br&gt;sources. Can anyone provide me with a link?
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;Stefan.
&lt;br&gt;_______________________________________________
&lt;br&gt;konq-e mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25752439&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;konq-e@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://mail.kde.org/mailman/listinfo/konq-e&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://mail.kde.org/mailman/listinfo/konq-e&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/konq-e-f6404.html&quot; embed=&quot;fixTarget[6404]&quot; target=&quot;_top&quot; &gt;konq-e&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/qte-version-tp25752439p25752439.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25707484</id>
	<title>Re: [WebKit-devel] KDE Webkit status update...</title>
	<published>2009-10-01T15:17:50Z</published>
	<updated>2009-10-01T15:17:50Z</updated>
	<author>
		<name>Bugzilla from adawit@kde.org</name>
	</author>
	<content type="html">On Thursday 01 October 2009 18:00:24 Andrea Diamantini wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Thursday 01 October 2009 11:53:29 David Faure wrote:
&lt;br&gt;&amp;gt; &amp;gt; On Wednesday 30 September 2009, Urs Wolfer wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; One comment from my side: I would like to put kdewebkit (the binding
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;between &amp;nbsp;kdelibs &amp;lt;-&amp;gt; QtWebKit into kdelibs/webkit ASAP. I think the
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;current state of this part is quite good. Most bugs have been fixed
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; there. This way many apps/libs could use KWeb* instead of QWeb so they
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; could profit from the KDE- integration. Any objections / ideas?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Makes sense.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'd like know something more about the NetworkAccessManager class
&lt;br&gt;&amp;gt; &amp;nbsp;implemented in the kdewebkit/kwebpage.cpp file that the binding use.
&lt;br&gt;&amp;gt; Is it possible/planned merging it with KIO::AccessManager? If not, why?
&lt;/div&gt;&lt;br&gt;It will not because that private implementation filters out requests using the 
&lt;br&gt;WebSettings class that maps khtml configuration information to QtWebkit. And 
&lt;br&gt;that obviously does not belong in KIO. More over the set &amp;quot;session/request&amp;quot; 
&lt;br&gt;meta data api is specific to how the kdewebkit uses the KIO meta data system 
&lt;br&gt;and is neither needed nor necessary in a generic location like KIO.
&lt;br&gt;&lt;br&gt;May I ask why you wanted that to be merged ?
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--WebKit-devel--KDE-Webkit-status-update...-tp25707484p25707484.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25690685</id>
	<title>Re: Make Konqueror's searchbar plugin work with any KPart based browser engine...</title>
	<published>2009-09-30T16:11:56Z</published>
	<updated>2009-09-30T16:11:56Z</updated>
	<author>
		<name>Bugzilla from adawit@kde.org</name>
	</author>
	<content type="html">Hi Fredy,
&lt;br&gt;&lt;br&gt;On Wednesday 30 September 2009 13:06:02 you wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi Dawit,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I've looked through the patch, and I think generally the patch is ok
&lt;br&gt;&amp;gt; to make the searchbar plugin works with any kpart browser engine (like
&lt;br&gt;&amp;gt; webkit).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; But there is one problem: the searchbar is enabled (and shown)
&lt;br&gt;&amp;gt; regardless of the active part, and the worse part is if the user
&lt;br&gt;&amp;gt; choose to search using the searchbar, the result is just passed to the
&lt;br&gt;&amp;gt; active part. So for example if currently active part is kate part, and
&lt;br&gt;&amp;gt; user uses searchbar for google search, what he / she gets is the raw
&lt;br&gt;&amp;gt; html text shown in the kate part. (IIRC, there is a bug report for
&lt;br&gt;&amp;gt; this problem)
&lt;/div&gt;&lt;br&gt;Right... the patch attached to this email is not the final patch which I ended 
&lt;br&gt;up committing a couple of days ago. The committed change does not have the 
&lt;br&gt;problem you raised here because it hides the search bar if the Kpart is 
&lt;br&gt;ReadWrite part, which of course the katepart is... Doing that is not a perfect 
&lt;br&gt;solution for this problem, but I believe it is better than checking for all 
&lt;br&gt;the specific engine types you want to support.
&lt;br&gt;&lt;br&gt;The ideal solution would probably be to either add a new service type to 
&lt;br&gt;identify browsing engines which we could query for or add a new property, e.g. 
&lt;br&gt;X-KDE-Browser-Engine=true, to the part's &amp;quot;.desktop&amp;quot; file to identify it as a 
&lt;br&gt;browsing engine and checking for that property. Until then me thinks the check 
&lt;br&gt;for the ReadWrite part should be sufficient...
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Make-Konqueror%27s-searchbar-plugin-work-with-any-KPart-based-browser-engine...-tp25614704p25690685.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25685211</id>
	<title>Re: Make Konqueror's searchbar plugin work with any KPart based  browser engine...</title>
	<published>2009-09-30T10:06:02Z</published>
	<updated>2009-09-30T10:06:02Z</updated>
	<author>
		<name>Bugzilla from fyanardi@gmail.com</name>
	</author>
	<content type="html">Hi Dawit,
&lt;br&gt;&lt;br&gt;I've looked through the patch, and I think generally the patch is ok
&lt;br&gt;to make the searchbar plugin works with any kpart browser engine (like
&lt;br&gt;webkit).
&lt;br&gt;&lt;br&gt;But there is one problem: the searchbar is enabled (and shown)
&lt;br&gt;regardless of the active part, and the worse part is if the user
&lt;br&gt;choose to search using the searchbar, the result is just passed to the
&lt;br&gt;active part. So for example if currently active part is kate part, and
&lt;br&gt;user uses searchbar for google search, what he / she gets is the raw
&lt;br&gt;html text shown in the kate part. (IIRC, there is a bug report for
&lt;br&gt;this problem)
&lt;br&gt;&lt;br&gt;One solution for this is to change the active part to be a browser
&lt;br&gt;part, but I haven't really looked into it.
&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;&lt;br&gt;Fredy Yanardi
&lt;br&gt;&lt;br&gt;On Sat, Sep 26, 2009 at 3:01 AM, Dawit A. &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25685211&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;adawit@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Indeed... That check was accidentally left there by me when I was orginally
&lt;br&gt;&amp;gt; playing with it. You only need to check whether or not there is a part. That
&lt;br&gt;&amp;gt; is sufficient since the install directory for the .desktop file determines to
&lt;br&gt;&amp;gt; which application the plugin belongs ; so there is no need to check the type
&lt;br&gt;&amp;gt; of KPart you dealing with. You only need to make sure that features specific
&lt;br&gt;&amp;gt; only to a given KPart are invoked correctly which is what the patch was
&lt;br&gt;&amp;gt; intended to address.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Attached is the corrected version of the patch... Thanks.
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Make-Konqueror%27s-searchbar-plugin-work-with-any-KPart-based-browser-engine...-tp25614704p25685211.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25619293</id>
	<title>Re: No statusbar in the default konqueror tab ??</title>
	<published>2009-09-25T14:05:39Z</published>
	<updated>2009-09-25T14:05:39Z</updated>
	<author>
		<name>Bugzilla from frank78ac@googlemail.com</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I can't reproduce this, but here are a few bug reports which are probably 
&lt;br&gt;about the issue you're seeing:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://bugs.kde.org/show_bug.cgi?id=192866&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://bugs.kde.org/show_bug.cgi?id=192866&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;https://bugs.kde.org/show_bug.cgi?id=193072&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://bugs.kde.org/show_bug.cgi?id=193072&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;https://bugs.kde.org/show_bug.cgi?id=198846&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://bugs.kde.org/show_bug.cgi?id=198846&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Frank
&lt;br&gt;&lt;br&gt;On Friday 25 September 2009 20:36:32 Dawit A. wrote:
&lt;br&gt;&amp;gt; Whenever I launch Konqueror, does not matter how (command link, menu), the
&lt;br&gt;&amp;gt; default tab, regardless what my default start page is set to, does not show
&lt;br&gt;&amp;gt; the status bar. However, if I create new tabs, then those new tabs do show
&lt;br&gt;&amp;gt; &amp;nbsp;the status bar. Does anyone else experience this issue ?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/No-statusbar-in-the-default-konqueror-tab----tp25617069p25619293.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25617995</id>
	<title>Re: No statusbar in the default konqueror tab ??</title>
	<published>2009-09-25T12:32:12Z</published>
	<updated>2009-09-25T12:32:12Z</updated>
	<author>
		<name>Bugzilla from sng@hellug.gr</name>
	</author>
	<content type="html">On Friday 25 of September 2009 Dawit A. wrote:
&lt;br&gt;&amp;gt; Whenever I launch Konqueror, does not matter how (command link, menu), the
&lt;br&gt;&amp;gt; default tab, regardless what my default start page is set to, does not show
&lt;br&gt;&amp;gt; the status bar. However, if I create new tabs, then those new tabs do show
&lt;br&gt;&amp;gt; &amp;nbsp;the status bar. Does anyone else experience this issue ?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;You are absolutely right...
&lt;br&gt;And I thought I was the only one annoyed by this &amp;quot;feature&amp;quot; :) 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Is there a &amp;quot;StatusBarAlwaysOn&amp;quot; parameter anywhere?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Regards
&lt;br&gt;&amp;nbsp; Spiros
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;gpg key URL: &lt;a href=&quot;http://members.hellug.gr/sng/gpg-hellug.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://members.hellug.gr/sng/gpg-hellug.html&lt;/a&gt;&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (205 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/25617995/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/No-statusbar-in-the-default-konqueror-tab----tp25617069p25617995.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25618031</id>
	<title>Re: No statusbar in the default konqueror tab ??</title>
	<published>2009-09-25T12:19:51Z</published>
	<updated>2009-09-25T12:19:51Z</updated>
	<author>
		<name>Bugzilla from kossebau@kde.org</name>
	</author>
	<content type="html">Vendredi, le 25 septembre 2009, à 20:36, Dawit A. a écrit:
&lt;br&gt;&amp;gt; Whenever I launch Konqueror, does not matter how (command link, menu), the
&lt;br&gt;&amp;gt; default tab, regardless what my default start page is set to, does not show
&lt;br&gt;&amp;gt; the status bar. However, if I create new tabs, then those new tabs do show
&lt;br&gt;&amp;gt; the status bar. Does anyone else experience this issue ?
&lt;br&gt;&lt;br&gt;I remember to have seen this ever since KDE 4.0, too. Just checked, and a 
&lt;br&gt;Konqueror from trunk a week or so ago now always shows a statusbar for me on 
&lt;br&gt;start. No idea if this is related to the fact that I meanwhile compiled and 
&lt;br&gt;installed the Konqueror extensions from extragear, but you working on the 
&lt;br&gt;searchbar plugin should have them also installed I guess, which might rule 
&lt;br&gt;that out as reason.
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Friedrich
&lt;br&gt;-- 
&lt;br&gt;Okteta - KDE 4 Hex Editor - &lt;a href=&quot;http://utils.kde.org/projects/okteta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://utils.kde.org/projects/okteta&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/No-statusbar-in-the-default-konqueror-tab----tp25617069p25618031.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25618038</id>
	<title>Re: Make Konqueror's searchbar plugin work with any KPart based browser engine...</title>
	<published>2009-09-25T12:18:40Z</published>
	<updated>2009-09-25T12:18:40Z</updated>
	<author>
		<name>Bugzilla from kossebau@kde.org</name>
	</author>
	<content type="html">Vendredi, le 25 septembre 2009, à 21:01, Dawit A. a écrit:
&lt;br&gt;&amp;gt; Indeed... That check was accidentally left there by me when I was orginally
&lt;br&gt;&amp;gt; playing with it. You only need to check whether or not there is a part.
&lt;br&gt;&lt;br&gt;Glad this didn't break your approach, so I as messenger now was shot ;)
&lt;br&gt;&lt;br&gt;&amp;gt; That is sufficient since the install directory for the .desktop file
&lt;br&gt;&amp;gt; determines to which application the plugin belongs ; so there is no need to
&lt;br&gt;&amp;gt; check the type of KPart you dealing with. You only need to make sure that
&lt;br&gt;&amp;gt; features specific only to a given KPart are invoked correctly which is what
&lt;br&gt;&amp;gt; the patch was intended to address.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Attached is the corrected version of the patch... Thanks.
&lt;br&gt;&lt;br&gt;Perhaps the name of the variable &amp;quot;isBrowser&amp;quot; should be adapted, then, so other 
&lt;br&gt;persons reading the code understand what this bool is about? :)
&lt;br&gt;&lt;br&gt;(BTW: I am no Konqui developer, just lurking on the list since some time due 
&lt;br&gt;to me planning some bigger discussion needed for the network:/ kioslave, just 
&lt;br&gt;missing the time yet to prepare it as needed :) )
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Friedrich
&lt;br&gt;-- 
&lt;br&gt;Okteta - KDE 4 Hex Editor - &lt;a href=&quot;http://utils.kde.org/projects/okteta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://utils.kde.org/projects/okteta&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Make-Konqueror%27s-searchbar-plugin-work-with-any-KPart-based-browser-engine...-tp25614704p25618038.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25617496</id>
	<title>Re: Make Konqueror's searchbar plugin work with any KPart based browser engine...</title>
	<published>2009-09-25T12:01:23Z</published>
	<updated>2009-09-25T12:01:23Z</updated>
	<author>
		<name>Bugzilla from adawit@kde.org</name>
	</author>
	<content type="html">On Friday 25 September 2009 14:24:52 Friedrich W. H. Kossebau wrote:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi Dawit,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Vendredi, le 25 septembre 2009, à 18:02, Dawit A. a écrit:
&lt;br&gt;&amp;gt; &amp;gt; Hello,
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Since there is no &amp;quot;Konqueror&amp;quot; or &amp;quot;Konq-plugins&amp;quot; group in reviewboard, I
&lt;br&gt;&amp;gt; &amp;gt; am going to post this patch here. As the subject states the attached
&lt;br&gt;&amp;gt; &amp;gt; patch makes it possible for the searchbar plugin to be used with
&lt;br&gt;&amp;gt; &amp;gt; rendering engines other other than khtml, e.g. webkitpart.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Please CC me when you reply since I am not subscribed to kfm-devel.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; @@ -458,7 +459,7 @@
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;void SearchBarPlugin::updateComboVisibility()
&lt;br&gt;&amp;gt; &amp;nbsp;{
&lt;br&gt;&amp;gt; - &amp;nbsp; &amp;nbsp;bool isBrowser = m_part &amp;&amp; dynamic_cast&amp;lt;KHTMLPart *&amp;gt;(m_part);
&lt;br&gt;&amp;gt; + &amp;nbsp; &amp;nbsp;bool isBrowser = (m_part &amp;&amp; m_part-&amp;gt;browserExtension());
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The name &amp;quot;browserExtension()&amp;quot; might have lead you to the wrong assumption.
&lt;br&gt;&amp;gt; &amp;nbsp;The BrowserExtension [BE] is an extension of KParts for better support
&lt;br&gt;&amp;gt; &amp;nbsp;_of_ browser-a-like containers like Konqueror, for stuff like going back
&lt;br&gt;&amp;gt; &amp;nbsp;and forward in history. It is not the extension of a (HTML) browsing-able
&lt;br&gt;&amp;gt; &amp;nbsp;KPart.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Besides the KHtmlPart at least the KParts of Kate and Okteta are
&lt;br&gt;&amp;gt; &amp;nbsp;implementing this extension. So this check for &amp;quot;isBrowser&amp;quot; does not work I
&lt;br&gt;&amp;gt; &amp;nbsp;fear.
&lt;/div&gt;&lt;/div&gt;Indeed... That check was accidentally left there by me when I was orginally 
&lt;br&gt;playing with it. You only need to check whether or not there is a part. That 
&lt;br&gt;is sufficient since the install directory for the .desktop file determines to 
&lt;br&gt;which application the plugin belongs ; so there is no need to check the type 
&lt;br&gt;of KPart you dealing with. You only need to make sure that features specific 
&lt;br&gt;only to a given KPart are invoked correctly which is what the patch was 
&lt;br&gt;intended to address.
&lt;br&gt;&lt;br&gt;Attached is the corrected version of the patch... Thanks.
&lt;br&gt;&lt;br /&gt;&lt;tt&gt;[searchbar.patch]&lt;/tt&gt;&lt;br /&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;tt&gt;Index: searchbar.cpp
&lt;br&gt;===================================================================
&lt;br&gt;--- searchbar.cpp	(revision 1027752)
&lt;br&gt;+++ searchbar.cpp	(working copy)
&lt;br&gt;@@ -194,7 +194,7 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if (m_urlEnterLock || search.isEmpty() || !m_part)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if (m_searchMode == FindInThisPage) {
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;KHTMLPart *part = dynamic_cast&amp;lt;KHTMLPart*&amp;gt;(m_part);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;KHTMLPart *part = qobject_cast&amp;lt;KHTMLPart*&amp;gt;(m_part);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (part) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;part-&amp;gt;findText(search, 0);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;part-&amp;gt;findTextNext();
&lt;br&gt;@@ -292,7 +292,8 @@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;m_popupMenu = new QMenu(m_searchCombo);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;m_popupMenu-&amp;gt;setObjectName(&amp;quot;search selection menu&amp;quot;);
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;m_popupMenu-&amp;gt;addAction(KIcon(&amp;quot;edit-find&amp;quot;), i18n(&amp;quot;Find in This Page&amp;quot;), this, SLOT(useFindInThisPage()));
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QAction *action = m_popupMenu-&amp;gt;addAction(KIcon(&amp;quot;edit-find&amp;quot;), i18n(&amp;quot;Find in This Page&amp;quot;), this, SLOT(useFindInThisPage()));
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;action-&amp;gt;setDisabled((qobject_cast&amp;lt;KHTMLPart*&amp;gt;(m_part) == 0));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;m_popupMenu-&amp;gt;addSeparator();
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;int i =- 1;
&lt;br&gt;@@ -458,7 +459,7 @@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;void SearchBarPlugin::updateComboVisibility()
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;- &amp;nbsp; &amp;nbsp;bool isBrowser = m_part &amp;&amp; dynamic_cast&amp;lt;KHTMLPart *&amp;gt;(m_part);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;const bool isBrowser = (m_part != 0);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;m_searchComboAction-&amp;gt;setVisible(isBrowser &amp;&amp; !m_searchComboAction-&amp;gt;associatedWidgets().isEmpty());
&lt;br&gt;&amp;nbsp;
&lt;br&gt;@@ -502,33 +503,35 @@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;void SearchBarPlugin::HTMLDocLoaded()
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;- &amp;nbsp; &amp;nbsp;KHTMLPart *khtmlPart = static_cast&amp;lt;KHTMLPart *&amp;gt;(m_part);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;KHTMLPart *khtmlPart = qobject_cast&amp;lt;KHTMLPart *&amp;gt;(m_part);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;DOM::HTMLDocument htmlDoc = khtmlPart-&amp;gt;htmlDocument();
&lt;br&gt;- &amp;nbsp; &amp;nbsp;DOM::NodeList headNL = htmlDoc.getElementsByTagName(&amp;quot;head&amp;quot;);
&lt;br&gt;- &amp;nbsp; &amp;nbsp;if (headNL.length() &amp;lt; 1) {
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;}
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;if (khtmlPart) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DOM::HTMLDocument htmlDoc = khtmlPart-&amp;gt;htmlDocument();
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DOM::NodeList headNL = htmlDoc.getElementsByTagName(&amp;quot;head&amp;quot;);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (headNL.length() &amp;lt; 1) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;DOM::Node headNode = headNL.item(0);
&lt;br&gt;- &amp;nbsp; &amp;nbsp;if (headNode.nodeType() != 1) {
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;}
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DOM::Node headNode = headNL.item(0);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (headNode.nodeType() != 1) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;DOM::HTMLElement headEl = (DOM::HTMLElement) headNode;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;DOM::NodeList linkNL = headEl.getElementsByTagName(&amp;quot;link&amp;quot;);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DOM::HTMLElement headEl = (DOM::HTMLElement) headNode;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DOM::NodeList linkNL = headEl.getElementsByTagName(&amp;quot;link&amp;quot;);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;for (unsigned int i = 0; i &amp;lt; linkNL.length(); i++) {
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (linkNL.item(i).nodeType() == 1) {
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DOM::HTMLElement linkEl = (DOM::HTMLElement)linkNL.item(i);
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (linkEl.getAttribute(&amp;quot;rel&amp;quot;) == &amp;quot;search&amp;quot; &amp;&amp; linkEl.getAttribute(&amp;quot;type&amp;quot;) == &amp;quot;application/opensearchdescription+xml&amp;quot;) {
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (headEl.getAttribute(&amp;quot;profile&amp;quot;) != &amp;quot;http://a9.com/-/spec/opensearch/1.1/&amp;quot;) {
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kWarning() &amp;lt;&amp;lt; &amp;quot;Warning: there is no profile attribute or wrong profile attribute in &amp;lt;head&amp;gt;, as specified by open search specification 1.1&amp;quot;;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;for (unsigned int i = 0; i &amp;lt; linkNL.length(); i++) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (linkNL.item(i).nodeType() == 1) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DOM::HTMLElement linkEl = (DOM::HTMLElement)linkNL.item(i);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (linkEl.getAttribute(&amp;quot;rel&amp;quot;) == &amp;quot;search&amp;quot; &amp;&amp; linkEl.getAttribute(&amp;quot;type&amp;quot;) == &amp;quot;application/opensearchdescription+xml&amp;quot;) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (headEl.getAttribute(&amp;quot;profile&amp;quot;) != &amp;quot;http://a9.com/-/spec/opensearch/1.1/&amp;quot;) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kWarning() &amp;lt;&amp;lt; &amp;quot;Warning: there is no profile attribute or wrong profile attribute in &amp;lt;head&amp;gt;, as specified by open search specification 1.1&amp;quot;;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QString title = linkEl.getAttribute(&amp;quot;title&amp;quot;).string();
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QString href = linkEl.getAttribute(&amp;quot;href&amp;quot;).string();
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;m_openSearchDescs.insert(title, href);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;-
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QString title = linkEl.getAttribute(&amp;quot;title&amp;quot;).string();
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QString href = linkEl.getAttribute(&amp;quot;href&amp;quot;).string();
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;m_openSearchDescs.insert(title, href);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&lt;/tt&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Make-Konqueror%27s-searchbar-plugin-work-with-any-KPart-based-browser-engine...-tp25614704p25617496.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25617069</id>
	<title>No statusbar in the default konqueror tab ??</title>
	<published>2009-09-25T11:36:32Z</published>
	<updated>2009-09-25T11:36:32Z</updated>
	<author>
		<name>Bugzilla from adawit@kde.org</name>
	</author>
	<content type="html">Whenever I launch Konqueror, does not matter how (command link, menu), the 
&lt;br&gt;default tab, regardless what my default start page is set to, does not show 
&lt;br&gt;the status bar. However, if I create new tabs, then those new tabs do show the 
&lt;br&gt;status bar. Does anyone else experience this issue ?
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/No-statusbar-in-the-default-konqueror-tab----tp25617069p25617069.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25616915</id>
	<title>Re: Make Konqueror's searchbar plugin work with any KPart based browser engine...</title>
	<published>2009-09-25T11:24:52Z</published>
	<updated>2009-09-25T11:24:52Z</updated>
	<author>
		<name>Bugzilla from kossebau@kde.org</name>
	</author>
	<content type="html">Hi Dawit,
&lt;br&gt;&lt;br&gt;Vendredi, le 25 septembre 2009, à 18:02, Dawit A. a écrit:
&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Since there is no &amp;quot;Konqueror&amp;quot; or &amp;quot;Konq-plugins&amp;quot; group in reviewboard, I am
&lt;br&gt;&amp;gt; going to post this patch here. As the subject states the attached patch
&lt;br&gt;&amp;gt; makes it possible for the searchbar plugin to be used with rendering
&lt;br&gt;&amp;gt; engines other other than khtml, e.g. webkitpart.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Please CC me when you reply since I am not subscribed to kfm-devel.
&lt;br&gt;&lt;br&gt;@@ -458,7 +459,7 @@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;void SearchBarPlugin::updateComboVisibility()
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;- &amp;nbsp; &amp;nbsp;bool isBrowser = m_part &amp;&amp; dynamic_cast&amp;lt;KHTMLPart *&amp;gt;(m_part);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;bool isBrowser = (m_part &amp;&amp; m_part-&amp;gt;browserExtension());
&lt;br&gt;&lt;br&gt;The name &amp;quot;browserExtension()&amp;quot; might have lead you to the wrong assumption. The 
&lt;br&gt;BrowserExtension [BE] is an extension of KParts for better support _of_ 
&lt;br&gt;browser-a-like containers like Konqueror, for stuff like going back and 
&lt;br&gt;forward in history. It is not the extension of a (HTML) browsing-able KPart.
&lt;br&gt;&lt;br&gt;Besides the KHtmlPart at least the KParts of Kate and Okteta are implementing 
&lt;br&gt;this extension. So this check for &amp;quot;isBrowser&amp;quot; does not work I fear.
&lt;br&gt;&lt;br&gt;[BE] 
&lt;br&gt;&lt;a href=&quot;http://api.kde.org/4.x-api/kdelibs-apidocs/kparts/html/classKParts_1_1BrowserExtension.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://api.kde.org/4.x-api/kdelibs-apidocs/kparts/html/classKParts_1_1BrowserExtension.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Friedrich
&lt;br&gt;-- 
&lt;br&gt;Okteta - KDE 4 Hex Editor - &lt;a href=&quot;http://utils.kde.org/projects/okteta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://utils.kde.org/projects/okteta&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Make-Konqueror%27s-searchbar-plugin-work-with-any-KPart-based-browser-engine...-tp25614704p25616915.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25614704</id>
	<title>Make Konqueror's searchbar plugin work with any KPart based browser engine...</title>
	<published>2009-09-25T09:02:46Z</published>
	<updated>2009-09-25T09:02:46Z</updated>
	<author>
		<name>Bugzilla from adawit@kde.org</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;Since there is no &amp;quot;Konqueror&amp;quot; or &amp;quot;Konq-plugins&amp;quot; group in reviewboard, I am 
&lt;br&gt;going to post this patch here. As the subject states the attached patch makes 
&lt;br&gt;it possible for the searchbar plugin to be used with rendering engines other 
&lt;br&gt;other than khtml, e.g. webkitpart.
&lt;br&gt;&lt;br&gt;Please CC me when you reply since I am not subscribed to kfm-devel. 
&lt;br&gt;&lt;br&gt;Thanks.
&lt;br&gt;&lt;br /&gt;&lt;tt&gt;[searchbar.patch]&lt;/tt&gt;&lt;br /&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;tt&gt;Index: searchbar.cpp
&lt;br&gt;===================================================================
&lt;br&gt;--- searchbar.cpp	(revision 1027752)
&lt;br&gt;+++ searchbar.cpp	(working copy)
&lt;br&gt;@@ -194,7 +194,7 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if (m_urlEnterLock || search.isEmpty() || !m_part)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if (m_searchMode == FindInThisPage) {
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;KHTMLPart *part = dynamic_cast&amp;lt;KHTMLPart*&amp;gt;(m_part);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;KHTMLPart *part = qobject_cast&amp;lt;KHTMLPart*&amp;gt;(m_part);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (part) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;part-&amp;gt;findText(search, 0);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;part-&amp;gt;findTextNext();
&lt;br&gt;@@ -292,7 +292,8 @@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;m_popupMenu = new QMenu(m_searchCombo);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;m_popupMenu-&amp;gt;setObjectName(&amp;quot;search selection menu&amp;quot;);
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;m_popupMenu-&amp;gt;addAction(KIcon(&amp;quot;edit-find&amp;quot;), i18n(&amp;quot;Find in This Page&amp;quot;), this, SLOT(useFindInThisPage()));
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QAction *action = m_popupMenu-&amp;gt;addAction(KIcon(&amp;quot;edit-find&amp;quot;), i18n(&amp;quot;Find in This Page&amp;quot;), this, SLOT(useFindInThisPage()));
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;action-&amp;gt;setDisabled((qobject_cast&amp;lt;KHTMLPart*&amp;gt;(m_part) == 0));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;m_popupMenu-&amp;gt;addSeparator();
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;int i =- 1;
&lt;br&gt;@@ -458,7 +459,7 @@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;void SearchBarPlugin::updateComboVisibility()
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;- &amp;nbsp; &amp;nbsp;bool isBrowser = m_part &amp;&amp; dynamic_cast&amp;lt;KHTMLPart *&amp;gt;(m_part);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;bool isBrowser = (m_part &amp;&amp; m_part-&amp;gt;browserExtension());
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;m_searchComboAction-&amp;gt;setVisible(isBrowser &amp;&amp; !m_searchComboAction-&amp;gt;associatedWidgets().isEmpty());
&lt;br&gt;&amp;nbsp;
&lt;br&gt;@@ -502,33 +503,35 @@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;void SearchBarPlugin::HTMLDocLoaded()
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;- &amp;nbsp; &amp;nbsp;KHTMLPart *khtmlPart = static_cast&amp;lt;KHTMLPart *&amp;gt;(m_part);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;KHTMLPart *khtmlPart = qobject_cast&amp;lt;KHTMLPart *&amp;gt;(m_part);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;DOM::HTMLDocument htmlDoc = khtmlPart-&amp;gt;htmlDocument();
&lt;br&gt;- &amp;nbsp; &amp;nbsp;DOM::NodeList headNL = htmlDoc.getElementsByTagName(&amp;quot;head&amp;quot;);
&lt;br&gt;- &amp;nbsp; &amp;nbsp;if (headNL.length() &amp;lt; 1) {
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;}
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;if (khtmlPart) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DOM::HTMLDocument htmlDoc = khtmlPart-&amp;gt;htmlDocument();
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DOM::NodeList headNL = htmlDoc.getElementsByTagName(&amp;quot;head&amp;quot;);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (headNL.length() &amp;lt; 1) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;DOM::Node headNode = headNL.item(0);
&lt;br&gt;- &amp;nbsp; &amp;nbsp;if (headNode.nodeType() != 1) {
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;}
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DOM::Node headNode = headNL.item(0);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (headNode.nodeType() != 1) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;DOM::HTMLElement headEl = (DOM::HTMLElement) headNode;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;DOM::NodeList linkNL = headEl.getElementsByTagName(&amp;quot;link&amp;quot;);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DOM::HTMLElement headEl = (DOM::HTMLElement) headNode;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DOM::NodeList linkNL = headEl.getElementsByTagName(&amp;quot;link&amp;quot;);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;- &amp;nbsp; &amp;nbsp;for (unsigned int i = 0; i &amp;lt; linkNL.length(); i++) {
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (linkNL.item(i).nodeType() == 1) {
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DOM::HTMLElement linkEl = (DOM::HTMLElement)linkNL.item(i);
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (linkEl.getAttribute(&amp;quot;rel&amp;quot;) == &amp;quot;search&amp;quot; &amp;&amp; linkEl.getAttribute(&amp;quot;type&amp;quot;) == &amp;quot;application/opensearchdescription+xml&amp;quot;) {
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (headEl.getAttribute(&amp;quot;profile&amp;quot;) != &amp;quot;http://a9.com/-/spec/opensearch/1.1/&amp;quot;) {
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kWarning() &amp;lt;&amp;lt; &amp;quot;Warning: there is no profile attribute or wrong profile attribute in &amp;lt;head&amp;gt;, as specified by open search specification 1.1&amp;quot;;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;for (unsigned int i = 0; i &amp;lt; linkNL.length(); i++) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (linkNL.item(i).nodeType() == 1) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DOM::HTMLElement linkEl = (DOM::HTMLElement)linkNL.item(i);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (linkEl.getAttribute(&amp;quot;rel&amp;quot;) == &amp;quot;search&amp;quot; &amp;&amp; linkEl.getAttribute(&amp;quot;type&amp;quot;) == &amp;quot;application/opensearchdescription+xml&amp;quot;) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (headEl.getAttribute(&amp;quot;profile&amp;quot;) != &amp;quot;http://a9.com/-/spec/opensearch/1.1/&amp;quot;) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kWarning() &amp;lt;&amp;lt; &amp;quot;Warning: there is no profile attribute or wrong profile attribute in &amp;lt;head&amp;gt;, as specified by open search specification 1.1&amp;quot;;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QString title = linkEl.getAttribute(&amp;quot;title&amp;quot;).string();
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QString href = linkEl.getAttribute(&amp;quot;href&amp;quot;).string();
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;m_openSearchDescs.insert(title, href);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;-
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QString title = linkEl.getAttribute(&amp;quot;title&amp;quot;).string();
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;QString href = linkEl.getAttribute(&amp;quot;href&amp;quot;).string();
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;m_openSearchDescs.insert(title, href);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&lt;/tt&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Make-Konqueror%27s-searchbar-plugin-work-with-any-KPart-based-browser-engine...-tp25614704p25614704.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25607894</id>
	<title>Re: how to externally trigger konq-e to refresh view</title>
	<published>2009-09-25T00:46:12Z</published>
	<updated>2009-09-25T00:46:12Z</updated>
	<author>
		<name>Stefan Strobl-2</name>
	</author>
	<content type="html">Uli Luckas wrote:
&lt;br&gt;&amp;gt; On Wednesday, 23. September 2009, Stefan Strobl wrote:
&lt;br&gt;&amp;gt;&amp;gt; Uli Luckas wrote:
&lt;br&gt;&amp;gt;&amp;gt; For my signalling application I'd like to use the qcop tool as you
&lt;br&gt;&amp;gt;&amp;gt; suggested, but I cannot find it anywhere. According to this
&lt;br&gt;&amp;gt;&amp;gt; (&lt;a href=&quot;http://doc.trolltech.com/qtopia4.3/qcop-tool.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doc.trolltech.com/qtopia4.3/qcop-tool.html&lt;/a&gt;) it should be part of
&lt;br&gt;&amp;gt;&amp;gt; qtopia but I didn't find it nowhere in qte-3.3.4 nor in qte-4.4.3. Can
&lt;br&gt;&amp;gt;&amp;gt; you tell me where to find the sources to the qcop tool?
&lt;br&gt;&lt;br&gt;&amp;gt; Sorry, Stefan.
&lt;br&gt;&amp;gt; You are right, the qcop tool is part of Qtopia only and it seems, these 
&lt;br&gt;&amp;gt; sources are no longer offered by Trolltech/Nokia.
&lt;br&gt;&amp;gt; So now you can either write a small command line app, yourself. Or go back to 
&lt;br&gt;&amp;gt; the FIFO idea.
&lt;br&gt;&lt;br&gt;Sorry. I again forgot to CC the list. Here we go.
&lt;br&gt;&lt;br&gt;I've done my own little command line tool which works fine. Thanks for
&lt;br&gt;pointing me towards QCopMessages.
&lt;br&gt;&lt;br&gt;AS mentioned, external triggering of reload() works find, apart from a
&lt;br&gt;memory leak. After doing some 100 refresh the memory use of konq
&lt;br&gt;increases from 28308kB up to 31556kB (+11%). This might have to do with
&lt;br&gt;my configuration though, or is this a known issue?
&lt;br&gt;&lt;br&gt;The threading &amp; processes is not an issue anymore. Don't know why I got
&lt;br&gt;confused here.
&lt;br&gt;&lt;br&gt;Regards
&lt;br&gt;Stefan
&lt;br&gt;_______________________________________________
&lt;br&gt;konq-e mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25607894&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;konq-e@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://mail.kde.org/mailman/listinfo/konq-e&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://mail.kde.org/mailman/listinfo/konq-e&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/konq-e-f6404.html&quot; embed=&quot;fixTarget[6404]&quot; target=&quot;_top&quot; &gt;konq-e&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-externally-trigger-konq-e-to-refresh-view-tp25575372p25607894.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25595153</id>
	<title>Re: how to externally trigger konq-e to refresh view</title>
	<published>2009-09-24T06:13:59Z</published>
	<updated>2009-09-24T06:13:59Z</updated>
	<author>
		<name>Bugzilla from u.luckas@road.de</name>
	</author>
	<content type="html">On Wednesday, 23. September 2009, Stefan Strobl wrote:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Uli Luckas wrote:
&lt;br&gt;&amp;gt; &amp;gt; On Wednesday, 23. September 2009, Stefan Strobl wrote:
&lt;br&gt;&amp;gt; &amp;gt; If you don't want to make your programm a qapplication, you could also
&lt;br&gt;&amp;gt; &amp;gt; send qcop messages by calling the qcop command line application via
&lt;br&gt;&amp;gt; &amp;gt; ::system(). As you sugested you can also use a FIFO or a socket for
&lt;br&gt;&amp;gt; &amp;gt; communication. In the browser, just make sure to use the event loop
&lt;br&gt;&amp;gt; &amp;gt; (QSocket/QSocketNotifier) for asynchronus notification on fifo events.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks for your help. I did manage to use a QCopChannel to call reload()
&lt;br&gt;&amp;gt; in konqueror from another application.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; For my signalling application I'd like to use the qcop tool as you
&lt;br&gt;&amp;gt; suggested, but I cannot find it anywhere. According to this
&lt;br&gt;&amp;gt; (&lt;a href=&quot;http://doc.trolltech.com/qtopia4.3/qcop-tool.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://doc.trolltech.com/qtopia4.3/qcop-tool.html&lt;/a&gt;) it should be part of
&lt;br&gt;&amp;gt; qtopia but I didn't find it nowhere in qte-3.3.4 nor in qte-4.4.3. Can
&lt;br&gt;&amp;gt; you tell me where to find the sources to the qcop tool?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Many thanks
&lt;br&gt;&amp;gt; Stefan
&lt;br&gt;&amp;gt; 
&lt;/div&gt;Sorry, Stefan.
&lt;/div&gt;You are right, the qcop tool is part of Qtopia only and it seems, these 
&lt;br&gt;sources are no longer offered by Trolltech/Nokia.
&lt;br&gt;So now you can either write a small command line app, yourself. Or go back to 
&lt;br&gt;the FIFO idea.
&lt;br&gt;&lt;br&gt;Good Luck
&lt;br&gt;Uli
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;br&gt;------- ROAD ...the handyPC Company - - - &amp;nbsp;) ) )
&lt;br&gt;&lt;br&gt;Uli Luckas
&lt;br&gt;Head of Software Development
&lt;br&gt;&lt;br&gt;ROAD GmbH
&lt;br&gt;Bennigsenstr. 14 | 12159 Berlin | Germany
&lt;br&gt;fon: +49 (30) 230069 - 62 | fax: +49 (30) 230069 - 69
&lt;br&gt;url: www.road.de
&lt;br&gt;&lt;br&gt;Amtsgericht Charlottenburg: HRB 96688 B
&lt;br&gt;Managing director: Hans-Peter Constien
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;konq-e mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25595153&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;konq-e@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://mail.kde.org/mailman/listinfo/konq-e&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://mail.kde.org/mailman/listinfo/konq-e&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (205 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/25595153/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/konq-e-f6404.html&quot; embed=&quot;fixTarget[6404]&quot; target=&quot;_top&quot; &gt;konq-e&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-externally-trigger-konq-e-to-refresh-view-tp25575372p25595153.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25583847</id>
	<title>Re: Review Request: khtml adblock filter lookup API</title>
	<published>2009-09-23T12:35:41Z</published>
	<updated>2009-09-23T12:35:41Z</updated>
	<author>
		<name>Jonathan Marten-3</name>
	</author>
	<content type="html">On Monday 21 September 2009 15:53:09, &amp;quot;Maksim Orlovich&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25583847&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mo85@...&lt;/a&gt;&amp;gt;
&lt;br&gt;wrote:
&lt;br&gt;&amp;gt; Looks fine, though I can't be 100% sure that what it returns in complex
&lt;br&gt;&amp;gt; cases is identical to the input.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sorry for missing your previous e-mail.
&lt;br&gt;&lt;br&gt;Many thanks Maksim, I'll commit with these changes and verify them with the 
&lt;br&gt;modified plugin. &amp;nbsp;As far as I can tell the reported filter is the same as the 
&lt;br&gt;input except in the case where the original filter was in the form 
&lt;br&gt;&lt;a href=&quot;http://host.dom/path/*&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://host.dom/path/*&lt;/a&gt;, as an optimisation the trailing &amp;quot;/*&amp;quot; is stripped off 
&lt;br&gt;so this becomes just a simple 
&lt;br&gt;string match. &amp;nbsp;There's no way to tell that this 
&lt;br&gt;has happened for display, though. &amp;nbsp;The important part - the host and path - 
&lt;br&gt;is correctly reported.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&amp;nbsp; Jonathan
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Jonathan Marten &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.keelhaul.demon.co.uk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.keelhaul.demon.co.uk&lt;/a&gt;&lt;br&gt;Twickenham, UK &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25583847&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jjm2@...&lt;/a&gt;
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/kfm-devel-f6399.html&quot; embed=&quot;fixTarget[6399]&quot; target=&quot;_top&quot; &gt;kfm-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Review-Request%3A-khtml-adblock-filter-lookup-API-tp25455405p25583847.html" />
</entry>

</feed>
