Changes between Initial Version and Version 1 of Ticket #24985
- Timestamp:
- Jun 15, 2015, 11:19:20 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24985 – Description
initial v1 1 I have some data which comes from log files that I'd like to put into a RSS feed, unfortunately due to the nature of this data it sometimes contains control characters e.g. \0001 \0003 , this causes it to fail RSS feed reader validation due to these characters (although valid utf-8) are not allowed [1].1 I have some data which comes from log files that I'd like to put into a RSS feed, unfortunately due to the nature of this data it sometimes contains control characters e.g. \0001 \0003 , this causes it to fail RSS feed reader validation due to these characters (although valid utf-8) are not allowed (1). 2 2 3 3 I'm not sure if this is something that should be fixed in this module, perhaps in sax/saxutils or in somewhere like django.utils.encoding force_text ? … … 5 5 At the moment I'm working around this issue with a regex which replaces this range of chars. 6 6 7 [1]http://www.w3.org/TR/REC-xml/#charsets7 (1) http://www.w3.org/TR/REC-xml/#charsets