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
1626b81c
Commit
1626b81c
authored
Jul 10, 2000
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated from 2.2 branch
parent
bc02ebac
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
17 deletions
+17
-17
lib/python/OFS/DTMLDocument.py
lib/python/OFS/DTMLDocument.py
+10
-10
lib/python/OFS/DTMLMethod.py
lib/python/OFS/DTMLMethod.py
+7
-7
No files found.
lib/python/OFS/DTMLDocument.py
View file @
1626b81c
...
...
@@ -84,7 +84,7 @@
##############################################################################
"""DTML Document objects."""
__version__
=
'$Revision: 1.3
5
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.3
6
$'
[
11
:
-
2
]
from
DocumentTemplate.DT_Util
import
InstanceDict
,
TemplateDict
from
ZPublisher.Converters
import
type_converters
from
Globals
import
HTML
,
HTMLFile
,
MessageDialog
...
...
@@ -153,12 +153,14 @@ class DTMLDocument(PropertyManager, DTMLMethod):
Response, and key word arguments."""
kw
[
'document_id'
]
=
self
.
id
kw
[
'document_title'
]
=
self
.
title
if
hasattr
(
self
,
'aq_explicit'
):
bself
=
self
.
aq_explicit
if
hasattr
(
self
,
'aq_explicit'
):
bself
=
self
.
aq_explicit
else
:
bself
=
self
security
=
getSecurityManager
()
security
.
addContext
(
self
)
try
:
try
:
if
client
is
None
:
# Called as subtemplate, so don't need error propigation!
r
=
apply
(
HTML
.
__call__
,
(
self
,
bself
,
REQUEST
),
kw
)
...
...
@@ -166,21 +168,19 @@ class DTMLDocument(PropertyManager, DTMLMethod):
return
decapitate
(
r
,
RESPONSE
)
r
=
apply
(
HTML
.
__call__
,
(
self
,
(
client
,
bself
),
REQUEST
),
kw
)
if
type
(
r
)
is
not
type
(
''
):
return
r
if
RESPONSE
is
None
:
return
r
finally
:
security
.
removeContext
(
self
)
if
type
(
r
)
is
not
type
(
''
):
return
r
if
RESPONSE
is
None
:
return
r
hh
=
RESPONSE
.
headers
.
has_key
if
not
(
hh
(
'content-type'
)
or
hh
(
'Content-Type'
)):
have_key
=
RESPONSE
.
headers
.
has_key
if
not
(
have_key
(
'content-type'
)
or
have_key
(
'Content-Type'
)):
if
self
.
__dict__
.
has_key
(
'content_type'
):
c
=
self
.
content_type
else
:
c
,
e
=
guess_content_type
(
self
.
__name__
,
r
)
RESPONSE
.
setHeader
(
'Content-Type'
,
c
)
return
r
return
decapitate
(
r
,
RESPONSE
)
...
...
lib/python/OFS/DTMLMethod.py
View file @
1626b81c
...
...
@@ -84,7 +84,7 @@
##############################################################################
"""DTML Method objects."""
__version__
=
'$Revision: 1.5
0
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.5
1
$'
[
11
:
-
2
]
import
History
from
Globals
import
HTML
,
HTMLFile
,
MessageDialog
...
...
@@ -166,16 +166,16 @@ class DTMLMethod(HTML, Acquisition.Implicit, RoleManager,
r
=
apply
(
HTML
.
__call__
,
(
self
,
client
,
REQUEST
),
kw
)
if
type
(
r
)
is
not
type
(
''
):
return
r
if
RESPONSE
is
None
:
return
r
finally
:
security
.
removeContext
(
self
)
# Ick. I don't like this. But someone can override it with
# a header if they have to.
hh
=
RESPONSE
.
headers
.
has_key
if
not
(
hh
(
'content-type'
)
or
hh
(
'Content-Type'
)):
c
,
e
=
guess_content_type
(
self
.
__name__
,
r
)
have_key
=
RESPONSE
.
headers
.
has_key
if
not
(
have_key
(
'content-type'
)
or
have_key
(
'Content-Type'
)):
if
self
.
__dict__
.
has_key
(
'content_type'
):
c
=
self
.
content_type
else
:
c
,
e
=
guess_content_type
(
self
.
__name__
,
r
)
RESPONSE
.
setHeader
(
'Content-Type'
,
c
)
return
decapitate
(
r
,
RESPONSE
)
...
...
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