Changes between Version 14 and Version 15 of SessionMessages


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

add message classes to list of criteria

Legend:

Unmodified
Added
Removed
Modified
  • SessionMessages

    v14 v15  
    2727=== Criteria ===
    2828
    29 Criteria necessary for inclusion in the core:
     29Technical criteria necessary for inclusion in the core:
    3030
    3131 * Support message passing for anonymous users
     
    3535 * Avoids [http://docs.python.org/library/pickle.html pickling] because of the obvious security concerns
    3636 * Provide a standard, intuitive interface so that reusable apps can provide feedback related to the current session
     37 * Supports different, configurable "classes" (e.g., info, warning, error, etc.) of messages
     38
     39Community criteria necessary for inclusion in the core:
    3740 * Needs community approval/support
    3841 * Needs to be the "de facto" standard implementation
     
    4043=== Available Options ===
    4144
    42 ||'''Name and Link'''||'''Anonymous user support'''||'''Session Fallback'''||'''Lazy loads messages'''||'''Signed cookies'''||'''Avoids pickling'''||'''Standard interface'''||
    43 ||[http://code.google.com/p/django-notify/ django-notify]||yes||yes||yes||yes||no||yes||
    44 ||[http://github.com/danielfm/django-flash django-flash]||yes||no||no||yes||no||no||
    45 ||[http://github.com/leah/django-flash-status django-flash-status]||yes||no||no||yes||no||yes||
    46 ||[http://github.com/SeanOC/django-cnotes django-cnotes]||yes||no||no||yes||no||yes||
     45||'''Name and Link'''||'''Anonymous user support'''||'''Session Fallback'''||'''Lazy loads messages'''||'''Signed cookies'''||'''Avoids pickling'''||'''Standard interface'''||'''Classed Messages'''||
     46||[http://code.google.com/p/django-notify/ django-notify]||yes||yes||yes||yes||no||yes||yes (via "tags")||
     47||[http://github.com/danielfm/django-flash django-flash]||yes||no||no||yes||no||no||yes (but not in a standard way)||
     48||[http://github.com/leah/django-flash-status django-flash-status]||yes||no||no||yes||no||yes||yes, "errors" or "statuses"||
     49||[http://github.com/SeanOC/django-cnotes django-cnotes]||yes||no||no||yes||no||yes||no||
    4750
    4851 * '''yes''' means yes, always
Back to Top