Skip to content
Snippets Groups Projects
Unverified Commit 83142288 authored by Stefano Borini's avatar Stefano Borini Committed by GitHub
Browse files

Merge branch 'master' into 135-instantiate-parameter-factories-once

parents 55e9c46f 020a6b68
No related branches found
No related tags found
1 merge request!191Instantiate parameter factories once
......@@ -24,6 +24,10 @@ Backward incompatible changes that require rework of the plugins:
and to install the BDSS (#180)
- Removed support for python2 (#179)
Internal changes:
- Changed internal plugin ids to prevent conflicts with external ones (#131)
Release 0.2.0
-------------
......@@ -32,4 +36,5 @@ Release 0.2.0
Release 0.1.0
-------------
- Initial release. Implements basic functionality of the BDSS and its plugin system.
- Initial release. Implements basic functionality of the BDSS and its
plugin system.
......@@ -19,7 +19,7 @@ log = logging.getLogger(__name__)
class BDSSApplication(Application):
"""Main application for the BDSS.
"""
id = "force_bdss.bdss_application"
id = "force.bdss_core.bdss_application"
#: The path of the workflow file to open
workflow_filepath = Unicode()
......
......@@ -6,16 +6,16 @@ class ExtensionPointID:
as they just have to reimplement the plugin base class and implement
the appropriate default methods.
"""
MCO_FACTORIES = 'force.bdss.mco.factories'
DATA_SOURCE_FACTORIES = 'force.bdss.data_source.factories'
MCO_FACTORIES = 'force.bdss_core.mco.factories'
DATA_SOURCE_FACTORIES = 'force.bdss_core.data_source.factories'
NOTIFICATION_LISTENER_FACTORIES = \
'force.bdss.notification_listener.factories'
UI_HOOKS_FACTORIES = 'force.bdss.ui_hooks.factories'
'force.bdss_core.notification_listener.factories'
UI_HOOKS_FACTORIES = 'force.bdss_core.ui_hooks.factories'
class InternalPluginID:
CORE_MCO_DRIVER_ID = "force.bdss.core.CoreMCODriver"
CORE_EVALUATION_DRIVER_ID = "force.bdss.core.CoreEvaluationDriver"
CORE_MCO_DRIVER_ID = "force.bdss_core.CoreMCODriver"
CORE_EVALUATION_DRIVER_ID = "force.bdss_core.CoreEvaluationDriver"
def factory_id(plugin_id, identifier):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment