背景:我正在使用https://bitbucket.org/mariocesar/django-hgwebproxy/wiki/Home将Mercurial浏览器添加到我正在构建的Django网站。
我遇到的问题是:我们存储在HG存储库中的特定文件是绑定区域文件,恰好名为/some/path/somedomain.com
,导致hgweb将内容类型设置为{{1返回文件的原始视图时(当内容真的是application/x-msdos-program
时)。不正确的内容类型导致hgwebproxy将内容转储到页面模板中,而不是仅返回它。它做了这样的测试来跳过模板:
text/plain
一些可行的解决方案当然是
if response['content-type'].split(';')[0] in ('application/octet-stream', 'text/plain'):
return response
(Lame and dirty)答案 0 :(得分:0)
hgweb使用mimetypes来检测文件的mime类型。您可以通过添加设置文件来覆盖“.com”后缀检测。请参阅:mimetypes.knownfiles:
>>> import mimetypes
>>> mimetypes.init()
>>> mimetypes.knownfiles
['/etc/mime.types', '/etc/httpd/mime.types', '/etc/httpd/conf/mime.types', '/etc/apache/mime.types', '/etc/apache2/mime.types', '/usr/local/etc/httpd/conf/mime.types', '/usr/local/lib/netscape/mime.types', '/usr/local/etc/httpd/conf/mime.types', '/usr/local/etc/mime.types']