diff --git a/Framework/PythonInterface/mantid/simpleapi.py b/Framework/PythonInterface/mantid/simpleapi.py index 0edcbd34fa2d7e984abe94dd8522263ca11f7931..6153e02bf09bbf2dffd8a09a23be124400189e1b 100644 --- a/Framework/PythonInterface/mantid/simpleapi.py +++ b/Framework/PythonInterface/mantid/simpleapi.py @@ -166,6 +166,16 @@ def _create_generic_signature_legacy(algm_object): return "\b%s" % arg_str, "\b\bVersion=%d" % algm_object.version() +def _show_dialog_fn_deprecation_warning(name): + """Raise a deprecation warning for a *Dialog being used. + """ + import warnings + help_msg = "{} has been deprecated. " \ + "All Dialog functions will be removed in a future release.".format(name) + warnings.warn(help_msg, UserWarning) + logger.warning(help_msg) + + def Load(*args, **kwargs): """ Load is a more flexible algorithm than other Mantid algorithms. @@ -261,6 +271,8 @@ def LoadDialog(*args, **kwargs): - Disable :: A CSV list of properties to disable in the dialog - Message :: An optional message string """ + _show_dialog_fn_deprecation_warning("LoadDialog") + arguments = {} filename = None wkspace = None @@ -1333,6 +1345,8 @@ def _create_algorithm_dialog(algorithm, version, _algm_object): """ def algorithm_wrapper(*args, **kwargs): + _show_dialog_fn_deprecation_warning("{}Dialog".format(algorithm)) + _version = version if "Version" in kwargs: _version = kwargs["Version"] diff --git a/docs/source/release/v5.0.0/framework.rst b/docs/source/release/v5.0.0/framework.rst index bb5a13e76e06c9433a245aee6c8abc42182384fd..c8c7f1e7f711219239128fab61b2d1f8d68e77b3 100644 --- a/docs/source/release/v5.0.0/framework.rst +++ b/docs/source/release/v5.0.0/framework.rst @@ -61,5 +61,8 @@ Python ------ - :py:meth:`mantid.api.Run.getTimeAveragedStd` method has been added to the :py:obj:`mantid.api.Run` object. +- All simpleapi Dialog functions that raised the corresponding algorithm dialog from a + script have been deprecated. They had low to zero usage and will not work in the future workbench. + They will be deleted in a future release. :ref:`Release 5.0.0 <v5.0.0>`