This document introduces a simple messages framework for Tornado based on Django's messages framework. It allows flashing messages to users after certain actions. The key points are:
1) Messages are stored in cookies to prevent them from being lost on page redirects or reloads.
2) A Message object is created for each request to store messages in a request property.
3) On redirects, the Message object updates the cookies to write any new messages or clear old ones.
4) A template tag iterates through the messages and displays them, clearing the messages from the cookies.