Index: openacs-4/contrib/obsolete-packages/acs-workflow/sql/oracle/sample-article-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/sql/oracle/sample-article-create.sql,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/obsolete-packages/acs-workflow/sql/oracle/sample-article-create.sql 5 Apr 2001 18:23:38 -0000 1.1 +++ openacs-4/contrib/obsolete-packages/acs-workflow/sql/oracle/sample-article-create.sql 9 Oct 2001 00:03:15 -0000 1.2 @@ -195,6 +195,29 @@ body := body ||'Deadline: '||v_deadline_pretty||' '; end if; + + -- NOTICE, NOTICE, NOTICE + -- + -- Since postgresql does not support out parameters, this + -- function call has been moved into the callback function. + -- If you implement a new notification callback, make sure + -- that this function call is included at the end of the + -- callback routine. + + -- The oracle version has been changed to be consistent + -- with the postgresql version, even though technically + -- it is not necessary. + -- + -- DanW (dcwickstrom@earthlink.net) + + v_request_id := acs_mail_nt.post_request ( + party_from => party_from, + party_to => party_to, + expand_group => 'f', + subject => subject, + message => body, + max_retries => 0 + ); end notification; end wf_article_callback;