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
4e09ff2a
Commit
4e09ff2a
authored
Sep 02, 1998
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Turn off error handling machinery for sub-documents (client is None)
parent
9fcc5a25
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
lib/python/OFS/Document.py
lib/python/OFS/Document.py
+8
-2
No files found.
lib/python/OFS/Document.py
View file @
4e09ff2a
"""Document object"""
"""Document object"""
__version__
=
'$Revision: 1.6
1
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.6
2
$'
[
11
:
-
2
]
from
Globals
import
HTML
,
HTMLFile
,
MessageDialog
from
Globals
import
HTML
,
HTMLFile
,
MessageDialog
from
string
import
join
,
split
,
strip
,
rfind
,
atoi
,
lower
from
string
import
join
,
split
,
strip
,
rfind
,
atoi
,
lower
...
@@ -70,6 +70,12 @@ class Document(cDocumentTemplate.cDocument, HTML, Explicit,
...
@@ -70,6 +70,12 @@ class Document(cDocumentTemplate.cDocument, HTML, Explicit,
""" """
""" """
kw
[
'document_id'
]
=
self
.
id
kw
[
'document_id'
]
=
self
.
id
kw
[
'document_title'
]
=
self
.
title
kw
[
'document_title'
]
=
self
.
title
if
client
is
None
:
# Called as subtemplate, so don't need error propigation!
r
=
apply
(
HTML
.
__call__
,
(
self
,
client
,
REQUEST
),
kw
)
if
RESPONSE
is
None
:
return
r
return
decapitate
(
r
,
RESPONSE
)
try
:
try
:
try
:
r
=
apply
(
HTML
.
__call__
,
(
self
,
client
,
REQUEST
),
kw
)
try
:
r
=
apply
(
HTML
.
__call__
,
(
self
,
client
,
REQUEST
),
kw
)
except
:
except
:
...
@@ -78,7 +84,7 @@ class Document(cDocumentTemplate.cDocument, HTML, Explicit,
...
@@ -78,7 +84,7 @@ class Document(cDocumentTemplate.cDocument, HTML, Explicit,
error_type
=
sys
.
exc_type
error_type
=
sys
.
exc_type
error_value
=
sys
.
exc_value
error_value
=
sys
.
exc_value
tb
=
sys
.
exc_traceback
tb
=
sys
.
exc_traceback
if
lower
(
error_type
)
in
(
'redirect'
,):
if
lower
(
error_type
)
in
(
'redirect'
,):
raise
error_type
,
error_value
,
tb
raise
error_type
,
error_value
,
tb
if
(
type
(
error_value
)
is
type
(
''
)
and
if
(
type
(
error_value
)
is
type
(
''
)
and
regex
.
search
(
'[a-zA-Z]>'
,
error_value
)
>
0
):
regex
.
search
(
'[a-zA-Z]>'
,
error_value
)
>
0
):
...
...
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