Changes between Version 22 and Version 23 of SessionMessages
- Timestamp:
- Oct 10, 2009, 8:04:13 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SessionMessages
v22 v23 40 40 * Uses the session only as a fallback: Avoid database/cache queries if possible, but support larger messages that don't fit in a cookie (> 4kb) when needed 41 41 * Don't lose messages if they're not displayed to the user (lazy message loading) 42 * Sign scookie-based messages43 * Avoid s[http://docs.python.org/library/pickle.html pickling] because of the obvious security concerns42 * Sign cookie-based messages 43 * Avoid [http://docs.python.org/library/pickle.html pickling] because of the obvious security concerns 44 44 * Provide a standard, intuitive interface so that reusable apps can provide feedback related to the current session 45 * Support sdifferent "classes" (e.g., info, warning, error, etc.) of messages, with the ability to specify custom classes as needed45 * Support different "classes" (e.g., info, warning, error, etc.) of messages, with the ability to specify custom classes as needed 46 46 47 47 Community criteria necessary for inclusion in the core: