[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/Publisher/Browser - metaConfigure.py:1.5.6.2

Rakesh Naidu rnaidu@zeomega.com
Mon, 21 Oct 2002 10:56:27 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/Publisher/Browser
In directory cvs.zope.org:/tmp/cvs-serv4756/Zope3-Bangalore-TTW-Branch/lib/python/Zope/App/Publisher/Browser

Modified Files:
      Tag: Zope3-Bangalore-TTW-Branch
	metaConfigure.py 
Log Message:
update of metaconfiguration files with actions for interfaces


=== Zope3/lib/python/Zope/App/Publisher/Browser/metaConfigure.py 1.5.6.1 => 1.5.6.2 ===
--- Zope3/lib/python/Zope/App/Publisher/Browser/metaConfigure.py:1.5.6.1	Mon Oct 21 10:38:42 2002
+++ Zope3/lib/python/Zope/App/Publisher/Browser/metaConfigure.py	Mon Oct 21 10:55:56 2002
@@ -1,65 +1,66 @@
-##############################################################################
-#
-# Copyright (c) 2001, 2002 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.
-# 
-##############################################################################
-"""Browser configuration code
-
-$Id$
-"""
-
-from Zope.Configuration.Action import Action
-
-from Zope.Publisher.Browser.IBrowserPresentation import IBrowserPresentation
-
-from Zope.App.ComponentArchitecture.metaConfigure \
-     import defaultView as _defaultView, skin as _skin, handler
-
-from ResourceMeta import resource
-from I18nResourceMeta import I18nResource
-from ViewMeta import view
-
-def skin(_context, **__kw):
-    return _skin(_context,
-                 type='Zope.Publisher.Browser.IBrowserPresentation.',
-                 **__kw)
-
-def defaultView(_context, name, for_=None, **__kw):
-
-    if __kw:
-        actions = view(_context, name=name, for_=for_, **__kw)()
-    else:
-        actions = []
-
-    if for_ is not None:
-        for_ = _context.resolve(for_)
-
-    type = IBrowserPresentation
-
-    actions += [
-        Action(
-        discriminator = ('defaultViewName', for_, type, name),
-        callable = handler,
-        args = ('Views','setDefaultViewName', for_, type, name),
-        )
-        ]
-    if for_ is not None:
-        actions.append
-        (
-        Action(
-        discriminator = None,
-        callable = handler,
-        args = ('Interfaces', 'provideInterface', for_.__module__+'.'+for_.__name__,for_)
-              )
-        )
-        
-
-    return actions
+##############################################################################
+#
+# Copyright (c) 2001, 2002 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.
+# 
+##############################################################################
+"""Browser configuration code
+
+$Id$
+"""
+
+from Zope.Configuration.Action import Action
+
+from Zope.Publisher.Browser.IBrowserPresentation import IBrowserPresentation
+
+from Zope.App.ComponentArchitecture.metaConfigure \
+     import defaultView as _defaultView, skin as _skin, handler
+
+from ResourceMeta import resource
+from I18nResourceMeta import I18nResource
+from ViewMeta import view
+
+def skin(_context, **__kw):
+    return _skin(_context,
+                 type='Zope.Publisher.Browser.IBrowserPresentation.',
+                 **__kw)
+
+def defaultView(_context, name, for_=None, **__kw):
+
+    if __kw:
+        actions = view(_context, name=name, for_=for_, **__kw)()
+    else:
+        actions = []
+
+    if for_ is not None:
+        for_ = _context.resolve(for_)
+
+    type = IBrowserPresentation
+
+    actions += [
+        Action(
+        discriminator = ('defaultViewName', for_, type, name),
+        callable = handler,
+        args = ('Views','setDefaultViewName', for_, type, name),
+        )
+        ]
+    if for_ is not None:
+        actions.append
+        (
+        Action(
+        discriminator = None,
+        callable = handler,
+        args = ('Interfaces', 'provideInterface', for_.__module__+'.'+for_.__name__,for_)
+              )
+        )
+        
+
+    return actions
+