1.2. Design Document

1.2.1. Essentials

1.2.2. Introduction

General Comments enables all users in the community to add a comment to any object in the system. Any comment can have files or hyperlinks attached.

This package is intended to utilize the users' engagement in the community by letting them voice their opinion on any topic (object) on the site. Commenting an article, a press release or any other object is never more than a click away.

Administrators can choose to put comments on hold until they've been approved or moderated.

User feedback is an invaluable resource for improvements. For example, the usage of General Comments on documentation not only allows feedback, it can shape, extend and refine draft ideas before they are taken to the next level.

1.2.3. Historical Considerations

General Comments in ACS 4.0 differs from previous versions by utilizing the ACS Object system, introduced in 4.0. The data-model has been changed to accommodate this adoption.

In ACS 3.x, general comments did not have revisioning. Let's assume that in an ACS 3.x installation, the policy for comments was set to "closed", meaning comments must be approved by an administrator before it goes live. The following unwanted scenario could occur:

General Comments implements the revisioning feature provided by the Content Repository. Users are able to view all of their revisions for a comment, along with an indication of which revision is live. This allows the contents of an older revision to be seen by the public while a newer revision is awaiting administrative approval.

1.2.4. Competitive Analysis

not available

1.2.5. Design Tradeoffs

not available

1.2.6. API

Tcl API

There is one core procedure, general_comments_get_comments, that will show comments on an object and make appropriate links to files from the general-comments package for recording and editing user comments. An optional return_url can be specified which will be provided as a link to the user within the general-comments pages. This is useful for the user to return to the original page after making a comment.

The other procedure, general_comments_create_link, is a wrapper procedure that returns an HTML fragment for a link which points to the location of the mounted general_comments package. There are various switches that will be useful to package developers:

A problem that may occur is when any of the two tcl procedures are called when the general-comments package is not mounted. Both general_comments_get_comments and general_comments_create_link needs to find out the location of the mounted general-comments instance to generate correct links. In this case, both procedures will return nothing and log a notice.

Note: In the alpha release of general-comments, the tcl procedures were defined within a namespace and encountered problems with the API browser not being able to display them properly. These procedures have now been moved out of the namespace and the old ones are marked as deprecated. The final version will completely remove all traces of the namespace procedures.

PL/SQL API

None. Uses PL/SQL functions provided by ACS Messaging.

1.2.7. Data Model Discussion

The majority of the functionality of general comments has been merged with acs-messaging. Comments are stored as acs-messages.

The general_comments table extends acs_messages to provide categorization of comments on a particular object. general_comments also stores the object_id of the object the comment refers to. Relationships from attachments to acs-message is done by using the cr_items.parent_id column.

A general-comment can be associated with any object in the system by using the general_comments.object_id column. Because each comment is itself an object, we could implement comments on comments. However, this functionality is not needed in the general-comments model and the UI does not support comments on comments.

There are three types of attachments a user can create: file, image, and url. The underlying data representation of an attachment is a content item with different content_types. File attachments are stored with a content_revision type. Image attachments are stored with a image type. Url attachments are stored with a content_extlink type.

One problem we face is how to allow designers to modify the presentation of the comments on an object without modifying tcl code. The proc general_comments_get_comments has html code which should really be placed into a template. Karl Goldstein code reviewed general comments and has an interesting solution:

1.2.8. User Interface

General Comments provides two similar sets of UIs for administrators and normal users. The administrator UI allows approval/unapproval of comments as well as deletion of comments. The normal user UI presents to users all of their created comments, with links to editing and creating attachments.

1.2.9. Configuration/Parameters

1.2.10. Future Improvements/Areas of Likely Change

1.2.11. Authors

1.2.12. Revision History

Document Revision # Action Taken, NotesWhen?By Whom?
0.2Revision12/11/2000Phong Nguyen
0.1Creation10/26/2000Phong Nguyen

Last modified: $Id: design.html,v 1.3.2.1 2019/08/15 10:31:02 gustafn Exp $