[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/pas/ Moved tool definitions to browser config and defind new tools

Jim Fulton jim at zope.com
Wed Oct 13 13:08:00 EDT 2004


Log message for revision 28113:
  Moved tool definitions to browser config and defind new tools
  
  Including the search tool and combined tools.
  

Changed:
  U   Zope3/trunk/src/zope/app/pas/authenticationplugins.zcml
  U   Zope3/trunk/src/zope/app/pas/browser/configure.zcml
  U   Zope3/trunk/src/zope/app/pas/challengeplugins.zcml
  U   Zope3/trunk/src/zope/app/pas/extractionplugins.zcml

-=-
Modified: Zope3/trunk/src/zope/app/pas/authenticationplugins.zcml
===================================================================
--- Zope3/trunk/src/zope/app/pas/authenticationplugins.zcml	2004-10-13 17:01:31 UTC (rev 28112)
+++ Zope3/trunk/src/zope/app/pas/authenticationplugins.zcml	2004-10-13 17:07:58 UTC (rev 28113)
@@ -3,13 +3,6 @@
     xmlns:browser="http://namespaces.zope.org/browser"
     i18n_domain="zope"
     >
-
-  <browser:tool
-      interface=".interfaces.IAuthenticationPlugin"
-      title="PAS Authentication Plugin"
-      description="PAS Authentication Plugin"
-      />
-
   
   <localUtility class=".zodb.PersistentPrincipalStorage">
 

Modified: Zope3/trunk/src/zope/app/pas/browser/configure.zcml
===================================================================
--- Zope3/trunk/src/zope/app/pas/browser/configure.zcml	2004-10-13 17:01:31 UTC (rev 28112)
+++ Zope3/trunk/src/zope/app/pas/browser/configure.zcml	2004-10-13 17:07:58 UTC (rev 28113)
@@ -33,4 +33,44 @@
       name="edit.html"
       permission="zope.ManageServices"
       menu="zmi_views" title="Edit" />
+
+
+  <tool
+      interface="..interfaces.IAuthenticationPlugin"
+      title="PAS Authentication Plugin"
+      description="PAS Authentication Plugin"
+      />
+
+  <tool
+      interface="..interfaces.IPrincipalSearchPlugin"
+      title="PAS Search Plugin"
+      description="PAS Search Plugin"
+      />
+
+  <tool
+      interface="..interfaces.ISearchableAuthenticationPlugin"
+      title="PAS Search and Authentication Plugin"
+      description="PAS Search and Authentication Plugin"
+      />
+
+  <tool
+      interface="..interfaces.IExtractionPlugin"
+      title="PAS Extraction Plugin"
+      description="PAS Extraction Plugin"
+      />
+
+  <tool
+      interface="..interfaces.IChallengePlugin"
+      title="PAS Challenge Plugin"
+      description="PAS Challenge Plugin"
+      />
+
+  <tool
+      interface="..interfaces.IExtractionAndChallengePlugin"
+      title="PAS Credential Extraction and Challenge Plugin"
+      description="PAS Credential Extraction and Challenge Plugin"
+      />
+
+
+
 </zope:configure>

Modified: Zope3/trunk/src/zope/app/pas/challengeplugins.zcml
===================================================================
--- Zope3/trunk/src/zope/app/pas/challengeplugins.zcml	2004-10-13 17:01:31 UTC (rev 28112)
+++ Zope3/trunk/src/zope/app/pas/challengeplugins.zcml	2004-10-13 17:07:58 UTC (rev 28113)
@@ -2,12 +2,6 @@
     xmlns="http://namespaces.zope.org/zope"
     xmlns:browser="http://namespaces.zope.org/browser"
     i18n_domain="zope">
-
-  <browser:tool
-      interface=".interfaces.IChallengePlugin"
-      title="PAS Challenge Plugin"
-      description="PAS Challenge Plugin"
-      />
   
   <localUtility class=".httpplugins.HTTPBasicAuthChallenger">
 

Modified: Zope3/trunk/src/zope/app/pas/extractionplugins.zcml
===================================================================
--- Zope3/trunk/src/zope/app/pas/extractionplugins.zcml	2004-10-13 17:01:31 UTC (rev 28112)
+++ Zope3/trunk/src/zope/app/pas/extractionplugins.zcml	2004-10-13 17:07:58 UTC (rev 28113)
@@ -3,12 +3,6 @@
     xmlns:browser="http://namespaces.zope.org/browser"
     i18n_domain="zope">
 
-  <browser:tool
-      interface=".interfaces.IExtractionPlugin"
-      title="PAS Extraction Plugin"
-      description="PAS Extraction Plugin"
-      />
-
   <localUtility class=".httpplugins.HTTPBasicAuthExtractor">
 
     <implements



More information about the Zope3-Checkins mailing list