<table><tr><td style="">nhiga added a comment.
</td><a style="text-decoration: none; padding: 4px 8px; margin: 0 8px 8px; float: right; color: #464C5C; font-weight: bold; border-radius: 3px; background-color: #F7F7F9; background-image: linear-gradient(to bottom,#fff,#f1f0f1); display: inline-block; border: 1px solid rgba(71,87,120,.2);" href="https://phabricator.kde.org/D23730">View Revision</a></tr></table><br /><div><div><p>Notes:</p>

<ol class="remarkup-list">
<li class="remarkup-list-item">This patch requires <a href="https://phabricator.kde.org/D23490" style="background-color: #e7e7e7;
          border-color: #e7e7e7;
          border-radius: 3px;
          padding: 0 4px;
          font-weight: bold;
          color: black;text-decoration: none;">D23490</a> and the following KIO patch:</li>
</ol>

<div class="remarkup-code-block" style="margin: 12px 0;" data-code-lang="diff" data-sigil="remarkup-code-block"><pre class="remarkup-code" style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; padding: 12px; margin: 0; background: rgba(71, 87, 120, 0.08);"><span style="color: #000080">diff --git a/src/filewidgets/kurlnavigator.cpp b/src/filewidgets/kurlnavigator.cpp</span>
<span style="color: #000080">index 80aa975..5a6c720 100644</span>
<span style="color: #a00000">--- a/src/filewidgets/kurlnavigator.cpp</span>
<span style="color: #00a000">+++ b/src/filewidgets/kurlnavigator.cpp</span>
<span style="color: #800080">@@ -1046,8 +1046,8 @@ void KUrlNavigator::setLocationUrl(const QUrl &newUrl)</span>
     // code locationUrl() and url become the same URLs
     QUrl firstChildUrl = KIO::UrlUtil::firstChildUrl(locationUrl(), url);
 
<span style="color: #a00000">-    if ((url.scheme() == QLatin1String("tar")) || (url.scheme() == QLatin1String("zip")) || (url.scheme() == QLatin1String("krarc"))) {</span>
<span style="color: #a00000">-        // The URL represents a tar- or zip-file, or an archive file supported by krarc.</span>
<span style="color: #00a000">+    if ((url.scheme() == QLatin1String("tar")) || (url.scheme() == QLatin1String("zip")) || (url.scheme() == QLatin1String("sevenz")) || (url.scheme() == QLatin1String("krarc"))) {</span>
<span style="color: #00a000">+        // The URL represents a tar-, zip- or 7z-file, or an archive file supported by krarc.</span>
         // Check whether the URL is really part of the archive file, otherwise
         // replace it by the local path again.
         bool insideCompressedPath = d->isCompressedPath(url);
<span style="color: #800080">@@ -1064,7 +1064,7 @@ void KUrlNavigator::setLocationUrl(const QUrl &newUrl)</span>
             }
         }
         if (!insideCompressedPath) {
<span style="color: #a00000">-            // drop the tar: or zip: or krarc: protocol since we are not</span>
<span style="color: #00a000">+            // drop the tar:, zip:, sevenz: or krarc: protocol since we are not</span>
             // inside the compressed path
             url.setScheme(QStringLiteral("file"));
             firstChildUrl.setScheme(QStringLiteral("file"));</pre></div>

<ol class="remarkup-list" start="2">
<li class="remarkup-list-item">If I name the protocol as "7z", "Invalid protocol" error will be thrown, so I use "sevenz" instead.</li>
<li class="remarkup-list-item">I am not sure whether it is needed to include <tt style="background: #ebebeb; font-size: 13px;">k7zip.h</tt> in <tt style="background: #ebebeb; font-size: 13px;">archive/kio_archivebase.cpp</tt>.</li>
<li class="remarkup-list-item">It can take some time to load the 7z archive using this new protocol.</li>
</ol></div></div><br /><div><strong>REPOSITORY</strong><div><div>R320 KIO Extras</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D23730">https://phabricator.kde.org/D23730</a></div></div><br /><div><strong>To: </strong>nhiga<br /><strong>Cc: </strong>kfm-devel, kde-frameworks-devel, iasensio, fprice, LeGast00n, MrPepe, fbampaloukas, alexde, GB_2, Codezela, feverfew, meven, michaelh, spoorun, navarromorales, firef, ngraham, andrebarros, bruns, emmanuelp, mikesomov<br /></div>