[dolphin] [Bug 510149] Regression: Dolphin file search surrounds terms with double quotes for Baloo searches
https://bugs.kde.org/show_bug.cgi?id=510149 --- Comment #11 from [email protected] --- There's some work underway here: https://invent.kde.org/system/dolphin/-/merge_requests/1262#note_1485865 as part of https://invent.kde.org/felixernst/dolphin/-/tree/match_strings_separated_by_whitespace -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 510149] Regression: Dolphin file search surrounds terms with double quotes for Baloo searches
https://bugs.kde.org/show_bug.cgi?id=510149 João Vidal da Silva changed: What|Removed |Added CC||[email protected] -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 510149] Regression: Dolphin file search surrounds terms with double quotes for Baloo searches
https://bugs.kde.org/show_bug.cgi?id=510149 postix changed: What|Removed |Added See Also||https://bugs.kde.org/show_b ||ug.cgi?id=497234 -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 510149] Regression: Dolphin file search surrounds terms with double quotes for Baloo searches
https://bugs.kde.org/show_bug.cgi?id=510149 postix changed: What|Removed |Added CC||[email protected] -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 510149] Regression: Dolphin file search surrounds terms with double quotes for Baloo searches
https://bugs.kde.org/show_bug.cgi?id=510149 --- Comment #10 from aristsakas --- *** Bug 494673 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 510149] Regression: Dolphin file search surrounds terms with double quotes for Baloo searches
https://bugs.kde.org/show_bug.cgi?id=510149 aristsakas changed: What|Removed |Added CC||[email protected] See Also||https://bugs.kde.org/show_b ||ug.cgi?id=494584 -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 510149] Regression: Dolphin file search surrounds terms with double quotes for Baloo searches
https://bugs.kde.org/show_bug.cgi?id=510149 --- Comment #9 from [email protected] --- Added a cross reference to the bug in https://invent.kde.org/system/dolphin/-/merge_requests/797#note_1337377, it seems to be something that has changed in Dolphin, "baloosearch" seems solid... -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 510149] Regression: Dolphin file search surrounds terms with double quotes for Baloo searches
https://bugs.kde.org/show_bug.cgi?id=510149 --- Comment #8 from [email protected] --- Sorry for the long detail and I hope I've got this right... For me, these all work as they should: $ baloosearch6 simnh blinm $ baloosearch6 "simnh blinm" $ baloosearch6 blinm simnh $ baloosearch6 "blinm simnh" $ baloosearch6 \"simnh blinm\" $ baloosearch6 '"simnh blinm"' $ baloosearch6 'filename:"simnh blinm"' $ baloosearch6 filename:\"simnh blinm\" What has just broken is the search box in Dolphin, *IF* the filter is set to "file names". (As far as I can see searching for "File names and contents" works). If I search for sim : it works simn : it works simnh : it works simnh bli : no match simnh blin : no match simnh blinm : it works 'simnh blin' : it works bli simnh : no match blin simnh : no match blinm simnh : no match So there is something different (just recently) being done for a filename versus name and contents searches. This is on a Neon Unstable box, maybe a month behind with updates as I've been getting an "unmet dependencies" failure. I've noticed the filter at times jumping from "File names" to "File names and contents", so it may be worth watching to see what it is set as... -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 510149] Regression: Dolphin file search surrounds terms with double quotes for Baloo searches
https://bugs.kde.org/show_bug.cgi?id=510149 --- Comment #7 from Stefan Brüns --- (In reply to TraceyC from comment #5) > (In reply to tagwerk19 from comment #4) > > I suspect you have a > > ~/.config/QtProject/qtlogging.ini > > file containing something like: > > [rules] > > ... > > kf.baloo.*=true > > ... > > in it. > > That file is on the system, but doesn't have that line. That's fine, at this > point the developers should have enough information to investigate further. There is also a graphical tool to edit debug levels for each category (i.e. application/library/implementation detail/...). If you hover the mouse cursor over an entry, it will tell you the corresponding category name (e.g "Baloo Engine" - Category name: kf.baloo.engine). These setting will affect the whole session, and may fill your user session logfile (journal) with a large amount of messages. For debugging, just set the corresponding environment variable: $> QT_LOGGING_RULES='kf.baloo.*=true;*.debug=false' baloosearch6 \"simnh blinm\" Note, you can supply multiple rules, the rule above enables full logging for all baloo components, but then disables all debug messages (i.e. only keeping warning/informational messages). -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 510149] Regression: Dolphin file search surrounds terms with double quotes for Baloo searches
https://bugs.kde.org/show_bug.cgi?id=510149 Stefan Brüns changed: What|Removed |Added CC||[email protected] ||e --- Comment #6 from Stefan Brüns --- @TraceC The shell "eats" the quotes, and you have to escape/protect them. All of the following should return the single wanted file: baloosearch6 \"simnh blinm\" baloosearch6 '"simnh blinm"' baloosearch6 'filename:"simnh blinm"' baloosearch6 filename:\"simnh blinm\" The first two also search the file contents for a match. This is also likely the cause of the debug message you see ("kf.baloo.engine: PositionDB::iter "simnh" MDB_NOTFOUND: No matching key/data pair found"). baloosearch6 '"simnh blinm"' is internally transformed to: baloosearch6 'filename:"simnh blinm" OR content:"simnh blinm" ' -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 510149] Regression: Dolphin file search surrounds terms with double quotes for Baloo searches
https://bugs.kde.org/show_bug.cgi?id=510149 [email protected] changed: What|Removed |Added Summary|Dolphin file search |Regression: Dolphin file |surrounds terms with double |search surrounds terms with |quotes for Baloo searches |double quotes for Baloo ||searches -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 510149] Regression: Dolphin file search surrounds terms with double quotes for Baloo searches
https://bugs.kde.org/show_bug.cgi?id=510149 --- Comment #5 from TraceyC --- (In reply to tagwerk19 from comment #4) > I suspect you have a > ~/.config/QtProject/qtlogging.ini > file containing something like: > [rules] > ... > kf.baloo.*=true > ... > in it. That file is on the system, but doesn't have that line. That's fine, at this point the developers should have enough information to investigate further. -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 510149] Regression: Dolphin file search surrounds terms with double quotes for Baloo searches
https://bugs.kde.org/show_bug.cgi?id=510149 --- Comment #3 from TraceyC --- (In reply to tagwerk19 from comment #2) Either way of escaping the quotes results in an error and only one match, the same thing I got when using quotes in Dolphin baloosearch6 '"simnh blinm"' kf.baloo.engine: PositionDB::iter "simnh" MDB_NOTFOUND: No matching key/data pair found /home/tracey/test/simnh blinm > I will be a bit adventurous and flag this as a regression (done my testing > on Neon Unstable, Plasma 6.5.80, Frameworks 6.20.0) That would be useful, thanks! -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 510149] Regression: Dolphin file search surrounds terms with double quotes for Baloo searches
https://bugs.kde.org/show_bug.cgi?id=510149 --- Comment #4 from [email protected] --- (In reply to TraceyC from comment #3) > kf.baloo.engine: PositionDB::iter "simnh" MDB_NOTFOUND: No matching key/data > pair found I suspect you have a ~/.config/QtProject/qtlogging.ini file containing something like: [rules] ... kf.baloo.*=true ... in it. I have seen the diagnostic and not known whether to worry about it. I'm guessing here Baloo's fund "simnh" when looking for the filename but not found it in the content index. -- You are receiving this mail because: You are watching all bug changes.
