Index: openacs-4/packages/workflow/workflow.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/workflow/workflow.info,v diff -u -N -r1.5.2.5 -r1.5.2.6 --- openacs-4/packages/workflow/workflow.info 9 May 2003 13:49:36 -0000 1.5.2.5 +++ openacs-4/packages/workflow/workflow.info 11 May 2003 18:04:25 -0000 1.5.2.6 @@ -8,7 +8,7 @@ t workflow - + oracle postgresql @@ -22,7 +22,7 @@ <p> For more information, see: <a href="http://www.collaboraid.biz/developer/workflow-spec">the workflow specification</a>. - + Index: openacs-4/packages/workflow/sql/postgresql/workflow-procedural-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/workflow/sql/postgresql/workflow-procedural-create.sql,v diff -u -N -r1.6.2.2 -r1.6.2.3 --- openacs-4/packages/workflow/sql/postgresql/workflow-procedural-create.sql 9 May 2003 13:52:01 -0000 1.6.2.2 +++ openacs-4/packages/workflow/sql/postgresql/workflow-procedural-create.sql 11 May 2003 18:04:55 -0000 1.6.2.3 @@ -22,15 +22,15 @@ from workflow_cases where workflow_id = delete_workflow_id loop - perform workflow_case__delete (rec.case_id); + perform workflow_case_pkg__delete (rec.case_id); end loop; perform acs_object__delete(delete_workflow_id); return 0; end;' language 'plpgsql'; -create or replace function workflow_case__delete (integer) +create or replace function workflow_case_pkg__delete (integer) returns integer as ' declare delete_case_id alias for $1; @@ -101,7 +101,7 @@ -- Function for getting the pretty state of a case -create or replace function workflow_case__get_pretty_state ( +create or replace function workflow_case_pkg__get_pretty_state ( varchar, -- workflow_short_name integer -- object_id ) Index: openacs-4/packages/workflow/sql/postgresql/workflow-procedural-drop.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/workflow/sql/postgresql/workflow-procedural-drop.sql,v diff -u -N -r1.4.2.1 -r1.4.2.2 --- openacs-4/packages/workflow/sql/postgresql/workflow-procedural-drop.sql 7 Mar 2003 12:22:58 -0000 1.4.2.1 +++ openacs-4/packages/workflow/sql/postgresql/workflow-procedural-drop.sql 11 May 2003 18:04:55 -0000 1.4.2.2 @@ -36,5 +36,13 @@ varchar -- creation_ip ); +drop function workflow_case_pkg__delete (integer); + +drop function workflow_case_pkg__get_pretty_state ( + varchar, -- workflow_short_name + integer -- object_id +); + + delete from acs_function_args where function = 'workflow_case_log_entry__new'; Index: openacs-4/packages/workflow/tcl/case-procs-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/workflow/tcl/case-procs-postgresql.xql,v diff -u -N -r1.3.2.2 -r1.3.2.3 --- openacs-4/packages/workflow/tcl/case-procs-postgresql.xql 9 May 2003 13:52:55 -0000 1.3.2.2 +++ openacs-4/packages/workflow/tcl/case-procs-postgresql.xql 11 May 2003 18:05:27 -0000 1.3.2.3 @@ -87,7 +87,7 @@ - select workflow_case__delete(:case_id) + select workflow_case_pkg__delete(:case_id) Index: openacs-4/packages/workflow/www/doc/index.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/workflow/www/doc/index.html,v diff -u -N -r1.1.2.3 -r1.1.2.4 --- openacs-4/packages/workflow/www/doc/index.html 23 Apr 2003 09:20:05 -0000 1.1.2.3 +++ openacs-4/packages/workflow/www/doc/index.html 11 May 2003 18:06:02 -0000 1.1.2.4 @@ -50,6 +50,14 @@
  • + 1.0d4 Resolved conflicts with old acs-workflow package, so they install side by side. (May 11, 2003) +
  • +
  • + 1.0d3 Added Tcl API workflow::case::delete ; + fixed bug in PL/SQL implementation of workflow_case.delete/workflow_case__delete ; + added @see to workflow::case::insert. +
  • +
  • 1.0d2 Completed package developer's guide. Added -action_id switch to workflow::case::get_activity_html.