[Zope3-checkins] SVN: Zope3/branches/philikon-simplify-skinning/src/zope/app/ Add BBB comments

Philipp von Weitershausen philikon at philikon.de
Sun Feb 19 10:51:22 EST 2006


Log message for revision 41703:
  Add BBB comments
  

Changed:
  UU  Zope3/branches/philikon-simplify-skinning/src/zope/app/component/fields.py
  U   Zope3/branches/philikon-simplify-skinning/src/zope/app/publisher/browser/metadirectives.py

-=-
Modified: Zope3/branches/philikon-simplify-skinning/src/zope/app/component/fields.py
===================================================================
--- Zope3/branches/philikon-simplify-skinning/src/zope/app/component/fields.py	2006-02-19 15:43:05 UTC (rev 41702)
+++ Zope3/branches/philikon-simplify-skinning/src/zope/app/component/fields.py	2006-02-19 15:51:22 UTC (rev 41703)
@@ -21,10 +21,14 @@
 from zope.component.exceptions import ComponentLookupError
 from zope.configuration.exceptions import ConfigurationError
 from zope.configuration.fields import GlobalObject
-from zope.publisher.interfaces.browser import ILayer
 
 from zope.app import zapi
 
+# BBB 2006/02/18, to be removed after 12 months
+import zope.deprecation
+zope.deprecation.__show__.off()
+from zope.publisher.interfaces import ILayer
+zope.deprecation.__show__.on()
 
 class LayerField(GlobalObject):
     r"""This field represents a layer.


Property changes on: Zope3/branches/philikon-simplify-skinning/src/zope/app/component/fields.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope3/branches/philikon-simplify-skinning/src/zope/app/publisher/browser/metadirectives.py
===================================================================
--- Zope3/branches/philikon-simplify-skinning/src/zope/app/publisher/browser/metadirectives.py	2006-02-19 15:43:05 UTC (rev 41702)
+++ Zope3/branches/philikon-simplify-skinning/src/zope/app/publisher/browser/metadirectives.py	2006-02-19 15:51:22 UTC (rev 41703)
@@ -566,6 +566,7 @@
 # misc. directives
 #
 
+# BBB 2006/02/18, to be removed after 12 months
 class ILayerDirective(Interface):
     """Defines a browser layer
 
@@ -605,6 +606,7 @@
         required=False
         )
 
+# BBB 2006/02/18, to be removed after 12 months
 class ISkinDirective(Interface):
     """Defines a browser skin
 



More information about the Zope3-Checkins mailing list