[Zope3-checkins] SVN: Zope3/trunk/ Remove release dependencies on:
Florent Xicluna
laxyf at yahoo.fr
Sun Sep 17 10:07:16 EDT 2006
Log message for revision 70210:
Remove release dependencies on:
- 'zope.app.introspector'
- 'zope.app.pluggableauth'
Note: pluggableauth is kept in the repository, because zope.app.demo still rely on it.
Changed:
U Zope3/trunk/doc/CHANGES.txt
U Zope3/trunk/releases/Zope/DEPENDENCIES.cfg
U Zope3/trunk/src/zope/app/pluggableauth/configure.zcml
-=-
Modified: Zope3/trunk/doc/CHANGES.txt
===================================================================
--- Zope3/trunk/doc/CHANGES.txt 2006-09-17 07:56:49 UTC (rev 70209)
+++ Zope3/trunk/doc/CHANGES.txt 2006-09-17 14:07:15 UTC (rev 70210)
@@ -37,6 +37,9 @@
Restructuring
+ - Removed deprecated ``zope.app.pluggableauth`` package.
+ See ``zope.app.authentication``.
+
- Removed deprecated ``zope.app.introspector`` package.
See ``zope.app.apidoc.codemodule`` for the introspector feature.
Modified: Zope3/trunk/releases/Zope/DEPENDENCIES.cfg
===================================================================
--- Zope3/trunk/releases/Zope/DEPENDENCIES.cfg 2006-09-17 07:56:49 UTC (rev 70209)
+++ Zope3/trunk/releases/Zope/DEPENDENCIES.cfg 2006-09-17 14:07:15 UTC (rev 70210)
@@ -21,9 +21,7 @@
zope.app.ftp
zope.app.generations
zope.app.i18nfile
-zope.app.introspector
zope.app.onlinehelp
-zope.app.pluggableauth
zope.app.securitypolicy
zope.app.server
zope.app.session
Modified: Zope3/trunk/src/zope/app/pluggableauth/configure.zcml
===================================================================
--- Zope3/trunk/src/zope/app/pluggableauth/configure.zcml 2006-09-17 07:56:49 UTC (rev 70209)
+++ Zope3/trunk/src/zope/app/pluggableauth/configure.zcml 2006-09-17 14:07:15 UTC (rev 70210)
@@ -1,22 +1,26 @@
<configure
xmlns="http://namespaces.zope.org/zope"
- xmlns:browser="http://namespaces.zope.org/browser">
+ xmlns:browser="http://namespaces.zope.org/browser"
+ >
- <localUtility class=".PluggableAuthentication">
+ <class class=".PluggableAuthentication">
<factory
id="zope.app.services.PluggableAuthentication"
/>
+ <implements
+ interface="zope.annotation.interfaces.IAttributeAnnotatable"
+ />
<require
permission="zope.ManageSite"
interface=".interfaces.IPluggableAuthentication"
/>
- </localUtility>
+ </class>
<subscriber
- for=".interfaces.IPluggableAuthentication
- zope.app.container.interfaces.IObjectAddedEvent"
- handler=".PluggableAuthenticationAddSubscriber"
- />
+ for=".interfaces.IPluggableAuthentication
+ zope.app.container.interfaces.IObjectAddedEvent"
+ handler=".PluggableAuthenticationAddSubscriber"
+ />
<class class=".BTreePrincipalSource">
<factory
@@ -52,7 +56,8 @@
name="login"
for=".interfaces.ILoginPasswordPrincipalSource"
class="zope.app.pluggableauth.PrincipalAuthenticationView"
- permission="zope.Public" />
+ permission="zope.Public"
+ />
<include package=".browser" />
More information about the Zope3-Checkins
mailing list