From 12d662c1b76fc5971e23471617ebdf2a14ea9cfa Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Wed, 13 Aug 2008 01:18:00 +0000 Subject: 131: Renamed Plugins/ to plugins/ --- ipalib/plugins/__init__.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 ipalib/plugins/__init__.py (limited to 'ipalib/plugins/__init__.py') diff --git a/ipalib/plugins/__init__.py b/ipalib/plugins/__init__.py new file mode 100644 index 00000000..743eedb9 --- /dev/null +++ b/ipalib/plugins/__init__.py @@ -0,0 +1,24 @@ +# Authors: +# Jason Gerard DeRose +# +# Copyright (C) 2008 Red Hat +# see file 'COPYING' for use and warranty information +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; version 2 only +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +""" +Sub-package containing all internal plugins. +""" + +import example -- cgit From 74a3cf8d2860665cc37a8f2787f950246c0ba10e Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Tue, 26 Aug 2008 19:43:56 +0000 Subject: 200: Added plugins/override.py with an example of overriding a plugin --- ipalib/plugins/__init__.py | 1 + 1 file changed, 1 insertion(+) (limited to 'ipalib/plugins/__init__.py') diff --git a/ipalib/plugins/__init__.py b/ipalib/plugins/__init__.py index 743eedb9..91b56733 100644 --- a/ipalib/plugins/__init__.py +++ b/ipalib/plugins/__init__.py @@ -22,3 +22,4 @@ Sub-package containing all internal plugins. """ import example +import override -- cgit From 0c3ebe0befa780485e108bfd85d05fbf6a7bc8e9 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Thu, 25 Sep 2008 23:21:41 +0000 Subject: 367: Implementing basics of loading plugins out of tree --- ipalib/plugins/__init__.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'ipalib/plugins/__init__.py') diff --git a/ipalib/plugins/__init__.py b/ipalib/plugins/__init__.py index 91b56733..58db94ca 100644 --- a/ipalib/plugins/__init__.py +++ b/ipalib/plugins/__init__.py @@ -20,6 +20,3 @@ """ Sub-package containing all internal plugins. """ - -import example -import override -- cgit From 2507b7c6741330eafacce63deca630073fb536fd Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Wed, 1 Oct 2008 16:17:02 -0600 Subject: Clarified docstrings in */plugins/__init__.py; renamed ipa_server/plugins/ipa_ldap.py to b_ldap.py --- ipalib/plugins/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ipalib/plugins/__init__.py') diff --git a/ipalib/plugins/__init__.py b/ipalib/plugins/__init__.py index 58db94ca..544429ef 100644 --- a/ipalib/plugins/__init__.py +++ b/ipalib/plugins/__init__.py @@ -18,5 +18,8 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ -Sub-package containing all internal plugins. +Sub-package containing all core plugins. + +By convention, modules with frontend plugins are named f_*.py and modules +with backend plugins are named b_*.py. """ -- cgit