Opened 15 years ago

Closed 14 years ago

Last modified 13 years ago

#12119 closed (fixed)

django.utils.text.smart_split() does not handle multiple quoted strings joined by non-whitespace characters properly

Reported by: Johannes Dollinger Owned by: nobody
Component: Template system Version: 1.1
Severity: Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

>>> from django.utils.text import smart_split
>>> list(smart_split("cut:','|cut:' '"))
[u"cut:','|cut:'", u"'"]

This is not a duplicate of #8902 or #10001 (as those have been fixed in r10462).
It might be considered a duplicate of #6271, but the scope of that ticket is "fix all template tags" while this ticket should just be about a particular smart_split() bug.

I'll attach a patch that only modifies the regexp.

Attachments (1)

12119.smart_split_with_space.diff (1.2 KB ) - added by Johannes Dollinger 15 years ago.

Download all attachments as: .zip

Change History (6)

by Johannes Dollinger, 15 years ago

comment:1 by Russell Keith-Magee, 14 years ago

milestone: 1.2
Triage Stage: UnreviewedAccepted

comment:2 by Alex Gaynor, 14 years ago

Triage Stage: AcceptedReady for checkin

comment:3 by jkocherhans, 14 years ago

Resolution: fixed
Status: newclosed

(In [12581]) Fixed #12119. Changed smart_split to stop splitting on whitespace in quotes. Thanks, emulbreh.

comment:4 by jkocherhans, 14 years ago

(In [12582]) [1.1.X] Fixed #12119. Changed smart_split to stop splitting on whitespace in quotes. Backport of r12581 from trunk.

comment:5 by Jacob, 13 years ago

milestone: 1.2

Milestone 1.2 deleted

Note: See TracTickets for help on using tickets.
Back to Top