Summary: | URL History not deleted correctly | ||
---|---|---|---|
Product: | [Applications] konqueror | Reporter: | Sebastian Stein <seb.kde> |
Component: | general | Assignee: | Konqueror Developers <konq-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 3.5 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Sebastian Stein
2005-02-11 18:25:14 UTC
Are you talking about the history sidebar or the history ot the URL combo edit box? Stephan Binner <binner@kde.org> [050212 17:27]: > ------- You are receiving this mail because: ------- > You reported the bug, or are watching the reporter. > > http://bugs.kde.org/show_bug.cgi?id=99143 > > > > > ------- Additional Comments From binner kde org 2005-02-12 16:22 ------- > Are you talking about the history sidebar or the history ot the URL combo > edit box? about the history URL combo edit box Sebastian Ok, and about what "settings dialog of konqueror" are you talking? I'm not aware of any which deletes the URL combo edit box. Stephan Binner <binner@kde.org> [050212 18:21]: > ------- Additional Comments From binner kde org 2005-02-12 17:37 ------- > Ok, and about what "settings dialog of konqueror" are you talking? I'm not > aware of any which deletes the URL combo edit box. Under Konqueror settings -> "Verlaufsbereich" -> Verlaufsspeicher leeren and under -> Zwischenspeicher -> Zwischenspeicher leeren. I think one of both is meant to delete the URL history, propably the first. Sorry, I don't know the English names, but I bet you know what I mean :-) Sebastian > I think one of both is meant to delete the URL history
No, none is meant. First is "History Sidebar" in English and the other "Cache".
Stephan Binner <binner@kde.org> [050212 19:57]: > ------- You are receiving this mail because: ------- > You reported the bug, or are watching the reporter. > > http://bugs.kde.org/show_bug.cgi?id=99143 > binner kde org changed: > > What |Removed |Added > ---------------------------------------------------------------------------- > Status|NEW |RESOLVED > Resolution| |INVALID > > > > ------- Additional Comments From binner kde org 2005-02-12 18:39 ------- > > I think one of both is meant to delete the URL history > > No, none is meant. First is "History Sidebar" in English and the other "Cache". Ok, and how to delete the URL cache besides right-clicking? This action should also be available through menus from an usability point of view. Sebastian If it's not included in the "Privacy" (don't ask me for the for sure horrible translation) control center module, file a wish against it (kcontrol/kcmprivacy). If there is a option to clear the history sidepane in the konqueror settings dialog, then it will definitely confuse the casual user if this does not clear the history in the URL combo box as well! Please consider to either add the function to the same button which clears the history sidepane, or add another button near the current "clear history" button which has the function to clear the URL combo box (with it's corresponding history when dropped down.). The current behaviour is a usability bug and should be fixed -> i reopen this bug. SVN commit 588187 by kling: Connect to KonqHistoryManager's cleared() signal. Makes "Clear History" wipe the location bar history permanently instead of just in open Konqueror windows. BUG: 78538 BUG: 99143 BUG: 120698 BUG: 128854 M +1 -0 konq_combo.cc --- branches/KDE/3.5/kdebase/konqueror/konq_combo.cc #588186:588187 @@ -122,6 +122,7 @@ // Make the lineedit consume the Key_Enter event... setTrapReturnKey( true ); + connect( KonqHistoryManager::kself(), SIGNAL(cleared()), SLOT(slotCleared()) ); connect( this, SIGNAL(cleared() ), SLOT(slotCleared()) ); connect( this, SIGNAL(highlighted( int )), SLOT(slotSetIcon( int )) ); connect( this, SIGNAL(activated( const QString& )), |