本文整理汇总了Python中sugar3.bundle.activitybundle.ActivityBundle.install_mime_type方法的典型用法代码示例。如果您正苦于以下问题:Python ActivityBundle.install_mime_type方法的具体用法?Python ActivityBundle.install_mime_type怎么用?Python ActivityBundle.install_mime_type使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sugar3.bundle.activitybundle.ActivityBundle
的用法示例。
在下文中一共展示了ActivityBundle.install_mime_type方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _add_bundle
# 需要导入模块: from sugar3.bundle.activitybundle import ActivityBundle [as 别名]
# 或者: from sugar3.bundle.activitybundle.ActivityBundle import install_mime_type [as 别名]
def _add_bundle(self, bundle_path, install_mime_type=False):
logging.debug('STARTUP: Adding bundle %r', bundle_path)
try:
bundle = ActivityBundle(bundle_path)
if install_mime_type:
bundle.install_mime_type(bundle_path)
except MalformedBundleException:
logging.exception('Error loading bundle %r', bundle_path)
return None
bundle_id = bundle.get_bundle_id()
installed = self.get_bundle(bundle_id)
if installed is not None:
if NormalizedVersion(installed.get_activity_version()) >= \
NormalizedVersion(bundle.get_activity_version()):
logging.debug('Skip old version for %s', bundle_id)
return None
else:
logging.debug('Upgrade %s', bundle_id)
self.remove_bundle(installed.get_path())
self._bundles.append(bundle)
return bundle