Index: openacs-4/packages/contacts/sql/postgresql/attributes-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/sql/postgresql/Attic/attributes-create.sql,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/sql/postgresql/attributes-create.sql 12 Aug 2004 17:38:40 -0000 1.1.2.1 +++ openacs-4/packages/contacts/sql/postgresql/attributes-create.sql 19 Aug 2004 01:21:39 -0000 1.1.2.2 @@ -2,6 +2,9 @@ -- -- @author Matthew Geddert openacs@geddert.com -- @creation-date 2004-07-28 +-- @cvs-id $Id$ +-- +-- create table contact_storage_types ( storage_column varchar(20) Index: openacs-4/packages/contacts/sql/postgresql/attributes-drop.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/sql/postgresql/Attic/attributes-drop.sql,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/sql/postgresql/attributes-drop.sql 12 Aug 2004 17:38:40 -0000 1.1.2.1 +++ openacs-4/packages/contacts/sql/postgresql/attributes-drop.sql 19 Aug 2004 01:21:40 -0000 1.1.2.2 @@ -2,6 +2,9 @@ -- -- @author Matthew Geddert openacs@geddert.com -- @creation-date 2004-07-28 +-- @cvs-id $Id$ +-- +-- drop table contact_attribute_object_map; drop table contact_attribute_values; Index: openacs-4/packages/contacts/sql/postgresql/attributes-package-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/sql/postgresql/Attic/attributes-package-create.sql,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/sql/postgresql/attributes-package-create.sql 12 Aug 2004 17:38:40 -0000 1.1.2.1 +++ openacs-4/packages/contacts/sql/postgresql/attributes-package-create.sql 19 Aug 2004 01:21:40 -0000 1.1.2.2 @@ -2,6 +2,9 @@ -- -- @author Matthew Geddert openacs@geddert.com -- @creation-date 2004-07-28 +-- @cvs-id $Id$ +-- +-- create function inline_1 () Index: openacs-4/packages/contacts/sql/postgresql/attributes-populate.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/sql/postgresql/Attic/attributes-populate.sql,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/sql/postgresql/attributes-populate.sql 12 Aug 2004 17:38:40 -0000 1.1.2.1 +++ openacs-4/packages/contacts/sql/postgresql/attributes-populate.sql 19 Aug 2004 01:21:40 -0000 1.1.2.2 @@ -2,6 +2,9 @@ -- -- @author Matthew Geddert openacs@geddert.com -- @creation-date 2004-07-28 +-- @cvs-id $Id$ +-- +-- -- now we populate the database with standard info Index: openacs-4/packages/contacts/sql/postgresql/contacts-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/sql/postgresql/contacts-create.sql,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/sql/postgresql/contacts-create.sql 12 Aug 2004 17:38:40 -0000 1.1.2.1 +++ openacs-4/packages/contacts/sql/postgresql/contacts-create.sql 19 Aug 2004 01:21:40 -0000 1.1.2.2 @@ -2,7 +2,11 @@ -- -- @author Matthew Geddert openacs@geddert.com -- @creation-date 2004-07-28 +-- @cvs-id $Id$ +-- +-- + create table contact_archives ( party_id integer constraint contact_archives_party_id_fk references parties(party_id) Index: openacs-4/packages/contacts/sql/postgresql/contacts-drop.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/sql/postgresql/contacts-drop.sql,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/sql/postgresql/contacts-drop.sql 12 Aug 2004 17:38:40 -0000 1.1.2.1 +++ openacs-4/packages/contacts/sql/postgresql/contacts-drop.sql 19 Aug 2004 01:21:40 -0000 1.1.2.2 @@ -2,6 +2,9 @@ -- -- @author Matthew Geddert openacs@geddert.com -- @creation-date 2004-07-28 +-- @cvs-id $Id$ +-- +-- -- The view structure. Index: openacs-4/packages/contacts/sql/postgresql/contacts-package-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/sql/postgresql/contacts-package-create.sql,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/sql/postgresql/contacts-package-create.sql 12 Aug 2004 17:38:40 -0000 1.1.2.1 +++ openacs-4/packages/contacts/sql/postgresql/contacts-package-create.sql 19 Aug 2004 01:21:40 -0000 1.1.2.2 @@ -2,6 +2,9 @@ -- -- @author Matthew Geddert openacs@geddert.com -- @creation-date 2004-07-28 +-- @cvs-id $Id$ +-- +-- create function inline_1 () Index: openacs-4/packages/contacts/sql/postgresql/telecom-number-missing-plsql.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/sql/postgresql/Attic/telecom-number-missing-plsql.sql,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/sql/postgresql/telecom-number-missing-plsql.sql 12 Aug 2004 17:38:40 -0000 1.1.2.1 +++ openacs-4/packages/contacts/sql/postgresql/telecom-number-missing-plsql.sql 19 Aug 2004 01:21:40 -0000 1.1.2.2 @@ -1,3 +1,11 @@ +-- telecom-number-missing-plsql.sql +-- +-- @author Matthew Geddert openacs@geddert.com +-- @creation-date 2004-07-28 +-- @cvs-id $Id$ +-- + + create function inline_0 () returns integer as ' declare Index: openacs-4/packages/contacts/sql/postgresql/views-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/sql/postgresql/Attic/views-create.sql,v diff -u -r1.1.2.2 -r1.1.2.3 --- openacs-4/packages/contacts/sql/postgresql/views-create.sql 16 Aug 2004 20:36:39 -0000 1.1.2.2 +++ openacs-4/packages/contacts/sql/postgresql/views-create.sql 19 Aug 2004 01:21:40 -0000 1.1.2.3 @@ -2,6 +2,9 @@ -- -- @author Matthew Geddert openacs@geddert.com -- @creation-date 2004-07-28 +-- @cvs-id $Id$ +-- +-- create table contact_views ( view_id integer Index: openacs-4/packages/contacts/sql/postgresql/views-drop.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/sql/postgresql/Attic/views-drop.sql,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/sql/postgresql/views-drop.sql 12 Aug 2004 17:38:40 -0000 1.1.2.1 +++ openacs-4/packages/contacts/sql/postgresql/views-drop.sql 19 Aug 2004 01:21:40 -0000 1.1.2.2 @@ -2,6 +2,9 @@ -- -- @author Matthew Geddert openacs@geddert.com -- @creation-date 2004-07-28 +-- @cvs-id $Id$ +-- +-- drop table contact_view_names; drop table contact_views; Index: openacs-4/packages/contacts/tcl/address-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/tcl/Attic/address-procs.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/tcl/address-procs.tcl 12 Aug 2004 17:38:40 -0000 1.1.2.1 +++ openacs-4/packages/contacts/tcl/address-procs.tcl 19 Aug 2004 01:21:40 -0000 1.1.2.2 @@ -3,6 +3,8 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ + } namespace eval template {} Index: openacs-4/packages/contacts/tcl/attribute-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/tcl/attribute-procs.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/tcl/attribute-procs.tcl 12 Aug 2004 17:38:40 -0000 1.1.2.1 +++ openacs-4/packages/contacts/tcl/attribute-procs.tcl 19 Aug 2004 01:21:40 -0000 1.1.2.2 @@ -4,6 +4,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } Index: openacs-4/packages/contacts/tcl/category-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/tcl/category-procs.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/tcl/category-procs.tcl 12 Aug 2004 17:38:40 -0000 1.1.2.1 +++ openacs-4/packages/contacts/tcl/category-procs.tcl 19 Aug 2004 01:21:40 -0000 1.1.2.2 @@ -4,6 +4,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } Index: openacs-4/packages/contacts/tcl/contacts-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/tcl/contacts-procs.tcl,v diff -u -r1.1.2.4 -r1.1.2.5 --- openacs-4/packages/contacts/tcl/contacts-procs.tcl 19 Aug 2004 01:02:10 -0000 1.1.2.4 +++ openacs-4/packages/contacts/tcl/contacts-procs.tcl 19 Aug 2004 01:21:40 -0000 1.1.2.5 @@ -4,6 +4,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } Index: openacs-4/packages/contacts/tcl/view-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/tcl/Attic/view-procs.tcl,v diff -u -r1.1.2.3 -r1.1.2.4 --- openacs-4/packages/contacts/tcl/view-procs.tcl 19 Aug 2004 01:02:10 -0000 1.1.2.3 +++ openacs-4/packages/contacts/tcl/view-procs.tcl 19 Aug 2004 01:21:41 -0000 1.1.2.4 @@ -4,6 +4,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } Index: openacs-4/packages/contacts/www/bulk-mail.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/Attic/bulk-mail.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/www/bulk-mail.tcl 12 Aug 2004 17:38:41 -0000 1.1.2.1 +++ openacs-4/packages/contacts/www/bulk-mail.tcl 19 Aug 2004 01:21:41 -0000 1.1.2.2 @@ -3,6 +3,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } { Index: openacs-4/packages/contacts/www/contact-ae.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/Attic/contact-ae.tcl,v diff -u -r1.1.2.2 -r1.1.2.3 --- openacs-4/packages/contacts/www/contact-ae.tcl 19 Aug 2004 01:02:10 -0000 1.1.2.2 +++ openacs-4/packages/contacts/www/contact-ae.tcl 19 Aug 2004 01:21:41 -0000 1.1.2.3 @@ -3,6 +3,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } { {party_id:integer ""} Index: openacs-4/packages/contacts/www/contact-archive.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/Attic/contact-archive.tcl,v diff -u -r1.1.2.2 -r1.1.2.3 --- openacs-4/packages/contacts/www/contact-archive.tcl 18 Aug 2004 20:03:11 -0000 1.1.2.2 +++ openacs-4/packages/contacts/www/contact-archive.tcl 19 Aug 2004 01:21:41 -0000 1.1.2.3 @@ -3,6 +3,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } { {party_id:integer,multiple} Index: openacs-4/packages/contacts/www/contact-category-add.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/Attic/contact-category-add.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/www/contact-category-add.tcl 12 Aug 2004 17:38:41 -0000 1.1.2.1 +++ openacs-4/packages/contacts/www/contact-category-add.tcl 19 Aug 2004 01:21:41 -0000 1.1.2.2 @@ -3,6 +3,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } { } Index: openacs-4/packages/contacts/www/contact-current.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/Attic/contact-current.tcl,v diff -u -r1.1.2.2 -r1.1.2.3 --- openacs-4/packages/contacts/www/contact-current.tcl 18 Aug 2004 20:03:11 -0000 1.1.2.2 +++ openacs-4/packages/contacts/www/contact-current.tcl 19 Aug 2004 01:21:41 -0000 1.1.2.3 @@ -3,6 +3,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } { {party_id:integer,multiple} Index: openacs-4/packages/contacts/www/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/index.tcl,v diff -u -r1.1.2.2 -r1.1.2.3 --- openacs-4/packages/contacts/www/index.tcl 18 Aug 2004 20:03:11 -0000 1.1.2.2 +++ openacs-4/packages/contacts/www/index.tcl 19 Aug 2004 01:21:41 -0000 1.1.2.3 @@ -3,6 +3,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } { {searchterm ""} Index: openacs-4/packages/contacts/www/admin/attribute-add.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/admin/Attic/attribute-add.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/www/admin/attribute-add.tcl 12 Aug 2004 17:38:41 -0000 1.1.2.1 +++ openacs-4/packages/contacts/www/admin/attribute-add.tcl 19 Aug 2004 01:21:41 -0000 1.1.2.2 @@ -4,6 +4,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } { group_id:optional Index: openacs-4/packages/contacts/www/admin/attribute-ae.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/admin/Attic/attribute-ae.tcl,v diff -u -r1.1.2.2 -r1.1.2.3 --- openacs-4/packages/contacts/www/admin/attribute-ae.tcl 18 Aug 2004 20:03:11 -0000 1.1.2.2 +++ openacs-4/packages/contacts/www/admin/attribute-ae.tcl 19 Aug 2004 01:21:41 -0000 1.1.2.3 @@ -4,6 +4,8 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ + } { attribute_id:integer,optional widget_id:integer,optional Index: openacs-4/packages/contacts/www/admin/attribute-depreciate.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/admin/Attic/attribute-depreciate.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/www/admin/attribute-depreciate.tcl 12 Aug 2004 17:38:41 -0000 1.1.2.1 +++ openacs-4/packages/contacts/www/admin/attribute-depreciate.tcl 19 Aug 2004 01:21:41 -0000 1.1.2.2 @@ -2,6 +2,8 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ + } { {attribute_id:integer,multiple} } Index: openacs-4/packages/contacts/www/admin/attribute-restore.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/admin/Attic/attribute-restore.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/www/admin/attribute-restore.tcl 12 Aug 2004 17:38:41 -0000 1.1.2.1 +++ openacs-4/packages/contacts/www/admin/attribute-restore.tcl 19 Aug 2004 01:21:41 -0000 1.1.2.2 @@ -2,6 +2,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } { {attribute_id:integer,multiple} Index: openacs-4/packages/contacts/www/admin/attributes.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/admin/Attic/attributes.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/www/admin/attributes.tcl 12 Aug 2004 17:38:41 -0000 1.1.2.1 +++ openacs-4/packages/contacts/www/admin/attributes.tcl 19 Aug 2004 01:21:41 -0000 1.1.2.2 @@ -4,6 +4,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } { groupby:optional Index: openacs-4/packages/contacts/www/admin/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/admin/index.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/www/admin/index.tcl 12 Aug 2004 17:38:41 -0000 1.1.2.1 +++ openacs-4/packages/contacts/www/admin/index.tcl 19 Aug 2004 01:21:41 -0000 1.1.2.2 @@ -2,6 +2,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } { Index: openacs-4/packages/contacts/www/admin/permissions.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/admin/permissions.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/www/admin/permissions.tcl 12 Aug 2004 17:38:41 -0000 1.1.2.1 +++ openacs-4/packages/contacts/www/admin/permissions.tcl 19 Aug 2004 01:21:41 -0000 1.1.2.2 @@ -3,6 +3,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } { object_id:integer Index: openacs-4/packages/contacts/www/admin/widgets.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/admin/widgets.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/www/admin/widgets.tcl 12 Aug 2004 17:38:41 -0000 1.1.2.1 +++ openacs-4/packages/contacts/www/admin/widgets.tcl 19 Aug 2004 01:21:41 -0000 1.1.2.2 @@ -4,6 +4,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } { groupby:optional Index: openacs-4/packages/contacts/www/cadmin/attributes-answer-optional.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/cadmin/Attic/attributes-answer-optional.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/www/cadmin/attributes-answer-optional.tcl 12 Aug 2004 17:38:41 -0000 1.1.2.1 +++ openacs-4/packages/contacts/www/cadmin/attributes-answer-optional.tcl 19 Aug 2004 01:21:42 -0000 1.1.2.2 @@ -3,6 +3,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } { {attribute_id:integer,multiple} Index: openacs-4/packages/contacts/www/cadmin/attributes-answer-required.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/cadmin/Attic/attributes-answer-required.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/www/cadmin/attributes-answer-required.tcl 12 Aug 2004 17:38:41 -0000 1.1.2.1 +++ openacs-4/packages/contacts/www/cadmin/attributes-answer-required.tcl 19 Aug 2004 01:21:42 -0000 1.1.2.2 @@ -3,6 +3,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ } { {attribute_id:integer,multiple} Index: openacs-4/packages/contacts/www/cadmin/attributes-map.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/cadmin/Attic/attributes-map.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/www/cadmin/attributes-map.tcl 12 Aug 2004 17:38:41 -0000 1.1.2.1 +++ openacs-4/packages/contacts/www/cadmin/attributes-map.tcl 19 Aug 2004 01:21:42 -0000 1.1.2.2 @@ -3,6 +3,8 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ + } { {attribute_id:integer,multiple} {object_id:integer,notnull} Index: openacs-4/packages/contacts/www/cadmin/attributes-order-update.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/cadmin/Attic/attributes-order-update.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/www/cadmin/attributes-order-update.tcl 12 Aug 2004 17:38:41 -0000 1.1.2.1 +++ openacs-4/packages/contacts/www/cadmin/attributes-order-update.tcl 19 Aug 2004 01:21:42 -0000 1.1.2.2 @@ -4,7 +4,9 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ + } { sort_key:array object_id:integer,notnull Index: openacs-4/packages/contacts/www/cadmin/attributes-unmap.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/cadmin/Attic/attributes-unmap.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/www/cadmin/attributes-unmap.tcl 12 Aug 2004 17:38:42 -0000 1.1.2.1 +++ openacs-4/packages/contacts/www/cadmin/attributes-unmap.tcl 19 Aug 2004 01:21:42 -0000 1.1.2.2 @@ -2,7 +2,9 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ + } { {attribute_id:integer,multiple} {object_id:integer,notnull} Index: openacs-4/packages/contacts/www/cadmin/object-map.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/cadmin/Attic/object-map.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/www/cadmin/object-map.tcl 12 Aug 2004 17:38:42 -0000 1.1.2.1 +++ openacs-4/packages/contacts/www/cadmin/object-map.tcl 19 Aug 2004 01:21:42 -0000 1.1.2.2 @@ -6,6 +6,8 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id$ + } { object_id:integer,notnull groupby:optional Index: openacs-4/packages/contacts/www/view/comments-view.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/view/Attic/comments-view.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/packages/contacts/www/view/comments-view.tcl 12 Aug 2004 17:38:42 -0000 1.1.2.1 +++ openacs-4/packages/contacts/www/view/comments-view.tcl 19 Aug 2004 01:21:43 -0000 1.1.2.2 @@ -3,6 +3,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id: } { {party_id:integer} Index: openacs-4/packages/contacts/www/view/contact-view.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/www/view/Attic/contact-view.tcl,v diff -u -r1.1.2.2 -r1.1.2.3 --- openacs-4/packages/contacts/www/view/contact-view.tcl 19 Aug 2004 01:02:10 -0000 1.1.2.2 +++ openacs-4/packages/contacts/www/view/contact-view.tcl 19 Aug 2004 01:21:43 -0000 1.1.2.3 @@ -3,6 +3,7 @@ @author Matthew Geddert openacs@geddert.com @creation-date 2004-07-28 + @cvs-id $Id: } { {party_id:integer}