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
2a600bb2
Commit
2a600bb2
authored
Jan 11, 2001
by
Chris McDonough
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed things which used HTMLFile to use DTMLFile.
parent
4a71358e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
lib/python/OFS/SimpleItem.py
lib/python/OFS/SimpleItem.py
+3
-3
lib/python/OFS/Uninstalled.py
lib/python/OFS/Uninstalled.py
+1
-1
No files found.
lib/python/OFS/SimpleItem.py
View file @
2a600bb2
...
...
@@ -89,8 +89,8 @@ Aqueduct database adapters, etc.
This module can also be used as a simple template for implementing new
item types.
$Id: SimpleItem.py,v 1.8
2 2001/01/08 22:46:58 brian
Exp $'''
__version__
=
'$Revision: 1.8
2
$'
[
11
:
-
2
]
$Id: SimpleItem.py,v 1.8
3 2001/01/11 21:44:44 chrism
Exp $'''
__version__
=
'$Revision: 1.8
3
$'
[
11
:
-
2
]
import
ts_regex
,
sys
,
Globals
,
App
.
Management
,
Acquisition
,
App
.
Undo
import
AccessControl.Role
,
AccessControl
.
Owned
,
App
.
Common
...
...
@@ -203,7 +203,7 @@ class Item(Base, Resource, CopySource, App.Management.Tabs, Traversable,
# My sub-objects as used by the tree tag
return
()
_manage_editedDialog
=
Globals
.
H
TMLFile
(
'dtml/editedDialog'
,
globals
())
_manage_editedDialog
=
Globals
.
D
TMLFile
(
'dtml/editedDialog'
,
globals
())
def
manage_editedDialog
(
self
,
REQUEST
,
**
args
):
return
apply
(
self
.
_manage_editedDialog
,(
self
,
REQUEST
),
args
)
...
...
lib/python/OFS/Uninstalled.py
View file @
2a600bb2
...
...
@@ -109,7 +109,7 @@ class BrokenClass(Acquisition.Explicit, SimpleItem.Item,
return
BrokenClass
.
inheritedAttribute
(
'__getattr__'
)(
self
,
name
)
raise
AttributeError
,
name
manage
=
manage_main
=
Globals
.
H
TMLFile
(
'dtml/brokenEdit'
,
globals
())
manage
=
manage_main
=
Globals
.
D
TMLFile
(
'dtml/brokenEdit'
,
globals
())
manage_workspace
=
manage
...
...
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