Summary: | konqueror/dolphin: compress context menu should not show rar tar.gz etc inside a read-only-folder | ||
---|---|---|---|
Product: | [Applications] ark | Reporter: | Shriramana Sharma <samjnaa> |
Component: | general | Assignee: | Elvis Angelaccio <elvis.angelaccio> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | finex, frank78ac, rakuco |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Ubuntu | ||
OS: | Unspecified | ||
Latest Commit: | http://commits.kde.org/ark/c369264d6c9ba2763b338f025c359c1b4c86f66e | Version Fixed In: | 16.08.0 |
Sentry Crash Report: |
Description
Shriramana Sharma
2009-04-09 07:56:50 UTC
*** Bug 189484 has been marked as a duplicate of this bug. *** I can confirm the issue. I'm not sure if that is really a bug in Dolphin/Konqueror. Maybe it's related to the application that provides that context menu action (Ark)? I don't know either if it is a dolphin or an ark issue, anyway dolphin should be a better product than konqui These options come from Ark, however I'm not sure the .desktop file that provides them can control if they shouldn't be displayed when some conditions are not met (in this case, the directory being writable). Resetting assignee to default as per bug #305719 Reassigning to Ark - If I'm not mistaken, this can be resolved with actions which are implemented by subclassing KAbstractFileItemActionPlugin. Git commit c369264d6c9ba2763b338f025c359c1b4c86f66e by Elvis Angelaccio. Committed on 05/06/2016 at 17:50. Pushed by elvisangelaccio into branch 'master'. Port service menus to KFileItemAction The Compress and Extract service menus shown in Dolphin's context menu are now provided by two new KFileItemAction plugins. This allows us to do a lot of useful checks before actually showing the actions in the context menu. We can also stop hardcoding the supported mimetypes for the Extract menu. This is actually required in order to support the Extract menu when more than one archive is selected. In this case Dolphin sends to the kfileitemaction plugins the generic 'application/octet-stream' mimetype, so we have to manually check anyway the mimetype of any given URL (to be sure that Ark supports it). This also paves the way to dynamically generate the service menus (e.g. based on some kind of user preset). Related: bug 268163, bug 348582 FIXED-IN: 16.08.0 Differential Revision: D1761 M +22 -6 app/CMakeLists.txt D +0 -179 app/ark_addtoservicemenu.desktop D +0 -167 app/ark_servicemenu.desktop.cmake A +99 -0 app/compressfileitemaction.cpp [License: GPL (v2+)] A +54 -0 app/compressfileitemaction.h [License: GPL (v2+)] A +15 -0 app/compressfileitemaction.json A +103 -0 app/extractfileitemaction.cpp [License: GPL (v2+)] A +54 -0 app/extractfileitemaction.h [License: GPL (v2+)] A +13 -0 app/extractfileitemaction.json http://commits.kde.org/ark/c369264d6c9ba2763b338f025c359c1b4c86f66e |