[Zope-CVS] CVS: Products/PluggableAuthService/plugins -
BasePlugin.py:1.2 CookieAuthHelper.py:1.2
DelegatingMultiPlugin.py:1.2 DomainAuthHelper.py:1.2
DynamicGroupsPlugin.py:1.2 HTTPBasicAuthHelper.py:1.2
LocalRolePlugin.py:1.2 RecursiveGroupsPlugin.py:1.2
ScriptablePlugin.py:1.2 SearchPrincipalsPlugin.py:1.2
SessionAuthHelper.py:1.2 ZODBGroupManager.py:1.2
ZODBRoleManager.py:1.2 ZODBUserManager.py:1.2 __init__.py:1.2
Zachery Bir
zbir at urbanape.com
Wed Apr 28 15:59:23 EDT 2004
Update of /cvs-repository/Products/PluggableAuthService/plugins
In directory cvs.zope.org:/tmp/cvs-serv24068/plugins
Modified Files:
BasePlugin.py CookieAuthHelper.py DelegatingMultiPlugin.py
DomainAuthHelper.py DynamicGroupsPlugin.py
HTTPBasicAuthHelper.py LocalRolePlugin.py
RecursiveGroupsPlugin.py ScriptablePlugin.py
SearchPrincipalsPlugin.py SessionAuthHelper.py
ZODBGroupManager.py ZODBRoleManager.py ZODBUserManager.py
__init__.py
Log Message:
Added ZPL to all modules
=== Products/PluggableAuthService/plugins/BasePlugin.py 1.1.1.1 => 1.2 ===
--- Products/PluggableAuthService/plugins/BasePlugin.py:1.1.1.1 Wed Apr 28 15:19:05 2004
+++ Products/PluggableAuthService/plugins/BasePlugin.py Wed Apr 28 15:58:52 2004
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights
+# Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this
+# distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
""" Class: BasePlugin
$Id$
=== Products/PluggableAuthService/plugins/CookieAuthHelper.py 1.1.1.1 => 1.2 ===
--- Products/PluggableAuthService/plugins/CookieAuthHelper.py:1.1.1.1 Wed Apr 28 15:19:05 2004
+++ Products/PluggableAuthService/plugins/CookieAuthHelper.py Wed Apr 28 15:58:52 2004
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights
+# Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this
+# distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
""" Class: CookieAuthHelper
$Id$
=== Products/PluggableAuthService/plugins/DelegatingMultiPlugin.py 1.1.1.1 => 1.2 ===
--- Products/PluggableAuthService/plugins/DelegatingMultiPlugin.py:1.1.1.1 Wed Apr 28 15:19:05 2004
+++ Products/PluggableAuthService/plugins/DelegatingMultiPlugin.py Wed Apr 28 15:58:52 2004
@@ -1,9 +1,20 @@
##############################################################################
#
-# DelegatingMultiPlugin Shim to use any User Folder with the
-# PluggableAuthenticationService
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights
+# Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this
+# distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
#
##############################################################################
+""" DelegatingMultiPlugin Shim to use any User Folder with the
+ PluggableAuthenticationService
+"""
__doc__ = """ Delegating User Folder shim module """
__version__ = '$Revision$'[11:-2]
=== Products/PluggableAuthService/plugins/DomainAuthHelper.py 1.1.1.1 => 1.2 ===
--- Products/PluggableAuthService/plugins/DomainAuthHelper.py:1.1.1.1 Wed Apr 28 15:19:05 2004
+++ Products/PluggableAuthService/plugins/DomainAuthHelper.py Wed Apr 28 15:58:52 2004
@@ -1,8 +1,19 @@
##############################################################################
#
-# DomainAuthHelper Authentication Plugin for Domain authentication
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights
+# Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this
+# distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
#
##############################################################################
+""" DomainAuthHelper Authentication Plugin for Domain authentication
+"""
__doc__ = """ Authentication Plugin for Domain authentication """
__version__ = '$Revision$'[11:-2]
=== Products/PluggableAuthService/plugins/DynamicGroupsPlugin.py 1.1.1.1 => 1.2 ===
--- Products/PluggableAuthService/plugins/DynamicGroupsPlugin.py:1.1.1.1 Wed Apr 28 15:19:05 2004
+++ Products/PluggableAuthService/plugins/DynamicGroupsPlugin.py Wed Apr 28 15:58:52 2004
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights
+# Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this
+# distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
""" Classes: DynamicGroupsPlugin
$Id$
=== Products/PluggableAuthService/plugins/HTTPBasicAuthHelper.py 1.1.1.1 => 1.2 ===
--- Products/PluggableAuthService/plugins/HTTPBasicAuthHelper.py:1.1.1.1 Wed Apr 28 15:19:05 2004
+++ Products/PluggableAuthService/plugins/HTTPBasicAuthHelper.py Wed Apr 28 15:58:52 2004
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights
+# Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this
+# distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
""" Class: HTTPBasicAuthHelper
$Id$
=== Products/PluggableAuthService/plugins/LocalRolePlugin.py 1.1.1.1 => 1.2 ===
--- Products/PluggableAuthService/plugins/LocalRolePlugin.py:1.1.1.1 Wed Apr 28 15:19:05 2004
+++ Products/PluggableAuthService/plugins/LocalRolePlugin.py Wed Apr 28 15:58:52 2004
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights
+# Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this
+# distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
""" Classes: LocalRolePlugin
$Id$
=== Products/PluggableAuthService/plugins/RecursiveGroupsPlugin.py 1.1.1.1 => 1.2 ===
--- Products/PluggableAuthService/plugins/RecursiveGroupsPlugin.py:1.1.1.1 Wed Apr 28 15:19:05 2004
+++ Products/PluggableAuthService/plugins/RecursiveGroupsPlugin.py Wed Apr 28 15:58:52 2004
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights
+# Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this
+# distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
""" Classes: RecursiveGroupsPlugin
$Id$
=== Products/PluggableAuthService/plugins/ScriptablePlugin.py 1.1.1.1 => 1.2 ===
--- Products/PluggableAuthService/plugins/ScriptablePlugin.py:1.1.1.1 Wed Apr 28 15:19:05 2004
+++ Products/PluggableAuthService/plugins/ScriptablePlugin.py Wed Apr 28 15:58:52 2004
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights
+# Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this
+# distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
""" Class: ScriptablePlugin
$Id$
=== Products/PluggableAuthService/plugins/SearchPrincipalsPlugin.py 1.1.1.1 => 1.2 ===
--- Products/PluggableAuthService/plugins/SearchPrincipalsPlugin.py:1.1.1.1 Wed Apr 28 15:19:05 2004
+++ Products/PluggableAuthService/plugins/SearchPrincipalsPlugin.py Wed Apr 28 15:58:52 2004
@@ -1,10 +1,21 @@
##############################################################################
#
-# SearchPrincipalsPlugin Plugin to delegate enumerateUsers
-# and enumerateGroups requests to another
-# PluggableAuthService
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights
+# Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this
+# distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
#
##############################################################################
+""" SearchPrincipalsPlugin Plugin to delegate enumerateUsers
+ and enumerateGroups requests to another
+ PluggableAuthService
+"""
# General Python imports
import copy, os
=== Products/PluggableAuthService/plugins/SessionAuthHelper.py 1.1.1.1 => 1.2 ===
--- Products/PluggableAuthService/plugins/SessionAuthHelper.py:1.1.1.1 Wed Apr 28 15:19:05 2004
+++ Products/PluggableAuthService/plugins/SessionAuthHelper.py Wed Apr 28 15:58:52 2004
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights
+# Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this
+# distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
""" Class: SessionAuthHelper
$Id$
=== Products/PluggableAuthService/plugins/ZODBGroupManager.py 1.1.1.1 => 1.2 ===
--- Products/PluggableAuthService/plugins/ZODBGroupManager.py:1.1.1.1 Wed Apr 28 15:19:06 2004
+++ Products/PluggableAuthService/plugins/ZODBGroupManager.py Wed Apr 28 15:58:52 2004
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights
+# Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this
+# distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
""" Classes: ZODBGroupManager
$Id$
=== Products/PluggableAuthService/plugins/ZODBRoleManager.py 1.1.1.1 => 1.2 ===
--- Products/PluggableAuthService/plugins/ZODBRoleManager.py:1.1.1.1 Wed Apr 28 15:19:06 2004
+++ Products/PluggableAuthService/plugins/ZODBRoleManager.py Wed Apr 28 15:58:52 2004
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights
+# Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this
+# distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
""" Classes: ZODBRoleManager
$Id$
=== Products/PluggableAuthService/plugins/ZODBUserManager.py 1.1.1.1 => 1.2 ===
--- Products/PluggableAuthService/plugins/ZODBUserManager.py:1.1.1.1 Wed Apr 28 15:19:06 2004
+++ Products/PluggableAuthService/plugins/ZODBUserManager.py Wed Apr 28 15:58:52 2004
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights
+# Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this
+# distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
""" Classes: ZODBUserManager
$Id$
=== Products/PluggableAuthService/plugins/__init__.py 1.1.1.1 => 1.2 ===
--- Products/PluggableAuthService/plugins/__init__.py:1.1.1.1 Wed Apr 28 15:19:05 2004
+++ Products/PluggableAuthService/plugins/__init__.py Wed Apr 28 15:58:52 2004
@@ -1 +1,15 @@
+##############################################################################
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights
+# Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this
+# distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
"""This space intentionally left blank"""
More information about the Zope-CVS
mailing list