Darcsweb-Url: 
http://darcs.frugalware.org/darcsweb/darcsweb.cgi?r=frugalware-0.6;a=darcs_commitdiff;h=20070923151123-e2957-0567204499dd5d01f474726d787b80a664f7b5e9.gz;

[kdebase-3.5.6-3terminus2-i686
VMiklos <[EMAIL PROTECTED]>**20070923151123
 secfix update
 closes #2430
] {
hunk ./source/kde/kdebase/FrugalBuild 7
-pkgrel=3terminus1
+pkgrel=3terminus2
hunk ./source/kde/kdebase/FrugalBuild 37
-       
ftp://ftp.kde.org/pub/kde/security_patches/post-3.5.7-kdebase-konqueror.diff)
+       post-3.5.7-kdebase-konqueror.diff \
+       ftp://ftp.kde.org/pub/kde/security_patches/post-3.5.7-kdebase-kdm.diff)
hunk ./source/kde/kdebase/FrugalBuild 102
-          '3868392701ebe9fce14567a1f52d458d00f31287')
+          '3868392701ebe9fce14567a1f52d458d00f31287' \
+          'b270a1d5b3980f49a274308bec7fc649be1bd315')
addfile ./source/kde/kdebase/post-3.5.7-kdebase-konqueror.diff
hunk ./source/kde/kdebase/post-3.5.7-kdebase-konqueror.diff 1
+--- konqueror/konq_combo.cc
++++ konqueror/konq_combo.cc
+@@ -158,6 +158,9 @@ void KonqCombo::setURL( const QString& u
+         kapp->dcopClient()->send( "konqueror*", "KonquerorIface",
+                                   "addToCombo(QString,QCString)", data);
+     }
++    // important security consideration: always display the beginning
++    // of the url rather than its end to prevent spoofing attempts.
++    lineEdit()->setCursorPosition( 0 );
+ }
+ 
+ void KonqCombo::setTemporary( const QString& text )
+--- konqueror/konq_mainwindow.cc
++++ konqueror/konq_mainwindow.cc
+@@ -611,12 +611,11 @@ void KonqMainWindow::openURL( KonqView *
+   }
+   else // no known serviceType, use KonqRun
+   {
+-      if ( ( view && view == m_currentView ) ||
+-              ( !view && !req.newTab ) ) // startup with argument
++      if ( ( !view || view->url().isEmpty() ) && !req.newTab ) // startup 
with argument
+       {
+           // Show it for now in the location bar, but we'll need to store it 
in the view
+           // later on (can't do it yet since either view == 0 or 
updateHistoryEntry will be called).
+-          kdDebug(1202) << "setLocationBarURL : url = " << url << endl;
++          kdDebug(1202) << "setLocationBarURL (startup) : url = " << url << 
endl;
+           setLocationBarURL( url );
+       }
+ 
+@@ -819,8 +818,6 @@ bool KonqMainWindow::openView( QString s
+         if ( childView )
+         {
+             enableAllActions( true );
+-
+-            m_pViewManager->setActivePart( childView->part() );
+             m_currentView = childView;
+         }
+       }
+--- konqueror/konq_viewmgr.cc
++++ konqueror/konq_viewmgr.cc
+@@ -1395,6 +1395,8 @@ void KonqViewManager::slotActivePartChan
+ 
+ void KonqViewManager::emitActivePartChanged()
+ {
++    // prevent unnecessary multiple calls to slotPartActivated:
++    m_activePartChangedTimer->stop();
+     m_pMainWindow->slotPartActivated( activePart() );
+ }
+ 
}
_______________________________________________
Frugalware-darcs mailing list
Frugalware-darcs@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-darcs

Reply via email to