Index: openacs-4/packages/acs-core-docs/www/parties.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/parties.html,v diff -u -r1.43 -r1.44 --- openacs-4/packages/acs-core-docs/www/parties.html 5 Aug 2006 05:18:20 -0000 1.43 +++ openacs-4/packages/acs-core-docs/www/parties.html 25 Sep 2006 20:32:37 -0000 1.44 @@ -28,7 +28,7 @@ party_id not null constraint parties_party_id_fk references acs_objects (object_id) - constraint parties_pk primary key, + constraint parties_party_id_pk primary key, email varchar(100) constraint parties_email_un unique, url varchar(200) @@ -55,7 +55,7 @@ person_id not null constraint persons_person_id_fk references parties (party_id) - constraint persons_pk primary key, + constraint persons_person_id_pk primary key, first_names varchar(100) not null, last_name varchar(100) not null ); @@ -84,7 +84,7 @@ user_id not null constraint users_user_id_fk references persons (person_id) - constraint users_pk primary key, + constraint users_user_id_pk primary key, password varchar(100), salt varchar(100), screen_name varchar(100) @@ -117,7 +117,7 @@ group_id not null constraint groups_group_id_fk references parties (party_id) - constraint groups_pk primary key, + constraint groups_group_id_pk primary key, group_name varchar(100) not null ); Index: openacs-4/packages/acs-core-docs/www/permissions-tediously-explained.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/permissions-tediously-explained.html,v diff -u -r1.39 -r1.40 --- openacs-4/packages/acs-core-docs/www/permissions-tediously-explained.html 5 Aug 2006 05:18:20 -0000 1.39 +++ openacs-4/packages/acs-core-docs/www/permissions-tediously-explained.html 25 Sep 2006 20:32:37 -0000 1.40 @@ -338,7 +338,7 @@ party_id not null constraint parties_party_id_fk references acs_objects (object_id) - constraint parties_pk primary key, + constraint parties_party_id_pk primary key, email varchar2(100) constraint parties_email_un unique, url varchar2(200) @@ -348,7 +348,7 @@ person_id not null constraint persons_person_id_fk references parties (party_id) - constraint persons_pk primary key, + constraint persons_person_id_pk primary key, first_names varchar2(100) not null, last_name varchar2(100) @@ -359,7 +359,7 @@ user_id not null constraint users_user_id_fk references persons (person_id) - constraint users_pk primary key, + constraint users_user_id_pk primary key, password char(40), -- other attributes ); @@ -368,7 +368,7 @@ group_id not null constraint groups_group_id_fk references parties (party_id) - constraint groups_pk primary key, + constraint groups_group_id_pk primary key, group_name varchar2(100) not null );
Index: openacs-4/packages/acs-core-docs/www/xml/developers-guide/parties.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/developers-guide/parties.xml,v
diff -u -r1.8 -r1.9
--- openacs-4/packages/acs-core-docs/www/xml/developers-guide/parties.xml 5 Aug 2006 05:18:21 -0000 1.8
+++ openacs-4/packages/acs-core-docs/www/xml/developers-guide/parties.xml 25 Sep 2006 20:32:37 -0000 1.9
@@ -62,7 +62,7 @@
party_id not null
constraint parties_party_id_fk references
acs_objects (object_id)
- constraint parties_pk primary key,
+ constraint parties_party_id_pk primary key,
email varchar(100)
constraint parties_email_un unique,
url varchar(200)
@@ -100,7 +100,7 @@
person_id not null
constraint persons_person_id_fk
references parties (party_id)
- constraint persons_pk primary key,
+ constraint persons_person_id_pk primary key,
first_names varchar(100) not null,
last_name varchar(100) not null
);
@@ -140,7 +140,7 @@
user_id not null
constraint users_user_id_fk
references persons (person_id)
- constraint users_pk primary key,
+ constraint users_user_id_pk primary key,
password varchar(100),
salt varchar(100),
screen_name varchar(100)
@@ -182,7 +182,7 @@
group_id not null
constraint groups_group_id_fk
references parties (party_id)
- constraint groups_pk primary key,
+ constraint groups_group_id_pk primary key,
group_name varchar(100) not null
);
Index: openacs-4/packages/acs-core-docs/www/xml/developers-guide/permissions-tediously-explained-es.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/developers-guide/permissions-tediously-explained-es.xml,v
diff -u -r1.2 -r1.3
--- openacs-4/packages/acs-core-docs/www/xml/developers-guide/permissions-tediously-explained-es.xml 17 Jul 2006 05:38:37 -0000 1.2
+++ openacs-4/packages/acs-core-docs/www/xml/developers-guide/permissions-tediously-explained-es.xml 25 Sep 2006 20:32:37 -0000 1.3
@@ -420,7 +420,7 @@
party_id
not null
constraint parties_party_id_fk references acs_objects (object_id)
- constraint parties_pk primary key,
+ constraint parties_party_id_pk primary key,
email varchar2(100)
constraint parties_email_un unique,
url varchar2(200)
@@ -432,7 +432,7 @@
person_id
not null
constraint persons_person_id_fk references parties (party_id)
- constraint persons_pk primary key,
+ constraint persons_person_id_pk primary key,
first_names varchar2(100)
not null,
last_name varchar2(100)
@@ -445,7 +445,7 @@
user_id
not null
constraint users_user_id_fk references persons (person_id)
- constraint users_pk primary key,
+ constraint users_user_id_pk primary key,
password char(40),
-- other attributes
);
@@ -456,7 +456,7 @@
group_id
not null
constraint groups_group_id_fk references parties (party_id)
- constraint groups_pk primary key,
+ constraint groups_group_id_pk primary key,
group_name varchar2(100) not null
);
@@ -535,8 +535,8 @@