-- -- packages/general-comments/sql/general-comments-create.sql -- -- @author Phong Nguyen (phong@arsdigita.com) -- @author Pascal Scheffers (pascal@scheffers.net) -- @creation-date 2000-10-12 -- -- @cvs-id $Id: general-comments-create.sql,v 1.3 2001/06/14 19:52:22 pascals Exp $ -- -- General comments: Commenting facility for any object in ACS 4.0 -- -- create a table to extend cr_items create table general_comments ( comment_id integer constraint general_comments_comment_id_fk references acs_messages (message_id) on delete cascade constraint general_comments_pk primary key, object_id integer constraint general_comments_object_id_fk references acs_objects (object_id) on delete cascade, category varchar(1000) ); comment on table general_comments is ' Extends the acs_messages table to hold item level data. '; comment on column general_comments.object_id is ' The id of the object to associate message with '; comment on column general_comments.category is ' This feature is not complete. The purpose is to allow separation of comments into categories. '; -- create an index on foreign key constraint create index general_comments_object_id_idx on general_comments (object_id); create function inline_0 () returns integer as ' -- define and grant privileges declare registered_users acs_objects.object_id%TYPE; default_context acs_objects.object_id%TYPE; begin -- retreive object ids for magic objects registered_users := acs__magic_object_id(''registered_users''); default_context := acs__magic_object_id(''default_context''); -- create privileges PERFORM acs_privilege__create_privilege(''general_comments_create'', null, null); -- associte privileges to global privileges PERFORM acs_privilege__add_child(''create'',''general_comments_create''); -- allow registered users to create comments PERFORM acs_permission__grant_permission ( default_context, registered_users, ''general_comments_create'' ); return 0; end;' language 'plpgsql'; select inline_0 (); drop function inline_0 (); -- show errors -- NOTE: this is only temporary until we figure out how -- packages will register child types to an acs-message create function inline_1 () returns integer as ' begin PERFORM content_type__register_child_type ( /* parent_type => */ ''acs_message_revision'', /* child_type => */ ''content_revision'', ''generic'', 0, null ); PERFORM content_type__register_child_type ( /* parent_type => */ ''acs_message_revision'', /* child_type => */ ''image'', ''generic'', 0, null ); PERFORM content_type__register_child_type ( /* parent_type => */ ''acs_message_revision'', /* child_type => */ ''content_extlink'', ''generic'', 0, null ); return 0; end;' language 'plpgsql'; select inline_1 (); drop function inline_1 (); -- show errors