예제 #1
0
파일: file.py 프로젝트: krallin/Cactus
    def content_type(self):
        """
        Return the content type for this object
        """
        content_type = mime.guess(self.path)

        if not content_type:
            return None

        if content_type == "text/html":
            content_type = "{0}; charset=utf-8".format(content_type)

        return content_type
예제 #2
0
    def content_type(self):
        """
        Return the content type for this object
        """
        content_type = mime.guess(self.path)

        if not content_type:
            return None

        if content_type == "text/html":
            content_type = "{0}; charset=utf-8".format(content_type)

        return content_type
예제 #3
0
파일: file.py 프로젝트: beaufour/Cactus
    def content_type(self):
        """
        Return the content type for this object
        """

        # beaufour: total hack to support my paths without ending /
        if self.path is None or self.path.find('.') == -1:
            content_type = "text/html"
        else:
            content_type = mime.guess(self.path)

        if not content_type:
            return None

        if content_type == "text/html":
            content_type = "{0}; charset=utf-8".format(content_type)

        return content_type
 def test_mime_eot(self):
     font_path = "test/font.eot"
     self.assertFalse(guess(font_path) is None)
 def test_mime_dummy(self):
     # Make sure we never return a None mime type!
     path = "test/format.thisisnomime"
     self.assertFalse(guess(path) is None)
예제 #6
0
파일: test_mime.py 프로젝트: ateszdn/Cactus
 def test_mime_eot(self):
     font_path = "test/font.eot"
     self.assertFalse(guess(font_path) is None)
예제 #7
0
파일: test_mime.py 프로젝트: ateszdn/Cactus
 def test_mime_dummy(self):
     # Make sure we never return a None mime type!
     path = "test/format.thisisnomime"
     self.assertFalse(guess(path) is None)
예제 #8
0
파일: server.py 프로젝트: vbrilon/Cactus
 def get(self):
     self.set_header("Content-Type", mime.guess("file.js"))
     self.finish(TEMPLATES["js"])
예제 #9
0
파일: server.py 프로젝트: vbrilon/Cactus
 def get_content_type(self):
     return mime.guess(self.absolute_path)
예제 #10
0
파일: server.py 프로젝트: dahrens/Cactus
 def get(self):
     self.set_header("Content-Type", mime.guess("file.js"))
     self.finish(TEMPLATES["js"])
예제 #11
0
파일: server.py 프로젝트: dahrens/Cactus
 def get_content_type(self):
     return mime.guess(self.absolute_path)