SVN commit 656272 by helio: - Added exception fro ps.gz. Old patch by Laurent Montel with small modification M +9 -0 http.cc --- branches/KDE/3.5/kdelibs/kioslave/http/http.cc #656271:656272 @@ -3670,6 +3670,15 @@ m_qContentEncodings.remove(m_qContentEncodings.fromLast()); m_strMimeType = QString::fromLatin1("application/x-gzpostscript"); } + else if ( m_request.allowCompressedPage && + m_strMimeType != "application/x-tgz" && + m_strMimeType != "application/x-targz" && + m_strMimeType != "application/x-gzip" && + m_request.url.path().right(6) == ".ps.gz" ) + { + m_qContentEncodings.remove(m_qContentEncodings.fromLast()); + m_strMimeType = QString::fromLatin1("application/x-gzpostscript"); + } else if ( (m_request.allowCompressedPage && m_strMimeType == "text/html") ||