Index: openacs-4/contrib/obsolete-packages/acs-util/acs-util.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-util/acs-util.info,v
diff -u -r1.5 -r1.6
--- openacs-4/contrib/obsolete-packages/acs-util/acs-util.info 3 Aug 2002 17:54:06 -0000 1.5
+++ openacs-4/contrib/obsolete-packages/acs-util/acs-util.info 17 May 2003 10:07:38 -0000 1.6
@@ -18,19 +18,8 @@
OpenACS
-
+
-
-
-
-
-
-
-
-
-
-
-
Index: openacs-4/contrib/obsolete-packages/acs-workflow/acs-workflow.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/acs-workflow.info,v
diff -u -r1.15 -r1.16
--- openacs-4/contrib/obsolete-packages/acs-workflow/acs-workflow.info 9 Jan 2003 12:10:07 -0000 1.15
+++ openacs-4/contrib/obsolete-packages/acs-workflow/acs-workflow.info 17 May 2003 10:08:02 -0000 1.16
@@ -20,485 +20,9 @@
OpenACS
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Index: openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/wf-callback-package-body.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/wf-callback-package-body.sql,v
diff -u -r1.1 -r1.2
--- openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/wf-callback-package-body.sql 19 Nov 2001 18:20:33 -0000 1.1
+++ openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/wf-callback-package-body.sql 17 May 2003 10:08:16 -0000 1.2
@@ -21,7 +21,7 @@
-- function time_sysdate_plus_x
create function wf_callback__time_sysdate_plus_x (integer,varchar,text)
-returns timestamp as '
+returns timestamptz as '
declare
time_sysdate_plus_x__case_id alias for $1;
time_sysdate_plus_x__transition_key alias for $2;
Index: openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/wf-core-create.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/wf-core-create.sql,v
diff -u -r1.5 -r1.6
--- openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/wf-core-create.sql 19 Nov 2001 18:20:33 -0000 1.5
+++ openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/wf-core-create.sql 17 May 2003 10:08:16 -0000 1.6
@@ -577,7 +577,7 @@
on delete cascade,
workflow_key varchar(100),
transition_key varchar(100),
- deadline timestamp
+ deadline timestamptz
constraint wf_case_deadline_nn
not null,
-- table constraints --
@@ -617,21 +617,21 @@
constraint wf_task_state_ck
check (state in ('enabled','started','canceled',
'finished','overridden')),
- enabled_date timestamp default now(),
- started_date timestamp,
- canceled_date timestamp,
- finished_date timestamp,
- overridden_date timestamp,
+ enabled_date timestamptz default now(),
+ started_date timestamptz,
+ canceled_date timestamptz,
+ finished_date timestamptz,
+ overridden_date timestamptz,
/* -- TIME transition info */
- trigger_time timestamp,
+ trigger_time timestamptz,
/* -- USER transition info */
- deadline timestamp,
+ deadline timestamptz,
estimated_minutes integer,
holding_user integer
constraint wf_task_holding_user_fk
references users(user_id)
on delete cascade,
- hold_timeout timestamp,
+ hold_timeout timestamptz,
-- table constraints --
constraint wf_task_transition_fk
foreign key (workflow_key, transition_key) references wf_transitions(workflow_key, transition_key)
@@ -687,10 +687,10 @@
constraint wf_token_task_fk
references wf_tasks(task_id),
-- info on state changes
- produced_date timestamp default now(),
- locked_date timestamp,
- canceled_date timestamp,
- consumed_date timestamp,
+ produced_date timestamptz default current_timestamp,
+ locked_date timestamptz,
+ canceled_date timestamptz,
+ consumed_date timestamptz,
produced_journal_id integer
constraint wf_token_produced_journal_fk
references journal_entries(journal_id),
Index: openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/workflow-case-package-body.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/workflow-case-package-body.sql,v
diff -u -r1.6 -r1.7
--- openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/workflow-case-package-body.sql 21 Dec 2002 22:30:11 -0000 1.6
+++ openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/workflow-case-package-body.sql 17 May 2003 10:08:16 -0000 1.7
@@ -1,6 +1,7 @@
-- create or replace package body workflow_case
-- function new
-create function workflow_case__new (integer,varchar,varchar,integer,timestamp with time zone,integer,varchar)
+
+create function workflow_case__new (integer,varchar,varchar,integer,timestamptz,integer,varchar)
returns integer as '
declare
new__case_id alias for $1; -- default null
@@ -855,7 +856,7 @@
-- procedure set_case_deadline
-create function workflow_case__set_case_deadline (integer,varchar,timestamp with time zone)
+create function workflow_case__set_case_deadline (integer,varchar,timestamptz)
returns integer as '
declare
set_case_deadline__case_id alias for $1;
@@ -986,7 +987,7 @@
-- function execute_time_callback
create function workflow_case__execute_time_callback (varchar,varchar,integer,varchar)
-returns timestamp as '
+returns timestamptz as '
declare
execute_time_callback__callback alias for $1;
execute_time_callback__custom_arg alias for $2;
@@ -1016,14 +1017,14 @@
-- function get_task_deadline
create function workflow_case__get_task_deadline (varchar,varchar,varchar,integer,varchar)
-returns timestamp as '
+returns timestamptz as '
declare
get_task_deadline__callback alias for $1;
get_task_deadline__custom_arg alias for $2;
get_task_deadline__attribute_name alias for $3;
get_task_deadline__case_id alias for $4;
get_task_deadline__transition_key alias for $5;
- v_deadline timestamp;
+ v_deadline timestamptz;
v_rec record;
v_str varchar;
begin
@@ -1070,13 +1071,13 @@
-- function execute_hold_timeout_callback
create function workflow_case__execute_hold_timeout_callback (varchar,varchar,integer,varchar)
-returns timestamp as '
+returns timestamptz as '
declare
execute_hold_timeout_callback__callback alias for $1;
execute_hold_timeout_callback__custom_arg alias for $2;
execute_hold_timeout_callback__case_id alias for $3;
execute_hold_timeout_callback__transition_key alias for $4;
- v_hold_timeout timestamp;
+ v_hold_timeout timestamptz;
v_rec record;
v_str text;
begin
@@ -1652,8 +1653,8 @@
enable_transitions__case_id alias for $1;
v_task_id integer;
v_workflow_key varchar;
- v_trigger_time timestamp;
- v_deadline_date timestamp;
+ v_trigger_time timestamptz;
+ v_deadline_date timestamptz;
v_party_from integer;
v_subject varchar;
v_body text;
@@ -1932,7 +1933,7 @@
v_transition_key varchar(100);
v_hold_timeout_callback varchar(100);
v_hold_timeout_custom_arg varchar(4000);
- v_hold_timeout timestamp;
+ v_hold_timeout timestamptz;
place_rec record;
begin
PERFORM workflow_case__ensure_task_in_state(start_task__task_id,
Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/upgrade/upgrade-4.6-4.6.1.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Index: openacs-4/contrib/obsolete-packages/acs-workflow/tcl/workflow-init.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/tcl/workflow-init.tcl,v
diff -u -r1.1 -r1.2
--- openacs-4/contrib/obsolete-packages/acs-workflow/tcl/workflow-init.tcl 13 Mar 2001 22:59:27 -0000 1.1
+++ openacs-4/contrib/obsolete-packages/acs-workflow/tcl/workflow-init.tcl 17 May 2003 10:09:02 -0000 1.2
@@ -1,3 +1,8 @@
-# XXX (bquinn): replace this
-# rp_register_directory_map workflow acs-workflow
+ad_library {
+ Initialization code for the acs-workflow package
+ (to run once on server startup).
+ @cvs-id $Id$
+}
+
+ad_schedule_proc -thread t 900 wf_sweep_time_events
Index: openacs-4/contrib/obsolete-packages/acs-workflow/tcl/workflow-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/tcl/workflow-procs.tcl,v
diff -u -r1.9 -r1.10
--- openacs-4/contrib/obsolete-packages/acs-workflow/tcl/workflow-procs.tcl 12 Jan 2002 00:03:26 -0000 1.9
+++ openacs-4/contrib/obsolete-packages/acs-workflow/tcl/workflow-procs.tcl 17 May 2003 10:09:02 -0000 1.10
@@ -1775,6 +1775,3 @@
ns_log Notice "workflow-case: sweeping hold timeout"
db_exec_plsql sweep_hold_timeout ""
}
-
-ad_schedule_proc -thread t 900 wf_sweep_time_events
-
Index: openacs-4/contrib/obsolete-packages/acs-workflow/www/admin/wizard/assignments.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/www/admin/wizard/assignments.adp,v
diff -u -r1.4 -r1.5
--- openacs-4/contrib/obsolete-packages/acs-workflow/www/admin/wizard/assignments.adp 6 Sep 2002 21:50:18 -0000 1.4
+++ openacs-4/contrib/obsolete-packages/acs-workflow/www/admin/wizard/assignments.adp 17 May 2003 10:09:32 -0000 1.5
@@ -11,7 +11,7 @@
- set intro_blurb "You only have one task defined. That's barely
+ You only have one task defined. That's barely
enough to call a process, so you probably want to go back and define more tasks.
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/ChangeLog'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.6 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/bboard.info'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/sql/oracle/bboard-create.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/sql/oracle/bboard-drop.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/sql/oracle/bboard-packages.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/sql/oracle/bboard-views.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/sql/oracle/index_sync.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/sql/oracle/upgrade-4.0-4.0.1.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/sql/oracle/upgrade-4.0.1-4.0.2.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/sql/oracle/upgrade-4.0.2b3-4.0.2b4.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/sql/oracle/upgrade-4.0.2b5-4.0.2b6.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/sql/oracle/upgrade-4.0.2b6-4.0.2b7.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/sql/oracle/upgrade-4.0b-4.0.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.7 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/sql/postgresql/bboard-create.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/sql/postgresql/bboard-drop.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.9 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/sql/postgresql/bboard-packages.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.6 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/sql/postgresql/bboard-views.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/tcl/bboard-init.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.7 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/tcl/bboard-procs-oracle.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.13 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/tcl/bboard-procs-postgresql.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.10 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/tcl/bboard-procs.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/tcl/bboard-procs.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/attachment-delete.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/attachment.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-delete-2-oracle.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-delete-2-postgresql.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-delete-2.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-delete-2.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-delete.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-delete.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-delete.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-edit-2.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-edit.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-edit.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-entry.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-new-2.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-new.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-new.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-subscribe.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-subscribe.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/category-unsubscribe.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-by-category-oracle.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-by-category-postgresql.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-by-category.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-by-category.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-delete-2-oracle.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-delete-2-postgresql.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-delete-2.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-delete-2.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-delete.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-delete.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-delete.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-edit-2.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-edit.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-edit.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.6 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-entry.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-move-2.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-move-2.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-move.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-move.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-move.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-new-2.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-new.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-oracle.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-postgresql.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-subscribe.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-unsubscribe.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum-view.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/forum.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/index-oracle.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/index-postgresql.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.6 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/index.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/index.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-approve.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-approve.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-attach-2.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-attach.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-attach.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-delete-2-oracle.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-delete-2-postgresql.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-delete-2.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-delete.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-delete.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-delete.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.6 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-edit-2.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-edit-2.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-edit-3.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-edit.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-edit.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-entry.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-list.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-mail-2-oracle.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-mail-2-postgresql.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-mail-2.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-mail-2.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-mail.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-mail.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-mail.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-move-2-oracle.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-move-2-postgresql.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-move-2.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-move.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-move.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-move.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-new-2.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-new-2.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-new-3-oracle.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-new-3-postgresql.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-new-3.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-new.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-new.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-oracle.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-postgresql.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-preview.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-reject.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-subscribe.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-threaded-oracle.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-threaded-postgresql.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-threaded.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.6 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-threaded.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-threaded.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message-unsubscribe.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/message.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/messages-by-user.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/messages-by-user.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/messages-by-user.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/search-oracle.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/search-postgresql.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/search.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/search.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/simple-message-oracle.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/simple-message-postgresql.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/simple-message.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/simple-message.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/subscriptions.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/subscriptions.tcl'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/subscriptions.xql'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.3 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/test.adp'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/doc/design.html'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/doc/index.html'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/doc/requirements.html'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/doc/xml/configuration.xml'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/doc/xml/design.xml'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/doc/xml/index.xml'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/doc/xml/installation.xml'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/doc/xml/intro.xml'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/doc/xml/notes.xml'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/doc/xml/requirements.xml'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/doc/xml/support.xml'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard/www/doc/xml/top.xml'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 1.4 refers to a dead (removed) revision in file `openacs-4/contrib/obsolete-packages/bboard-portlets/bboard-portlets.info'.
Fisheye: No comparison available. Pass `N' to diff?
Index: openacs-4/packages/acs-templating/www/doc/demo/form.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/demo/form.xql,v
diff -u -r1.2 -r1.3
--- openacs-4/packages/acs-templating/www/doc/demo/form.xql 5 Mar 2003 17:12:01 -0000 1.2
+++ openacs-4/packages/acs-templating/www/doc/demo/form.xql 17 May 2003 10:06:14 -0000 1.3
@@ -4,7 +4,7 @@
- select ad_template_sample_users_sequence.nextval
+ select ad_template_sample_users_seq.nextval
Index: openacs-4/packages/acs-templating/www/doc/demo/index.html
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/demo/index.html,v
diff -u -r1.2 -r1.3
--- openacs-4/packages/acs-templating/www/doc/demo/index.html 2 Jan 2003 17:11:32 -0000 1.2
+++ openacs-4/packages/acs-templating/www/doc/demo/index.html 17 May 2003 10:06:14 -0000 1.3
@@ -438,11 +438,20 @@
A form with display/edit modes |
View |
-Submit |
-Submit |
+View |
+View |
View |
+
+A form with multiple submit buttons |
+
+View |
+View |
+View |
+View |
+
+
Index: openacs-4/packages/acs-templating/www/doc/demo/multiaccess.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/demo/multiaccess.tcl,v
diff -u -r1.3 -r1.4
--- openacs-4/packages/acs-templating/www/doc/demo/multiaccess.tcl 22 Aug 2002 03:13:24 -0000 1.3
+++ openacs-4/packages/acs-templating/www/doc/demo/multiaccess.tcl 17 May 2003 10:06:14 -0000 1.4
@@ -4,7 +4,11 @@
# @column last_name Last name of the user.
-db_multirow users get_users "" { set full_name "${last_name}, $first_name" }
+db_multirow users get_users {
+ select last_name, first_name, first_name || ' ' || last_name as full_name from ad_template_sample_users
+} {
+ set full_name "${last_name}, $first_name"
+}
# Manually access the datasource
Index: openacs-4/packages/acs-templating/www/doc/tagref/formtemplate.html
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/doc/tagref/formtemplate.html,v
diff -u -r1.1 -r1.2
--- openacs-4/packages/acs-templating/www/doc/tagref/formtemplate.html 13 Mar 2001 22:59:27 -0000 1.1
+++ openacs-4/packages/acs-templating/www/doc/tagref/formtemplate.html 17 May 2003 10:06:58 -0000 1.2
@@ -49,8 +49,10 @@
The style attribute is optional. It may be used to select
a style template from /ats/templates/forms for determining
-the layout of the auto-generated form. The default style is
-standard, which is included in the distribution.
+the layout of the auto-generated form. The default style is defined
+in the DefaultFormStyle parameter on the acs-templating package,
+and is by default set to standard, which is included in the
+distribution.
HTML attributes, including JavaScript event handlers, may be
specified as attributes to the formtemplate tag. The system
Index: openacs-4/packages/address-book/address-book.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/address-book/address-book.info,v
diff -u -r1.5 -r1.6
--- openacs-4/packages/address-book/address-book.info 9 Mar 2002 02:00:02 -0000 1.5
+++ openacs-4/packages/address-book/address-book.info 17 May 2003 10:09:53 -0000 1.6
@@ -17,7 +17,7 @@
The Address Book is an application/service hybrid. As an application, it provides a complete UI for storing, retrieving and searching for individually permissioned contacts. As a service, Address Book provides a storage mechanism for contact information and associating it with other objects. Each contact has identity info as well as an arbitrary number of custom attributes (which may be used for phone numbers, email addresses, etc.) and an arbitrary number of street addresses.
-
+
Index: openacs-4/packages/address-book/sql/postgresql/address-book-create.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/address-book/sql/postgresql/address-book-create.sql,v
diff -u -r1.4 -r1.5
--- openacs-4/packages/address-book/sql/postgresql/address-book-create.sql 2 Sep 2001 17:06:29 -0000 1.4
+++ openacs-4/packages/address-book/sql/postgresql/address-book-create.sql 17 May 2003 10:10:13 -0000 1.5
@@ -154,7 +154,7 @@
-- type_key
integer, -- ab_contact_attr_types.type_id%TYPE
varchar, -- acs_objects.object_type%TYPE
- timestamp, -- acs_objects.creation_date%TYPE
+ timestamptz, -- acs_objects.creation_date%TYPE
integer, -- acs_objects.creation_user%TYPE
varchar, -- acs_objects.creation_ip%TYPE
integer, -- acs_objects.context_id%TYPE
@@ -356,7 +356,7 @@
-- before_attr_id in ab_contact_attrs.attr_id%TYPE
integer, -- ab_contact_attrs.attr_id%TYPE
varchar, -- acs_objects.object_type%TYPE
- timestamp, -- acs_objects.creation_date%TYPE
+ timestamptz, -- acs_objects.creation_date%TYPE
integer, -- acs_objects.creation_user%TYPE
varchar, -- acs_objects.creation_ip%TYPE
integer, -- acs_objects.context_id%TYPE
@@ -596,7 +596,7 @@
-- category
integer, -- ab_contacts.contact_id%TYPE default null,
varchar, -- acs_objects.object_type%TYPE
- timestamp, -- acs_objects.creation_date%TYPE
+ timestamptz, -- acs_objects.creation_date%TYPE
integer, -- acs_objects.creation_user%TYPE
varchar, -- acs_objects.creation_ip%TYPE
integer, -- acs_objects.context_id%TYPE
Index: openacs-4/packages/address-book/sql/postgresql/address-book-drop.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/address-book/sql/postgresql/address-book-drop.sql,v
diff -u -r1.3 -r1.4
--- openacs-4/packages/address-book/sql/postgresql/address-book-drop.sql 29 Aug 2001 00:52:20 -0000 1.3
+++ openacs-4/packages/address-book/sql/postgresql/address-book-drop.sql 17 May 2003 10:10:13 -0000 1.4
@@ -19,7 +19,7 @@
drop function ab_contact_attr_type__new(
integer,
varchar,
- timestamp,
+ timestamptz,
integer,
varchar,
integer,
@@ -30,7 +30,7 @@
drop function ab_contact_attr__new (
integer,
varchar,
- timestamp,
+ timestamptz,
integer,
varchar,
integer,
@@ -54,7 +54,7 @@
drop function ab_contact_rel__delete(integer);
drop function ab_contact_rel__new(integer,integer,integer,integer,varchar,varchar,varchar);
-drop function ab_contact__new( integer,varchar,timestamp,integer,varchar,integer,varchar,varchar,varchar,varchar,integer,varchar);
+drop function ab_contact__new( integer,varchar,timestamptz,integer,varchar,integer,varchar,varchar,varchar,varchar,integer,varchar);
drop function ab_contact__name( integer);
drop function ab_contact__delete(integer, boolean);
Index: openacs-4/packages/adserver/adserver.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/adserver/adserver.info,v
diff -u -r1.4 -r1.5
--- openacs-4/packages/adserver/adserver.info 16 Jan 2003 13:42:37 -0000 1.4
+++ openacs-4/packages/adserver/adserver.info 17 May 2003 10:10:43 -0000 1.5
@@ -19,7 +19,7 @@
furfly.net, LLC
-
+
Index: openacs-4/packages/adserver/www/admin/add-adv-2.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/adserver/www/admin/add-adv-2.tcl,v
diff -u -r1.3 -r1.4
--- openacs-4/packages/adserver/www/admin/add-adv-2.tcl 18 Sep 2002 12:11:29 -0000 1.3
+++ openacs-4/packages/adserver/www/admin/add-adv-2.tcl 17 May 2003 10:11:05 -0000 1.4
@@ -19,7 +19,7 @@
@cvs-id $Id$
} {
adv_key:notnull
- target_url:html
+ target_url:allhtml
local_image_p
track_clickthru_p
adv_filename
Index: openacs-4/packages/attachments/attachments.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/attachments/attachments.info,v
diff -u -r1.9 -r1.10
--- openacs-4/packages/attachments/attachments.info 29 Jan 2003 16:12:35 -0000 1.9
+++ openacs-4/packages/attachments/attachments.info 17 May 2003 10:11:20 -0000 1.10
@@ -8,7 +8,7 @@
t
attachments
-
+
oracle
postgresql
@@ -19,46 +19,9 @@
OpenForce, Inc.
Attachments
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Index: openacs-4/packages/attachments/sql/oracle/attachments-create.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/attachments/sql/oracle/attachments-create.sql,v
diff -u -r1.4 -r1.5
--- openacs-4/packages/attachments/sql/oracle/attachments-create.sql 30 Aug 2002 14:44:06 -0000 1.4
+++ openacs-4/packages/attachments/sql/oracle/attachments-create.sql 17 May 2003 10:11:35 -0000 1.5
@@ -30,6 +30,9 @@
primary key (package_id, folder_id)
);
+--RI Indexes
+create index attachments_fsr_fm_folder_id_i ON attachments_fs_root_folder_map(folder_id);
+
create table attachments (
object_id constraint attachments_object_id_fk
references acs_objects (object_id)
@@ -46,3 +49,7 @@
constraint attachments_pk
primary key (object_id, item_id)
);
+
+--RI Indexes
+create index attachments_item_id_idx ON attachments(item_id);
+
Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/attachments/sql/oracle/upgrade/upgrade-0.3-0.4.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Index: openacs-4/packages/attachments/sql/postgresql/attachments-create.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/attachments/sql/postgresql/attachments-create.sql,v
diff -u -r1.3 -r1.4
--- openacs-4/packages/attachments/sql/postgresql/attachments-create.sql 30 Aug 2002 14:44:08 -0000 1.3
+++ openacs-4/packages/attachments/sql/postgresql/attachments-create.sql 17 May 2003 10:12:03 -0000 1.4
@@ -32,6 +32,9 @@
primary key (package_id, folder_id)
);
+-- RI Indexes
+create index attachments_fsr_fm_folder_id_i ON attachments_fs_root_folder_map(folder_id);
+
create table attachments (
object_id integer
constraint attachments_object_id_fk
@@ -50,3 +53,6 @@
constraint attachments_pk
primary key (object_id, item_id)
);
+
+-- RI Indexes
+create index attachments_item_id_idx ON attachments(item_id);
Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/attachments/sql/postgresql/upgrade/upgrade-0.3-0.4.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Index: openacs-4/packages/attachments/www/file-add-2.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/attachments/www/file-add-2.tcl,v
diff -u -r1.3 -r1.4
--- openacs-4/packages/attachments/www/file-add-2.tcl 7 Nov 2002 15:11:50 -0000 1.3
+++ openacs-4/packages/attachments/www/file-add-2.tcl 17 May 2003 10:13:01 -0000 1.4
@@ -45,10 +45,7 @@
# Get the ip
set creation_ip [ad_conn peeraddr]
-# The content repository is kinda stupid about mime types,
-# so we have to check if we know about this one and possibly
-# add it.
-set mime_type [fs_maybe_create_new_mime_type $upload_file]
+set mime_type [cr_filename_to_mime_type -create $upload_file]
# Get the storage type
set indb_p [ad_parameter "StoreFilesInDatabaseP" -package_id [ad_conn package_id]]
Index: openacs-4/packages/attachments/www/go-to-attachment.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/attachments/www/go-to-attachment.tcl,v
diff -u -r1.4 -r1.5
--- openacs-4/packages/attachments/www/go-to-attachment.tcl 16 Jan 2003 13:43:15 -0000 1.4
+++ openacs-4/packages/attachments/www/go-to-attachment.tcl 17 May 2003 10:13:01 -0000 1.5
@@ -18,9 +18,8 @@
}
switch $object_type {
- fs_url {
- set url [db_string select_url {}]
- ad_returnredirect $url
+ content_extlink {
+ ad_returnredirect [db_string select_url {}]
ad_script_abort
return
}
Index: openacs-4/packages/attachments/www/go-to-attachment.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/attachments/www/go-to-attachment.xql,v
diff -u -r1.2 -r1.3
--- openacs-4/packages/attachments/www/go-to-attachment.xql 16 Jan 2003 13:43:15 -0000 1.2
+++ openacs-4/packages/attachments/www/go-to-attachment.xql 17 May 2003 10:13:02 -0000 1.3
@@ -2,25 +2,22 @@
-
-select
-object_type
-from attachments, acs_objects
-where
-attachments.object_id = :object_id and
-attachments.item_id = :attachment_id and
-attachments.item_id = acs_objects.object_id
-
+
+ select object_type
+ from attachments, acs_objects
+ where
+ attachments.object_id = :object_id and
+ attachments.item_id = :attachment_id and
+ attachments.item_id = acs_objects.object_id
+
-
-select
-url
-from fs_urls
-where
-url_id = :attachment_id
-
+
+ select url
+ from cr_extlinks
+ where extlink_id = :attachment_id
+
Index: openacs-4/packages/attachments/www/simple-add-2.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/attachments/www/simple-add-2.tcl,v
diff -u -r1.2 -r1.3
--- openacs-4/packages/attachments/www/simple-add-2.tcl 7 Nov 2002 15:11:50 -0000 1.2
+++ openacs-4/packages/attachments/www/simple-add-2.tcl 17 May 2003 10:13:02 -0000 1.3
@@ -24,11 +24,11 @@
ad_require_permission $folder_id write
db_transaction {
- # Create the URL (for now)
- set url_id [fs::url_new -url $url -name $title -description $description -folder_id $folder_id]
- # Attach the URL
- attachments::attach -object_id $object_id -attachment_id $url_id
+ # Create and attach the URL
+ attachments::attach -object_id $object_id \
+ -attachment_id [content_simple::new -url $url -label $title -description $description -parent_id $folder_id]
+
}
ad_returnredirect "$return_url"
Index: openacs-4/packages/attachments/www/simple-add.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/attachments/www/simple-add.tcl,v
diff -u -r1.6 -r1.7
--- openacs-4/packages/attachments/www/simple-add.tcl 10 Nov 2002 16:13:21 -0000 1.6
+++ openacs-4/packages/attachments/www/simple-add.tcl 17 May 2003 10:13:02 -0000 1.7
@@ -41,7 +41,6 @@
# Should probably generate the item_id and version_id now for
# double-click protection
-
# if title isn't passed in ignore lock_title_p
if {[empty_string_p $title]} {
set lock_title_p 0
Index: openacs-4/packages/authorize-gateway/sql/postgresql/authorize-gateway-create.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/authorize-gateway/sql/postgresql/authorize-gateway-create.sql,v
diff -u -r1.2 -r1.3
--- openacs-4/packages/authorize-gateway/sql/postgresql/authorize-gateway-create.sql 26 Sep 2002 22:42:13 -0000 1.2
+++ openacs-4/packages/authorize-gateway/sql/postgresql/authorize-gateway-create.sql 17 May 2003 10:13:24 -0000 1.3
@@ -1,7 +1,7 @@
create table authorize_gateway_result_log (
transaction_id varchar(20) not null,
txn_attempted_type varchar(18),
- txn_attempted_time datetime,
+ txn_attempted_time timestamptz,
response varchar(400),
response_code varchar(1),
response_reason_code varchar(2),