Index: openacs-4/packages/tasks/tcl/tasks-procs-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/tasks/tcl/Attic/tasks-procs-postgresql.xql,v diff -u -N --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/tasks/tcl/tasks-procs-postgresql.xql 7 Oct 2005 21:41:45 -0000 1.1.2.1 @@ -0,0 +1,42 @@ + + + + postgresql7.1 + + + + + select tasks__new ( + :party_id, + :object_id, + :process_id, + :title, + :description, + :mime_type, + :comment, + :due_date, + :priority, + :status, + now(), + :user_id, + :ip_addr, + :package_id + ) + + + + + + + + update acs_objects + set title = :title, + modifying_user = :user_id, + modifying_ip = :ip_addr, + last_modified = now() + where object_id = :task_id + + + + + Index: openacs-4/packages/tasks/tcl/tasks-procs.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/tasks/tcl/tasks-procs.xql,v diff -u -N --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/tasks/tcl/tasks-procs.xql 7 Oct 2005 21:41:45 -0000 1.1.2.2 @@ -0,0 +1,20 @@ + + + + + + + update tasks + set title = :title, + description = :description, + mime_type = :mime_type, + comment = :comment, + due_date = :due_date, + priority = :priority, + status = :status + where task_id = :task_id + + + + +