Index: openacs-4/packages/acs-messaging/www/doc/design.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-messaging/www/doc/design.adp,v diff -u -r1.4 -r1.5 --- openacs-4/packages/acs-messaging/www/doc/design.adp 4 Apr 2018 18:51:56 -0000 1.4 +++ openacs-4/packages/acs-messaging/www/doc/design.adp 1 May 2018 08:34:42 -0000 1.5 @@ -16,9 +16,9 @@ and retrieval of messages. We take messages to be objects that consist of a sender (an ACS party), a text body, an optional reference to a parent message, optional file attachments, and some -miscellaneous auditing data.With these constraining -set of semantics, we can build a library of component functionality -to operate on messages. For example: code that displays a message, +miscellaneous auditing data.With these constraining set of +semantics, we can build a library of component functionality to +operate on messages. For example: code that displays a message, forwards a message, compiles a set of messages into a digest, displays a specific attachment, etc., This functionality can then be reused across messaging applications such as bboard, webmail, @@ -53,7 +53,8 @@ ACS Messaging provides the acs_messages_all view as the primary mechanism for message queries. -
create or replace view acs_messages_all as
+

+create or replace view acs_messages_all as
     select m.message_id, m.reply_to, o.context_id, r.title, r.publish_date,
            r.mime_type, r.content, o.creation_user
     ...