From 26140de730711beb2109294a6ad2b943f277f540 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A0=20Mercader?= Date: Fri, 25 Aug 2017 11:51:16 +0100 Subject: [PATCH 1/2] Remove experimental flag from IAuthenticator This has been used for a long time eg in ckanext-ldap and ckanext-oauth2 --- ckan/plugins/interfaces.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ckan/plugins/interfaces.py b/ckan/plugins/interfaces.py index f5bf0632487..a3603e879c8 100644 --- a/ckan/plugins/interfaces.py +++ b/ckan/plugins/interfaces.py @@ -1581,9 +1581,7 @@ def organization_facets(self, facets_dict, organization_type, package_type): class IAuthenticator(Interface): - u'''EXPERIMENTAL - - Allows custom authentication methods to be integrated into CKAN. + u'''Allows custom authentication methods to be integrated into CKAN. Currently it is experimental and the interface may change.''' def identify(self): From 6aada27c4988d19eb7b1c3c1ad632b0597a959ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A0=20Mercader?= Date: Fri, 25 Aug 2017 11:53:37 +0100 Subject: [PATCH 2/2] Remove more experimental mentions --- ckan/plugins/interfaces.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ckan/plugins/interfaces.py b/ckan/plugins/interfaces.py index a3603e879c8..489ed777501 100644 --- a/ckan/plugins/interfaces.py +++ b/ckan/plugins/interfaces.py @@ -1581,8 +1581,7 @@ def organization_facets(self, facets_dict, organization_type, package_type): class IAuthenticator(Interface): - u'''Allows custom authentication methods to be integrated into CKAN. - Currently it is experimental and the interface may change.''' + u'''Allows custom authentication methods to be integrated into CKAN.''' def identify(self): u'''called to identify the user.