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
35accf50
Commit
35accf50
authored
Sep 25, 2002
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Collector #587: fixed wrong migration to string methods
parent
06b8b283
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lib/python/OFS/DTMLMethod.py
lib/python/OFS/DTMLMethod.py
+4
-4
No files found.
lib/python/OFS/DTMLMethod.py
View file @
35accf50
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
##############################################################################
##############################################################################
"""DTML Method objects."""
"""DTML Method objects."""
__version__
=
'$Revision: 1.
79
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
80
$'
[
11
:
-
2
]
import
History
import
History
from
Globals
import
HTML
,
DTMLFile
,
MessageDialog
from
Globals
import
HTML
,
DTMLFile
,
MessageDialog
...
@@ -368,14 +368,14 @@ def decapitate(html, RESPONSE=None):
...
@@ -368,14 +368,14 @@ def decapitate(html, RESPONSE=None):
headers.append(header)
headers.append(header)
spos = m.end() + 1
spos = m.end() + 1
while spos < len(html) and html[spos] in '
\
t
':
while spos < len(html) and html[spos] in '
\
t
':
eol =
find(html,
'
\
r
\
n
', spos)
eol =
html.find(
'
\
r
\
n
', spos)
if eol <> -1:
if eol <> -1:
eolen = 2
eolen = 2
else:
else:
eol =
find(html,
'
\
n
', spos)
eol =
html.find(
'
\
n
', spos)
if eol < 0: return html
if eol < 0: return html
eolen = 1
eolen = 1
header.append(
strip(html[spos:eol]
))
header.append(
html[spos:eol].strip(
))
spos = eol + eolen
spos = eol + eolen
if RESPONSE is not None:
if RESPONSE is not None:
for header in headers:
for header in headers:
...
...
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