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.1.2.2 -r1.1.2.3 --- openacs-4/contrib/packages/project-manager/sql/postgresql/project-manager-notifications-create.sql 27 Feb 2004 22:46:12 -0000 1.1.2.2 +++ openacs-4/contrib/packages/project-manager/sql/postgresql/project-manager-notifications-create.sql 6 Mar 2004 00:29:23 -0000 1.1.2.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,7 +13,7 @@ impl_id := acs_sc_impl__new ( ''NotificationType'', ''pm_task_notif_type'', - ''task'' + ''project-manager'' ); v_foo := acs_sc_impl_alias__new ( @@ -55,7 +61,7 @@ from notification_delivery_methods where short_name in (''email''); -return (0); + return (0); end; ' language 'plpgsql';