https://bugzilla.novell.com/show_bug.cgi?id=654255 https://bugzilla.novell.com/show_bug.cgi?id=654255#c0 Summary: Broken krun.ccp for SMB shares KDE 4.5.3 (Factory Repo) Classification: openSUSE Product: openSUSE 11.3 Version: Final Platform: Other OS/Version: openSUSE 11.3 Status: NEW Severity: Major Priority: P5 - None Component: KDE4 Workspace AssignedTo: kde-maintainers@suse.de ReportedBy: markcscott2003@hotmail.com QAContact: qa@suse.de Found By: --- Blocker: --- User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-GB; rv:1.9.2.12) Gecko/20101026 SUSE/3.6.12-1.2 Firefox/3.6.12 The easiest way to summarise this is a link to the KDE code change: http://reviewboard.kde.org/r/5280/diff/ static QStringList supportedProtocols(const KService& _service) { // Check which protocols the application supports. // This can be a list of actual protocol names, or just KIO for KDE apps. QStringList supportedProtocols = _service.property("X-KDE-Protocols").toStringList(); KRunMX1 mx1(_service); QString exec = _service.exec(); if (mx1.expandMacrosShellQuote(exec) && !mx1.hasUrls) { Q_ASSERT(supportedProtocols.isEmpty()); // huh? If you support protocols you need %u or %U... } else { if (supportedProtocols.isEmpty()) { // compat mode: assume KIO if not set and it's a KDE app const QStringList categories = _service.property("Categories").toStringList(); if (categories.contains("KDE")) { supportedProtocols.append("KIO"); } else { // if no KDE app, be a bit over-generic supportedProtocols.append("http"); supportedProtocols.append("ftp"); } } } kDebug(7010) << "supportedProtocols:" << supportedProtocols; return supportedProtocols; } // FIXME: the current way of invoking kioexec disables term and su use Please note the absence of supported protocols for SMB. This change was submitted by Lubos Lunak I believe to deal with an open office problem. This has nicely broken quick and simple samba shares in kde4 in that large files are now cached from a remote share to the client before the file can be opened which is absolutely insane if you wish to view a movie over a network. NB The issue also appears in the factory repos for 11.2 Reproducible: Always Steps to Reproduce: 1. 2. 3. Actual Results: n/a Expected Results: n/a For further information and code fix please see the following: http://blog.jfdesignnet.com/?p=1281 and https://bugs.kde.org/show_bug.cgi?id=253547 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.