datatracker/ietf/message
2020-11-09 19:41:12 +00:00
..
management Removed all __future__ imports. 2020-03-05 23:53:42 +00:00
migrations Added matching indexes to a number of models with ordering by multiple keys. 2020-11-09 19:41:12 +00:00
__init__.py Actually add the message app 2012-01-24 17:42:19 +00:00
admin.py Changed some fields to raw_id_fields in the MessageAdmin. 2020-04-03 16:29:54 +00:00
models.py Added matching indexes to a number of models with ordering by multiple keys. 2020-11-09 19:41:12 +00:00
resources.py Changed the API to not export saved Message instances (they can contain information such as draft confirmation codes and password reset codes that should not be generally visible). 2020-08-15 09:37:05 +00:00
tests.py Refactored many instances of msg.get_payload(decode=True).decode('utf-8') and similar to get_payload_text(msg), which uses msg.get_charset() to get the actual charset to do the decoding, in a consistent manner. Also removed some instances of force_str, but more remain. 2020-05-16 20:20:05 +00:00
utils.py Refactored many instances of msg.get_payload(decode=True).decode('utf-8') and similar to get_payload_text(msg), which uses msg.get_charset() to get the actual charset to do the decoding, in a consistent manner. Also removed some instances of force_str, but more remain. 2020-05-16 20:20:05 +00:00
views.py The context_instance parameter to render_to_response() and render_to_string() is now deprecated. Fixed this, and generally changed the idiom render_to_response('template.html', {}, RequestContext(request)) to the newer and simpler render(request, 'template.html', {}). About 200 instances. 2017-01-09 21:26:30 +00:00