Commit b3e28e6d authored by Toby Dickenson's avatar Toby Dickenson

collector 736 - allow marshalling tags to contain a '-' character

parent ba8bddf6
......@@ -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.
......
......@@ -11,7 +11,7 @@
#
##############################################################################
__version__='$Revision: 1.85 $'[11:-2]
__version__='$Revision: 1.86 $'[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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment