[Checkins] SVN: zam.api/trunk/src/zam/api/layer.py Added layer for new authentication plugin

Roger Ineichen roger at projekt01.ch
Sat Mar 15 22:14:23 EDT 2008


Log message for revision 84698:
  Added layer for new authentication plugin

Changed:
  U   zam.api/trunk/src/zam/api/layer.py

-=-
Modified: zam.api/trunk/src/zam/api/layer.py
===================================================================
--- zam.api/trunk/src/zam/api/layer.py	2008-03-16 02:08:25 UTC (rev 84697)
+++ zam.api/trunk/src/zam/api/layer.py	2008-03-16 02:14:22 UTC (rev 84698)
@@ -24,6 +24,9 @@
 
 # this plugin layers allows us to use the zam plugin configuration without
 # to make the skin depend on the plugins.
+class ISimpleAuthenticationPluginLayer(IBrowserRequest):
+    """Plugin layer offered for zamplugin.authentication package."""
+
 class IControlPluginLayer(IBrowserRequest):
     """Plugin layer offered for zamplugin.control package."""
 
@@ -45,8 +48,9 @@
     """ZAM browser layer without any plugin configuration."""
 
 
-class IZAMPluginLayer(IControlPluginLayer, IErrorPluginLayer,
-    INavigationPluginLayer, ISampleDataPluginLayer, ISiteManagerPluginLayer):
+class IZAMPluginLayer(ISimpleAuthenticationPluginLayer, IControlPluginLayer,
+    IErrorPluginLayer, INavigationPluginLayer, ISampleDataPluginLayer,
+    ISiteManagerPluginLayer):
     """Plugin layer offered for zamplugin configuration."""
 
 



More information about the Checkins mailing list