Commit d8a74886 authored by Hanno Schlichting's avatar Hanno Schlichting

Removed Products.Five.fivedirectives.IBridgeDirective - a leftover from the...

Removed Products.Five.fivedirectives.IBridgeDirective - a leftover from the Interface to zope.interface bridging code.
parent b7af591e
...@@ -11,6 +11,9 @@ Trunk (unreleased) ...@@ -11,6 +11,9 @@ Trunk (unreleased)
Restructuring Restructuring
+++++++++++++ +++++++++++++
- Removed Products.Five.fivedirectives.IBridgeDirective - a leftover from the
Interface to zope.interface bridging code.
- Marked the ``<five:implements />`` as officially deprecated. The standard - Marked the ``<five:implements />`` as officially deprecated. The standard
``<class />`` directive allows the same. ``<class />`` directive allows the same.
......
...@@ -18,7 +18,7 @@ $Id$ ...@@ -18,7 +18,7 @@ $Id$
from zope.interface import Interface from zope.interface import Interface
from zope.browserresource.metadirectives import IBasicResourceInformation from zope.browserresource.metadirectives import IBasicResourceInformation
from zope.security.zcml import Permission from zope.security.zcml import Permission
from zope.configuration.fields import GlobalObject, Tokens, PythonIdentifier from zope.configuration.fields import GlobalObject, Tokens
from zope.configuration.fields import Bool from zope.configuration.fields import Bool
from zope.schema import ASCII, TextLine from zope.schema import ASCII, TextLine
...@@ -60,26 +60,6 @@ class IDeprecatedManageAddDeleteDirective(Interface): ...@@ -60,26 +60,6 @@ class IDeprecatedManageAddDeleteDirective(Interface):
) )
class IBridgeDirective(Interface):
"""Bridge from a Zope 2 interface to an equivalent Zope3 interface.
"""
zope2 = GlobalObject(
title=u"Zope2",
required=True
)
package = GlobalObject(
title=u"Target package",
required=True
)
name = PythonIdentifier(
title=u"Zope3 Interface name",
description=u"If not supplied, the new interface will have the same "
u"name as the source interface.",
required=False
)
class IPagesFromDirectoryDirective(IBasicResourceInformation): class IPagesFromDirectoryDirective(IBasicResourceInformation):
"""Register each file in a skin directory as a page resource """Register each file in a skin directory as a page resource
""" """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment