Index: openacs-4/contrib/obsolete-packages/acs-workflow/www/assign-yourself-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/www/assign-yourself-postgresql.xql,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/obsolete-packages/acs-workflow/www/assign-yourself-postgresql.xql 25 Apr 2001 04:52:44 -0000 1.1 +++ openacs-4/contrib/obsolete-packages/acs-workflow/www/assign-yourself-postgresql.xql 11 Feb 2002 07:45:52 -0000 1.2 @@ -21,7 +21,8 @@ select workflow_case__add_task_assignment ( :task_id, - :user_id + :user_id, + 'f' ); Index: openacs-4/contrib/obsolete-packages/acs-workflow/www/assignee-add-2-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/www/assignee-add-2-postgresql.xql,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/obsolete-packages/acs-workflow/www/assignee-add-2-postgresql.xql 25 Apr 2001 04:52:44 -0000 1.1 +++ openacs-4/contrib/obsolete-packages/acs-workflow/www/assignee-add-2-postgresql.xql 11 Feb 2002 07:45:52 -0000 1.2 @@ -8,7 +8,8 @@ select workflow_case__add_task_assignment ( :task_id, - :party_id + :party_id, + 'f' ); Index: openacs-4/contrib/obsolete-packages/acs-workflow/www/doc/advanced-workflow-builder.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/www/doc/advanced-workflow-builder.html,v diff -u -r1.2 -r1.3 --- openacs-4/contrib/obsolete-packages/acs-workflow/www/doc/advanced-workflow-builder.html 19 Nov 2001 18:31:50 -0000 1.2 +++ openacs-4/contrib/obsolete-packages/acs-workflow/www/doc/advanced-workflow-builder.html 11 Feb 2002 07:45:52 -0000 1.3 @@ -14,7 +14,7 @@
-ACS Documentation : Workflow : Advanced Workflow Builder's Guide +OpenACS Documentation : Workflow : Advanced Workflow Builder's Guide
-ACS Documentation : Workflow : Workflow Conceptual Reference +OpenACS Documentation : Workflow : Workflow Conceptual Reference
-ACS Documentation : Workflow : +OpenACS Documentation : Workflow : Workflow Conceptual Guide
-ACS Documentation : Workflow : +OpenACS Documentation : Workflow : Coordination Central
-ACS Documentation : Workflow : Workflow Design Documentation +OpenACS Documentation : Workflow : Workflow Design Documentation
@@ -98,7 +98,7 @@ code
. Ticket-tracker is a prime example, but other examples include order fulfillment and customer service in the ecommerce module, the recruting pipeline in the intranet module, and user -approval in the ACS core. +approval in the OpenACS core.
@@ -217,7 +217,7 @@
tasks is to approve or reject something, we'll typically have an
approved_p
attribute that takes a boolean value, and can
be branched on in an or-split. We considered (1) having a skinny table
-as part of the workflow package to hold the values, (2) using the ACS
+as part of the workflow package to hold the values, (2) using the OpenACS
kernel metadata/attribute system or (3) have a clob column in the case
table that holds an XML document with the values. We originally did
(1), then migrated to (2) when the kernel was somewhat ready for it,
@@ -364,17 +364,17 @@
-For workflow to be really functional, we rely on the ACS kernel at
+For workflow to be really functional, we rely on the OpenACS kernel at
some point implementing a system for automatically generating
forms based on metadata. This is used for setting workflow
attributes as part of performing a taks. Currently, we do it ourselves
in a very ad-hoc fashion. Speaking of attributes, we store a
wf_datatype
about attributes, in addition to the
-information stored by the ACS kernel. This is historical. We needed
-it, because the ACS kernel currently doesn't let us say that the
+information stored by the OpenACS kernel. This is historical. We needed
+it, because the OpenACS kernel currently doesn't let us say that the
datatype of some attribute is the primary key of some object of a
specific type, e.g. that the value of an attribute should be a
-party. In this case, the ACS kernel datatype would be number, and the
+party. In this case, the OpenACS kernel datatype would be number, and the
wf_datatype
would be party. We needed that for the manual
assignments, when we did those with attributes, but now that we don't
use attributes to store those anymore, because attributes can only
@@ -426,7 +426,7 @@
Management System. There's also a
wf_attribute_value_audit
table, which all the historical
values of workflow attributes, a service that is conceptually better
-provided by the ACS kernel, but since the kernel currently doesn't do
+provided by the OpenACS kernel, but since the kernel currently doesn't do
that, we have it here.
@@ -435,7 +435,7 @@
whether something is defined at the workflow or context level, to
query the actual workflow state (used by
workflow_case.enable_transitions
), and one to abstract
-away from traversing the ACS kernel party hierarchy.
+away from traversing the OpenACS kernel party hierarchy.
@@ -710,7 +710,7 @@ the workflow engine. It would fully expose implementation details, because these are necessary to understand how to build non-simple workflows. It would also allow the user to export the workflow in some -way that is importable into another ACS installation for distribution +way that is importable into another OpenACS installation for distribution either alone or with a package, either as a SQL file to load into the RDBMS, or as an XML in the WfMC standard format. Index: openacs-4/contrib/obsolete-packages/acs-workflow/www/doc/developer.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/www/doc/developer.html,v diff -u -r1.3 -r1.4 --- openacs-4/contrib/obsolete-packages/acs-workflow/www/doc/developer.html 9 Feb 2002 02:33:35 -0000 1.3 +++ openacs-4/contrib/obsolete-packages/acs-workflow/www/doc/developer.html 11 Feb 2002 07:45:52 -0000 1.4 @@ -13,7 +13,7 @@
-ACS Documentation : Workflow : Workflow Developer's Guide +OpenACS Documentation : Workflow : Workflow Developer's Guide
-ACS Documentation : Workflow : Workflow Finishing Proposal +OpenACS Documentation : Workflow : Workflow Finishing Proposal
-ACS Documentation : Workflow : Workflow Future Plans +OpenACS Documentation : Workflow : Workflow Future Plans
-ACS Documentation : Workflow +OpenACS Documentation : Workflow
Index: openacs-4/contrib/obsolete-packages/acs-workflow/www/doc/installation.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/www/doc/installation.html,v diff -u -r1.2 -r1.3 --- openacs-4/contrib/obsolete-packages/acs-workflow/www/doc/installation.html 19 Nov 2001 18:31:50 -0000 1.2 +++ openacs-4/contrib/obsolete-packages/acs-workflow/www/doc/installation.html 11 Feb 2002 07:45:52 -0000 1.3 @@ -15,7 +15,7 @@
-ACS Documentation : Workflow : Installation and Getting Started Guide +OpenACS Documentation : Workflow : Installation and Getting Started Guide
nt.schedule_process
in
-acs-workflow/sql/workflow-case-package.sql
to correctly
-specify your mail server. You should do this before loading the
-workflow data model.
-
-Workflow is a standard APM package, so you can install
-the package through the APM user interface. If your installation came
-complete with ACS Workflow installed, you may skip this step.
-
+Workflow is installed by default on OpenACS 4.
acs-workflow
-APM package.
+do install GraphViz.
@@ -75,6 +64,10 @@ $ ln -s /usr/local/graphviz/bin/dot dot +
+Note: on Debian, you can do: apt-get install graphviz
+
/admin/site-map
on your
webserver.
-workflow
(you may name it anything you want).
+graphviz_dot_path
parameter points to the dot
binary that you just installed e.g., /usr/local/bin/dot
,
and the tmp_path
parameter should point to some directory
Index: openacs-4/contrib/obsolete-packages/acs-workflow/www/doc/maintainer.html
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/www/doc/maintainer.html,v
diff -u -r1.2 -r1.3
--- openacs-4/contrib/obsolete-packages/acs-workflow/www/doc/maintainer.html 19 Nov 2001 18:31:50 -0000 1.2
+++ openacs-4/contrib/obsolete-packages/acs-workflow/www/doc/maintainer.html 11 Feb 2002 07:45:52 -0000 1.3
@@ -13,7 +13,7 @@
-ACS Documentation : Workflow : Workflow Maintainer's Guide +OpenACS Documentation : Workflow : Workflow Maintainer's Guide
-ACS Documentation : Workflow : +OpenACS Documentation : Workflow : Workflow Conceptual Guide
-ACS Documentation : Workflow : +OpenACS Documentation : Workflow : Workflow Release Notes
-ACS Documentation : Workflow : +OpenACS Documentation : Workflow : Workflow Requirements
-ACS Documentation : Workflow : +OpenACS Documentation : Workflow : Support Info