Changes between Version 7 and Version 8 of S3/Notifications


Ignore:
Timestamp:
09/05/13 10:49:46 (11 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S3/Notifications

    v7 v8  
    22[[TOC]]
    33
    4 The S3Notifications framework is used to send automatic update notifications to subscribers.
     4The {{{S3Notifications}}} framework is used to send automatic update notifications to subscribers.
    55
    66== Subscriptions ==
    77
    8 Person Entities (e.g. users) can subscribe to get notified when new records get created or records get updated in a resource. Subscriptions can be filtered (using saved filters) to limit notifications to records matching certain filter criteria.
     8Users can subscribe to get notified when new records get created or records get updated in a resource.
     9
     10Subscriptions can be filtered (using saved filters) to limit notifications to records matching certain filter criteria.
    911
    1012=== Data Model ===
     
    7779
    7880||'''Setting'''||'''Explanation'''||
    79 ||settings.msg.notify_renderer||Pre-renderer function, render(resource, data, meta_data, format=None)||
    80 ||settings.msg.notify_subject||Template for the subject line of notification emails||
    81 ||settings.msg.notify_email_format||Preferred email format (can be overridden per subscription) - "html" or "text"||
     81||'''settings.msg.notify_renderer'''||Pre-renderer function, render(resource, data, meta_data, format=None)||
     82||'''settings.msg.notify_subject'''||Template for the subject line of notification emails||
     83||'''settings.msg.notify_email_format'''||Preferred email format (can be overridden per subscription) - "html" or "text"||
    8284
    8385==== Per Resource ====
    8486
     87  - ''with s3db.configure()''
     88
    8589||'''Setting'''||'''Explanation'''||
    86 ||notify_fields||Fields to extract for notification emails (like list_fields)||
    87 ||notify_renderer||Pre-renderer function, see settings.msg.notify_renderer||
    88 ||notify_template||Prefix for the message template(s)||
     90||'''notify_fields'''||Fields to extract for notification emails (like list_fields)||
     91||'''notify_renderer'''||Pre-renderer function, see settings.msg.notify_renderer||
     92||'''notify_template'''||Prefix for the message template(s)||
    8993
    9094----