From 3af87e6861727885da160069c7b8baab3942e48b Mon Sep 17 00:00:00 2001 From: Julien Muchembled <jm@nexedi.com> Date: Fri, 24 Dec 2010 17:56:48 +0000 Subject: [PATCH] PortalTransforms: disable 'markdown_to_html' & 'textile_to_html' tranforms On Zope 2.8, MimeTypesRegistry does not these input formats and we don't need them anyway. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@41767 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/PortalTransforms/transforms/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/product/PortalTransforms/transforms/__init__.py b/product/PortalTransforms/transforms/__init__.py index 86fc017cf8..e237000425 100644 --- a/product/PortalTransforms/transforms/__init__.py +++ b/product/PortalTransforms/transforms/__init__.py @@ -41,8 +41,8 @@ modules = [ 'w3m_dump', 'python', # python source files, no dependancies 'identity', # identity transform, no dependancies - 'markdown_to_html', # markdown, depends on http://surfnet.dl.sourceforge.net/sourceforge/python-markdown/markdown-1-5.py - 'textile_to_html',# textile, depends on PyTextile http://dom.eav.free.fr/python/textile-mirror-2.0.10.tar.gz + #'markdown_to_html', # markdown, depends on http://surfnet.dl.sourceforge.net/sourceforge/python-markdown/markdown-1-5.py + #'textile_to_html',# textile, depends on PyTextile http://dom.eav.free.fr/python/textile-mirror-2.0.10.tar.gz 'web_intelligent_plain_text_to_html', 'html_to_web_intelligent_plain_text', ] -- 2.30.9