Opened 16 years ago

Closed 14 years ago

#6955 closed (wontfix)

Unicode XML breaks RelaxNGCompact validator

Reported by: Jeremy Dunck Owned by: Jeremy Dunck
Component: Validators Version: dev
Severity: Keywords: unicode
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: yes Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In Django, the RelaxNGCompact validator writes out the field data to a temp file, then shells out to jing to perform RNG validation on that XML.

It's been broken for unicode data since the unicode branch landed. I guess not that many people use the RelaxNGCompact validator. ;-)

The fix is trivial-- just call smart_str on field data on its way into the file.

I'd provide tests, but I'm sort of overworked at the moment. :-/

Attachments (1)

rng-validator-unicode.diff (545 bytes ) - added by Jeremy Dunck 16 years ago.
Needs a test; just pointing out the problem for now. :-/

Download all attachments as: .zip

Change History (4)

by Jeremy Dunck, 16 years ago

Attachment: rng-validator-unicode.diff added

Needs a test; just pointing out the problem for now. :-/

comment:1 by Jeremy Dunck, 16 years ago

Owner: changed from nobody to Jeremy Dunck
Status: newassigned

comment:2 by Marc Fargas, 16 years ago

Triage Stage: UnreviewedAccepted

comment:3 by Jeremy Dunck, 14 years ago

Resolution: wontfix
Status: assignedclosed

At some point after I logged this, the XML validator was removed from trunk. Closing this as wontfix.

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