Ticket #16864: patch
File patch, 704 bytes (added by , 13 years ago) |
---|
-
django/contrib/gis/geometry/regex.py
old new 4 4 # to prevent potentially malicious input from reaching the underlying C 5 5 # library. Not a substitute for good Web security programming practices. 6 6 hex_regex = re.compile(r'^[0-9A-F]+$', re.I) 7 wkt_regex = re.compile(r'^(SRID=(?P<srid>\ d+);)?'7 wkt_regex = re.compile(r'^(SRID=(?P<srid>\-?\d+);)?' 8 8 r'(?P<wkt>' 9 9 r'(?P<type>POINT|LINESTRING|LINEARRING|POLYGON|MULTIPOINT|MULTILINESTRING|MULTIPOLYGON|GEOMETRYCOLLECTION)' 10 10 r'[ACEGIMLONPSRUTYZ\d,\.\-\(\) ]+)$',