Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
7180f69a
Commit
7180f69a
authored
Jul 03, 2011
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed `OFS.ZDOM`.
parent
74188108
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
3 additions
and
577 deletions
+3
-577
doc/CHANGES.rst
doc/CHANGES.rst
+2
-0
src/OFS/Application.py
src/OFS/Application.py
+0
-2
src/OFS/DTMLMethod.py
src/OFS/DTMLMethod.py
+0
-2
src/OFS/PropertyManager.py
src/OFS/PropertyManager.py
+1
-3
src/OFS/SimpleItem.py
src/OFS/SimpleItem.py
+0
-2
src/OFS/ZDOM.py
src/OFS/ZDOM.py
+0
-568
No files found.
doc/CHANGES.rst
View file @
7180f69a
...
...
@@ -44,6 +44,8 @@ Features Added
Restructuring
+++++++++++++
- Removed `OFS.ZDOM`.
- Removed the last remaining code to support `SOFTWARE_HOME` and `ZOPE_HOME`.
- Removed ZMI controls for restarting the process, these no longer apply when
...
...
src/OFS/Application.py
View file @
7180f69a
...
...
@@ -36,7 +36,6 @@ from zope.interface import implements
import
Folder
import
misc_
import
ZDOM
from
FindSupport
import
FindSupport
from
interfaces
import
IApplication
from
misc_
import
Misc_
...
...
@@ -47,7 +46,6 @@ APP_MANAGER = None
class
Application
(
ApplicationDefaultPermissions
,
ZDOM
.
Root
,
Folder
.
Folder
,
FindSupport
,
):
...
...
src/OFS/DTMLMethod.py
View file @
7180f69a
...
...
@@ -34,7 +34,6 @@ from OFS.History import Historical
from
OFS.History
import
html_diff
from
OFS.role
import
RoleManager
from
OFS.SimpleItem
import
Item_w__name__
from
OFS.ZDOM
import
ElementWithTitle
from
webdav.Lockable
import
ResourceLockedError
from
zExceptions
import
Forbidden
from
zExceptions.TracebackSupplement
import
PathTracebackSupplement
...
...
@@ -48,7 +47,6 @@ class DTMLMethod(RestrictedDTML,
HTML
,
Implicit
,
RoleManager
,
ElementWithTitle
,
Item_w__name__
,
Historical
,
Cacheable
,
...
...
src/OFS/PropertyManager.py
View file @
7180f69a
...
...
@@ -23,7 +23,6 @@ from Acquisition import aq_base
from
ExtensionClass
import
Base
from
App.special_dtml
import
DTMLFile
from
App.Dialogs
import
MessageDialog
from
Persistence
import
Persistent
from
zExceptions
import
BadRequest
from
zope.interface
import
implements
from
ZPublisher.Converters
import
type_converters
...
...
@@ -31,9 +30,8 @@ from ZPublisher.Converters import type_converters
from
OFS.interfaces
import
IPropertyManager
from
OFS.PropertySheets
import
DefaultPropertySheets
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
...
...
src/OFS/SimpleItem.py
View file @
7180f69a
...
...
@@ -57,7 +57,6 @@ from OFS.owner import Owned
from
OFS.CopySupport
import
CopySource
from
OFS.role
import
RoleManager
from
OFS.Traversable
import
Traversable
from
OFS.ZDOM
import
Element
import
logging
logger
=
logging
.
getLogger
()
...
...
@@ -67,7 +66,6 @@ class Item(Base,
CopySource
,
Tabs
,
Traversable
,
Element
,
Owned
,
UndoSupport
,
):
...
...
src/OFS/ZDOM.py
deleted
100644 → 0
View file @
74188108
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment