Index: openacs-4/contrib/packages/project-manager/sql/postgresql/project-manager-notifications-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/project-manager/sql/postgresql/Attic/project-manager-notifications-create.sql,v diff -u -r1.2 -r1.3 --- openacs-4/contrib/packages/project-manager/sql/postgresql/project-manager-notifications-create.sql 26 Jan 2004 15:39:40 -0000 1.2 +++ openacs-4/contrib/packages/project-manager/sql/postgresql/project-manager-notifications-create.sql 12 Mar 2004 13:44:42 -0000 1.3 @@ -1,3 +1,9 @@ +-- Following directions at +-- http://openacs.org/doc/openacs-HEAD/tutorial-notifications.html + +-- using pm_task_notif_type instead of lars_blogger_notif_type +-- using project-manager instead of lars-blogger + create function inline_0() returns integer as ' declare impl_id integer; @@ -7,22 +13,22 @@ impl_id := acs_sc_impl__new ( ''NotificationType'', ''pm_task_notif_type'', - ''task'' + ''project-manager'' ); v_foo := acs_sc_impl_alias__new ( ''NotificationType'', ''pm_task_notif_type'', ''GetURL'', - ''project_manager::task::get_url'', + ''pm::task::get_url'', ''TCL'' ); v_foo := acs_sc_impl_alias__new ( ''NotificationType'', ''pm_task_notif_type'', ''ProcessReply'', - ''project_manager::task::process_reply'', + ''pm::task::process_reply'', ''TCL'' ); @@ -55,7 +61,7 @@ from notification_delivery_methods where short_name in (''email''); -return (0); + return (0); end; ' language 'plpgsql';