Index: openacs-4/packages/cms/sql/postgresql/cms-publishing-wf.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/cms/sql/postgresql/cms-publishing-wf.sql,v diff -u -N -r1.7 -r1.8 --- openacs-4/packages/cms/sql/postgresql/cms-publishing-wf.sql 24 Sep 2002 20:47:12 -0000 1.7 +++ openacs-4/packages/cms/sql/postgresql/cms-publishing-wf.sql 25 Sep 2002 04:11:24 -0000 1.8 @@ -61,15 +61,22 @@ perform workflow__add_role( ''publishing_wf'', - ''author'', - ''Author'', + ''approval'', + ''Approval'', + 2 + ); + + perform workflow__add_role( + ''publishing_wf'', + ''authoring'', + ''Authoring'', 1 ); perform workflow__add_role( ''publishing_wf'', - ''editor'', - ''Editor'', + ''editing'', + ''Editing'', 2 ); /***** @@ -80,7 +87,7 @@ ''publishing_wf'', ''authoring'', ''Authoring'', - ''author'', + ''authoring'', 1, ''user'' ); @@ -89,7 +96,7 @@ ''publishing_wf'', ''editing'', ''Editing'', - ''editor'', + ''editing'', 2, ''user'' ); @@ -98,7 +105,7 @@ ''publishing_wf'', ''approval'', ''Approval'', - ''editor'', + ''approval'', 3, ''user'' );