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
b3e28e6d
Commit
b3e28e6d
authored
Dec 20, 2002
by
Toby Dickenson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
collector 736 - allow marshalling tags to contain a '-' character
parent
ba8bddf6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
doc/CHANGES.txt
doc/CHANGES.txt
+3
-0
lib/python/ZPublisher/HTTPRequest.py
lib/python/ZPublisher/HTTPRequest.py
+2
-2
No files found.
doc/CHANGES.txt
View file @
b3e28e6d
...
...
@@ -25,6 +25,9 @@ Zope Changes
Bugs Fixed
- Collector #736: ZPublisher now allows marshalling tags to contain
a '-'. This is the first step towards a fix for Collector #737
- Collector #714: CopySupport's manage_clone now calls
manage_afterClone in the saem way that manage_pasteObjects does.
...
...
lib/python/ZPublisher/HTTPRequest.py
View file @
b3e28e6d
...
...
@@ -11,7 +11,7 @@
#
##############################################################################
__version__
=
'$Revision: 1.8
5
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.8
6
$'
[
11
:
-
2
]
import
re
,
sys
,
os
,
urllib
,
time
,
random
,
cgi
,
codecs
from
types
import
StringType
,
UnicodeType
...
...
@@ -339,7 +339,7 @@ class HTTPRequest(BaseRequest):
hasattr
=
hasattr
,
getattr
=
getattr
,
setattr
=
setattr
,
search_type
=
re
.
compile
(
'(:[a-zA-Z][a-zA-Z0-9_]+|
\
\
.[xy])$'
).
search
,
search_type
=
re
.
compile
(
'(:[a-zA-Z][
-
a-zA-Z0-9_]+|
\
\
.[xy])$'
).
search
,
):
"""Process request inputs
...
...
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