Changes between Version 12 and Version 13 of SessionMessages


Ignore:
Timestamp:
Oct 10, 2009, 11:30:57 AM (15 years ago)
Author:
Tobias McNulty
Comment:

add 'avoids pickling' to list of criteria

Legend:

Unmodified
Added
Removed
Modified
  • SessionMessages

    v12 v13  
    3434 * Don't lose messages if they're not displayed to the user (lazy message loading)
    3535 * Signs cookie-based messages
     36 * Avoids [http://docs.python.org/library/pickle.html pickling] because of the obvious security concerns
    3637 * Provide a standard, intuitive interface so that reusable apps can provide feedback related to the current session
    3738 * Needs community approval/support
     
    4041=== Available Options ===
    4142
    42 ||'''Name and Link'''||'''Anonymous user support'''||'''Minimal DB Access'''||'''Supports messages > 4kb'''||'''Lazy loads messages'''||'''Signed cookies'''||'''Standard interface'''||
    43 ||[http://code.google.com/p/django-notify/ django-notify]||yes||yes||yes||yes||yes||yes||
    44 ||[http://github.com/danielfm/django-flash django-flash]||yes||sometimes||sometimes||no||yes||no||
    45 ||[http://github.com/leah/django-flash-status django-flash-status]||yes||sometimes||sometimes||no||yes||yes||
    46 ||[http://github.com/SeanOC/django-cnotes django-cnotes]||yes||yes||no||no||yes||yes||
     43||'''Name and Link'''||'''Anonymous user support'''||'''Minimal DB Access'''||'''Supports messages > 4kb'''||'''Lazy loads messages'''||'''Signed cookies'''||'''Avoids pickling'''||'''Standard interface'''||
     44||[http://code.google.com/p/django-notify/ django-notify]||yes||yes||yes||yes||yes||no||yes||
     45||[http://github.com/danielfm/django-flash django-flash]||yes||sometimes||sometimes||no||yes||no||no||
     46||[http://github.com/leah/django-flash-status django-flash-status]||yes||sometimes||sometimes||no||yes||no||yes||
     47||[http://github.com/SeanOC/django-cnotes django-cnotes]||yes||yes||no||no||yes||no||yes||
    4748
    4849 * '''yes''' means yes, always
Back to Top