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
9e5ac014
Commit
9e5ac014
authored
Apr 06, 1999
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a bug that caused non-dtml callable objects to be unusable in
documents.
parent
cc2a94f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
lib/python/OFS/DTMLDocument.py
lib/python/OFS/DTMLDocument.py
+5
-3
No files found.
lib/python/OFS/DTMLDocument.py
View file @
9e5ac014
...
@@ -84,7 +84,7 @@
...
@@ -84,7 +84,7 @@
##############################################################################
##############################################################################
"""DTML Document objects."""
"""DTML Document objects."""
__version__
=
'$Revision: 1.1
8
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.1
9
$'
[
11
:
-
2
]
from
DocumentTemplate.DT_Util
import
InstanceDict
,
TemplateDict
from
DocumentTemplate.DT_Util
import
InstanceDict
,
TemplateDict
from
ZPublisher.Converters
import
type_converters
from
ZPublisher.Converters
import
type_converters
from
Globals
import
HTML
,
HTMLFile
,
MessageDialog
from
Globals
import
HTML
,
HTMLFile
,
MessageDialog
...
@@ -167,12 +167,14 @@ class DTMLDocument(DTMLMethod, PropertyManager):
...
@@ -167,12 +167,14 @@ class DTMLDocument(DTMLMethod, PropertyManager):
Response, and key word arguments."""
Response, and key word arguments."""
kw
[
'document_id'
]
=
self
.
id
kw
[
'document_id'
]
=
self
.
id
kw
[
'document_title'
]
=
self
.
title
kw
[
'document_title'
]
=
self
.
title
if
hasattr
(
self
,
'aq_base'
):
bself
=
self
.
aq_base
else
:
bself
=
self
if
client
is
None
:
if
client
is
None
:
# Called as subtemplate, so don't need error propigation!
# Called as subtemplate, so don't need error propigation!
r
=
apply
(
HTML
.
__call__
,
(
self
,
self
,
REQUEST
),
kw
)
r
=
apply
(
HTML
.
__call__
,
(
self
,
b
self
,
REQUEST
),
kw
)
if
RESPONSE
is
None
:
return
r
if
RESPONSE
is
None
:
return
r
return
decapitate
(
r
,
RESPONSE
)
return
decapitate
(
r
,
RESPONSE
)
try
:
r
=
apply
(
HTML
.
__call__
,
(
self
,
(
client
,
self
),
REQUEST
),
kw
)
try
:
r
=
apply
(
HTML
.
__call__
,
(
self
,
(
client
,
b
self
),
REQUEST
),
kw
)
except
:
except
:
if
self
.
id
()
==
'standard_error_message'
:
if
self
.
id
()
==
'standard_error_message'
:
raise
sys
.
exc_type
,
sys
.
exc_value
,
sys
.
exc_traceback
raise
sys
.
exc_type
,
sys
.
exc_value
,
sys
.
exc_traceback
...
...
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