Changes between Version 22 and Version 23 of SessionMessages


Ignore:
Timestamp:
Oct 10, 2009, 8:04:13 PM (15 years ago)
Author:
Tobias McNulty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SessionMessages

    v22 v23  
    4040 * 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
    4141 * Don't lose messages if they're not displayed to the user (lazy message loading)
    42  * Signs cookie-based messages
    43  * Avoids [http://docs.python.org/library/pickle.html pickling] because of the obvious security concerns
     42 * Sign cookie-based messages
     43 * Avoid [http://docs.python.org/library/pickle.html pickling] because of the obvious security concerns
    4444 * Provide a standard, intuitive interface so that reusable apps can provide feedback related to the current session
    45  * Supports different "classes" (e.g., info, warning, error, etc.) of messages, with the ability to specify custom classes as needed
     45 * Support different "classes" (e.g., info, warning, error, etc.) of messages, with the ability to specify custom classes as needed
    4646
    4747Community criteria necessary for inclusion in the core:
Back to Top