本文整理汇总了Python中Products.ATContentTypes.content.base.ATCTContent.setFormat方法的典型用法代码示例。如果您正苦于以下问题:Python ATCTContent.setFormat方法的具体用法?Python ATCTContent.setFormat怎么用?Python ATCTContent.setFormat使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Products.ATContentTypes.content.base.ATCTContent
的用法示例。
在下文中一共展示了ATCTContent.setFormat方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: setFormat
# 需要导入模块: from Products.ATContentTypes.content.base import ATCTContent [as 别名]
# 或者: from Products.ATContentTypes.content.base.ATCTContent import setFormat [as 别名]
def setFormat(self, value):
"""
Method for CMF compatibility, set for body format
"""
if not value:
value = "text/html"
else:
value = translateMimetypeAlias(value)
ATCTContent.setFormat(self, value)
示例2: setFormat
# 需要导入模块: from Products.ATContentTypes.content.base import ATCTContent [as 别名]
# 或者: from Products.ATContentTypes.content.base.ATCTContent import setFormat [as 别名]
def setFormat(self, value):
# CMF compatibility method.
#
# The default mutator is overwritten to:
#
# o add a conversion from stupid CMF content type
# (e.g. structured-text) to real mime types used by MTR.
#
# o Set format to default format if value is empty
if not value:
value = zconf.ATDocument.default_content_type
else:
value = translateMimetypeAlias(value)
ATCTContent.setFormat(self, value)