Commit 7180f69a authored by Hanno Schlichting's avatar Hanno Schlichting

Removed `OFS.ZDOM`.

parent 74188108
...@@ -44,6 +44,8 @@ Features Added ...@@ -44,6 +44,8 @@ Features Added
Restructuring Restructuring
+++++++++++++ +++++++++++++
- Removed `OFS.ZDOM`.
- Removed the last remaining code to support `SOFTWARE_HOME` and `ZOPE_HOME`. - Removed the last remaining code to support `SOFTWARE_HOME` and `ZOPE_HOME`.
- Removed ZMI controls for restarting the process, these no longer apply when - Removed ZMI controls for restarting the process, these no longer apply when
......
...@@ -36,7 +36,6 @@ from zope.interface import implements ...@@ -36,7 +36,6 @@ from zope.interface import implements
import Folder import Folder
import misc_ import misc_
import ZDOM
from FindSupport import FindSupport from FindSupport import FindSupport
from interfaces import IApplication from interfaces import IApplication
from misc_ import Misc_ from misc_ import Misc_
...@@ -47,7 +46,6 @@ APP_MANAGER = None ...@@ -47,7 +46,6 @@ APP_MANAGER = None
class Application(ApplicationDefaultPermissions, class Application(ApplicationDefaultPermissions,
ZDOM.Root,
Folder.Folder, Folder.Folder,
FindSupport, FindSupport,
): ):
......
...@@ -34,7 +34,6 @@ from OFS.History import Historical ...@@ -34,7 +34,6 @@ from OFS.History import Historical
from OFS.History import html_diff from OFS.History import html_diff
from OFS.role import RoleManager from OFS.role import RoleManager
from OFS.SimpleItem import Item_w__name__ from OFS.SimpleItem import Item_w__name__
from OFS.ZDOM import ElementWithTitle
from webdav.Lockable import ResourceLockedError from webdav.Lockable import ResourceLockedError
from zExceptions import Forbidden from zExceptions import Forbidden
from zExceptions.TracebackSupplement import PathTracebackSupplement from zExceptions.TracebackSupplement import PathTracebackSupplement
...@@ -48,7 +47,6 @@ class DTMLMethod(RestrictedDTML, ...@@ -48,7 +47,6 @@ class DTMLMethod(RestrictedDTML,
HTML, HTML,
Implicit, Implicit,
RoleManager, RoleManager,
ElementWithTitle,
Item_w__name__, Item_w__name__,
Historical, Historical,
Cacheable, Cacheable,
......
...@@ -23,7 +23,6 @@ from Acquisition import aq_base ...@@ -23,7 +23,6 @@ from Acquisition import aq_base
from ExtensionClass import Base from ExtensionClass import Base
from App.special_dtml import DTMLFile from App.special_dtml import DTMLFile
from App.Dialogs import MessageDialog from App.Dialogs import MessageDialog
from Persistence import Persistent
from zExceptions import BadRequest from zExceptions import BadRequest
from zope.interface import implements from zope.interface import implements
from ZPublisher.Converters import type_converters from ZPublisher.Converters import type_converters
...@@ -31,9 +30,8 @@ from ZPublisher.Converters import type_converters ...@@ -31,9 +30,8 @@ from ZPublisher.Converters import type_converters
from OFS.interfaces import IPropertyManager from OFS.interfaces import IPropertyManager
from OFS.PropertySheets import DefaultPropertySheets from OFS.PropertySheets import DefaultPropertySheets
from OFS.PropertySheets import vps from OFS.PropertySheets import vps
from OFS.ZDOM import ElementWithAttributes
class PropertyManager(Base, ElementWithAttributes): class PropertyManager(Base):
""" """
The PropertyManager mixin class provides an object with The PropertyManager mixin class provides an object with
......
...@@ -57,7 +57,6 @@ from OFS.owner import Owned ...@@ -57,7 +57,6 @@ from OFS.owner import Owned
from OFS.CopySupport import CopySource from OFS.CopySupport import CopySource
from OFS.role import RoleManager from OFS.role import RoleManager
from OFS.Traversable import Traversable from OFS.Traversable import Traversable
from OFS.ZDOM import Element
import logging import logging
logger = logging.getLogger() logger = logging.getLogger()
...@@ -67,7 +66,6 @@ class Item(Base, ...@@ -67,7 +66,6 @@ class Item(Base,
CopySource, CopySource,
Tabs, Tabs,
Traversable, Traversable,
Element,
Owned, Owned,
UndoSupport, UndoSupport,
): ):
......
This diff is collapsed.
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