Plone安全补丁20161129之后的PloneFormGen中的UnicodeDecodeError

时间:2016-12-03 13:20:20

标签: plone plone-4.x ploneformgen

应用Plone security patch 20161129之后,我们的PloneFormGen表格不再起作用,因为它包含元音(ä,ö,ß或€)。我们使用PloneFormGen 1.7.20,这是Plone 4.3.9的推荐版本。这是堆栈跟踪:

  Module zope.tales.tales, line 696, in evaluate
   - URL: file:/var/plone/buildout-cache/eggs/Products.PloneFormGen-1.7.20-py2.7.egg/Products/PloneFormGen/skins/PloneFormGen/widget_fieldset_start.pt
   - Line 25, Column 10
   - Expression: <PythonExpr widget.Description(here)>
   - Names:
      {'container': <PloneSite at /mysite>,
       'context': <FormFolder at /mysite/mitglied-werden>,
       'desitelt': <object object at 0x7fe244f734b0>,
       'here': <FormFolder at /mysite/mitglied-werden>,
       'loop': {u'field': <Products.PageTemplates.Expressions.PathIterator object at 0x16fe5350>},
       'nothing': None,
       'options': {'args': (),
                   'state': <Products.CMFFormController.ControllerState.ControllerState object at 0x7fe22c676610>},
       'repeat': <Products.PageTemplates.Expressions.SafeMapping object at 0x1d61fc00>,
       'request': <HTTPRequest, URL=https://www.example.org/mitglied-werden/fg_base_view_p3>,
       'root': <Application at >,
       'template': <FSControllerPageTemplate at /mysite/fg_base_view_p3 used for /mysite/mitglied-werden>,
       'traverse_subpath': [],
       'user': <PloneUser 'siteb390'>}
  Module Products.PageTemplates.ZRPythonExpr, line 48, in __call__
   - __traceback_info__: widget.Description(here)
  Module PythonExpr, line 1, in <expression>
  Module Products.PloneFormGen.content.field_utils, line 27, in wDescription
  Module zope.i18n, line 107, in translate
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 20: ordinal not in range(128)

删除变音后,它再次起作用,但表格看起来有点不专业。

现在搜索网络一小时后出现这个错误,我不知道哪个扩展导致这个(PloneFormGen?)导致这个以及如何解决它: - /甚至不知道在哪个方向上看得更远..

1 个答案:

答案 0 :(得分:3)

从1.7.20开始,所有PFG描述字段都通过转换机制推送。 (请不要问我为什么他们使用用户提供的字段来执行此操作,因为描述字段首先不是语言不敏感。)对于您可以在描述中使用的字母施加了额外的限制,因为您已找到

没有声称这是一个错误修正,但在我的快速试用中,修改了buildout-cache/eggs/Products.PloneFormGen-1.7.20-py2.7.egg/Products/PloneFormGen/content/field_utils.py第27行

        if value:
        value = translate(value, context=instance.REQUEST)
        return cgi.escape(value)

    if value:
        value = translate(value.decode('utf-8'), context=instance.REQUEST)
        return cgi.escape(value)

让问题消失了。