Helpviewer/Network/QtHelpAccessHandler.py

Fri, 31 Dec 2010 15:50:33 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 31 Dec 2010 15:50:33 +0100
branch
5_0_x
changeset 792
a13346916170
parent 642
9f31d84cb2b1
permissions
-rw-r--r--

Updated copyright notice.

# -*- coding: utf-8 -*-

# Copyright (c) 2009 - 2011 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module implementing a scheme access handler for QtHelp.
"""

import mimetypes
import os

from .SchemeAccessHandler import SchemeAccessHandler

from .NetworkReply import NetworkReply

QtDocPath = "qthelp://com.trolltech."

ExtensionMap = {
    ".bmp"   : "image/bmp",
    ".css"   : "text/css",
    ".gif"   : "image/gif",
    ".html"  : "text/html",
    ".htm"   : "text/html",
    ".ico"   : "image/x-icon",
    ".jpeg"  : "image/jpeg",
    ".jpg"   : "image/jpeg",
    ".js"    : "application/x-javascript",
    ".mng"   : "video/x-mng",
    ".pbm"   : "image/x-portable-bitmap",
    ".pgm"   : "image/x-portable-graymap",
    ".pdf"   : "application/pdf",
    ".png"   : "image/png",
    ".ppm"   : "image/x-portable-pixmap",
    ".rss"   : "application/rss+xml",
    ".svg"   : "image/svg+xml",
    ".svgz"  : "image/svg+xml",
    ".text"  : "text/plain",
    ".tif"   : "image/tiff",
    ".tiff"  : "image/tiff",
    ".txt"   : "text/plain",
    ".xbm"   : "image/x-xbitmap",
    ".xml"   : "text/xml",
    ".xpm"   : "image/x-xpm",
    ".xsl"   : "text/xsl",
    ".xhtml" : "application/xhtml+xml",
    ".wml"   : "text/vnd.wap.wml",
    ".wmlc"  : "application/vnd.wap.wmlc",
}

class QtHelpAccessHandler(SchemeAccessHandler):
    """
    Class implementing a scheme access handler for QtHelp.
    """
    def __init__(self, engine, parent = None):
        """
        Constructor
        
        @param engine reference to the help engine (QHelpEngine)
        @param parent reference to the parent object (QObject)
        """
        SchemeAccessHandler.__init__(self, parent)
        
        self.__engine = engine
    
    def __mimeFromUrl(self, url):
        """
        Private method to guess the mime type given an URL.
        
        @param url URL to guess the mime type from (QUrl)
        """
        path = url.path()
        ext = os.path.splitext(path)[1].lower()
        if ext in ExtensionMap:
            return ExtensionMap[ext]
        else:
            return "application/octet-stream"
    
    def createRequest(self, op, request, outgoingData = None):
        """
        Protected method to create a request.
        
        @param op the operation to be performed (QNetworkAccessManager.Operation)
        @param request reference to the request object (QNetworkRequest)
        @param outgoingData reference to an IODevice containing data to be sent
            (QIODevice)
        @return reference to the created reply object (QNetworkReply)
        """
        url = request.url()
        strUrl = url.toString()
        
        # For some reason the url to load is already wrong (passed from webkit)
        # though the css file and the references inside should work that way. One 
        # possible problem might be that the css is loaded at the same level as the
        # html, thus a path inside the css like (../images/foo.png) might cd out of
        # the virtual folder
        if not self.__engine.findFile(url).isValid():
            if strUrl.startswith(QtDocPath):
                newUrl = request.url()
                if not newUrl.path().startswith("/qdoc/"):
                    newUrl.setPath("qdoc" + newUrl.path())
                    url = newUrl
                    strUrl = url.toString()
        
        mimeType = mimetypes.guess_type(strUrl)[0]
        if mimeType is None:
            # do our own (limited) guessing
            mimeType = self.__mimeFromUrl(url)
        
        return NetworkReply(request, self.__engine.fileData(url), mimeType, self.parent())

eric ide

mercurial