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
15c34499
Commit
15c34499
authored
Feb 04, 2009
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed rant
parent
09892b36
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
8 deletions
+0
-8
lib/python/Products/PageTemplates/utils.py
lib/python/Products/PageTemplates/utils.py
+0
-8
No files found.
lib/python/Products/PageTemplates/utils.py
View file @
15c34499
...
...
@@ -20,14 +20,6 @@ import re
xml_preamble_reg
=
re
.
compile
(
r'^<\
?xml.*?e
ncoding="(.*?)".*?\
?>
', re.M)
# This regular expression is defined extremely carelessly. It starts
# with a tag beginning with '
meta
' and extends until an arbitrary
# '
content
-
type
' (maybe in a completely unrelated element).
# Tighten the expression a bit.
# Note that using a regular expression at all is unreliable as it does
# not know about e.g. HTML comments. A robust solution would need to
# use an HTML parser to locate the '
meta
' tag.
#http_equiv_reg = re.compile(r'
(
<
meta
.
*
?
http
\
-
equiv
.
*
?
content
-
type
.
*
?
>
)
', re.I|re.M|re.S)
http_equiv_reg = re.compile(r'
(
<
meta
\
s
+
[
^>
]
*
?
http
\
-
equiv
[
^>
]
*
?
content
-
type
.
*
?
>
)
', re.I|re.M|re.S)
http_equiv_reg2 = re.compile(r'
charset
.
*
?
=
.
*
?
(
?
P
<
charset
>
[
\
w
\
-
]
*
)
', re.I|re.M|re.S)
...
...
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