本文整理汇总了Python中OFS.PropertyManager.PropertyManager.manage_changeProperties方法的典型用法代码示例。如果您正苦于以下问题:Python PropertyManager.manage_changeProperties方法的具体用法?Python PropertyManager.manage_changeProperties怎么用?Python PropertyManager.manage_changeProperties使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OFS.PropertyManager.PropertyManager
的用法示例。
在下文中一共展示了PropertyManager.manage_changeProperties方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestUtils
# 需要导入模块: from OFS.PropertyManager import PropertyManager [as 别名]
# 或者: from OFS.PropertyManager.PropertyManager import manage_changeProperties [as 别名]
class TestUtils(ZopeTestCase.ZopeTestCase):
def afterSetUp(self):
self.props = PropertyManager()
# PropertyManager has title property already
self.props.manage_changeProperties(title = 'Player properties')
self.props.manage_addProperty('plugins/controls/url', '${portal_path}flowplayer.controls.swf', 'string')
self.props.manage_addProperty('plugins/controls/all', False, 'boolean')
self.props.manage_addProperty('plugins/controls/play', True, 'boolean')
self.props.manage_addProperty('plugins/controls/scrubber', True, 'boolean')
self.props.manage_addProperty('plugins/controls/tooltips/fullscreen', 'Enter fullscreen mode', 'string')
self.props.manage_addProperty('plugins/controls/tooltips/buttons', True, 'boolean')
self.props.manage_addProperty('plugins/audio/url', '${portal_url}++resource++collective.flowplayer/flowplayer.audio.swf', 'string')
self.props.manage_addProperty('clip/autoPlay',False, 'boolean')
self.props.manage_addProperty('clip/autoBuffering', True, 'boolean')
self.props.manage_addProperty('param/src', 'flowplayer.swf', 'string')
self.props.manage_addProperty('param/wmode', 'opaque', 'string')
def test_parsing(self):
parsed = properties_to_dict(self.props, 'http://localhost', ignore=['title'])
self.assertEqual(len(parsed.keys()), 2) # plugins, clip
self.assertEqual(len(parsed['plugins'].keys()), 2) # controls, audio
self.assertEqual(parsed['plugins']['controls']['all'], False)
self.assertEqual(parsed['plugins']['controls']['scrubber'], True)
self.assertEqual(parsed['plugins']['controls']['url'], r'http%3A//localhost/flowplayer.controls.swf')
self.assertEqual(parsed['plugins']['audio']['url'], r'http%3A//localhost/%2B%2Bresource%2B%2Bcollective.flowplayer/flowplayer.audio.swf')
self.assertEqual(parsed['clip']['autoBuffering'], True)
self.failIf(parsed.has_key('param'))
def test_parsing_flash_props(self):
parsed = flash_properties_to_dict(self.props, 'http://localhost')
self.assertEqual(len(parsed.keys()), 2) # src, wmode
self.assertEqual(parsed['src'], 'flowplayer.swf')
self.assertEqual(parsed['wmode'], 'opaque')
示例2: manage_changeProperties
# 需要导入模块: from OFS.PropertyManager import PropertyManager [as 别名]
# 或者: from OFS.PropertyManager.PropertyManager import manage_changeProperties [as 别名]
def manage_changeProperties(self, REQUEST=None, **kw):
result = PropertyManager.manage_changeProperties(self, REQUEST, **kw)
self.reindex_object()
return result
示例3: manage_changeProperties
# 需要导入模块: from OFS.PropertyManager import PropertyManager [as 别名]
# 或者: from OFS.PropertyManager.PropertyManager import manage_changeProperties [as 别名]
def manage_changeProperties(self, **kwargs):
"""Ensure the SQL methods get regenerated."""
self.delSQLQueries()
PropertyManager.manage_changeProperties(self, **kwargs)
self.addSQLQueries()