Index: openacs-4/packages/edit-this-page/sql/postgresql/edit-this-page-sc-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/edit-this-page/sql/postgresql/edit-this-page-sc-create.sql,v diff -u -N --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/edit-this-page/sql/postgresql/edit-this-page-sc-create.sql 26 Jan 2003 03:10:00 -0000 1.1.2.1 @@ -0,0 +1,25 @@ +-- DaveB test service contracts for etp-page-revision +-- you will need a service contract implementation for +-- every ETP application that uses a different content type + +select acs_sc_impl__new( + 'FtsContentProvider', -- impl_contract_name + 'etp_page_revision', -- impl_name + 'edit-this-page' -- impl_owner.name +); + +select acs_sc_impl_alias__new( + 'FtsContentProvider', -- impl_contract_name + 'etp_page_revision', -- impl_name + 'datasource', -- impl_operation_name + 'etp::revision_datasource', -- impl_alias + 'TCL' -- impl_pl +); + +select acs_sc_impl_alias__new( + 'FtsContentProvider', -- impl_contract_name + 'etp_page_revision', -- impl_name + 'url', -- impl_operation_name + 'etp::revision_url', -- impl_alias + 'TCL' -- impl_pl +);