Index: openacs-4/packages/acs-core-docs/www/objects.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/objects.adp,v diff -u -r1.1.2.8 -r1.1.2.9 --- openacs-4/packages/acs-core-docs/www/objects.adp 9 Jun 2016 13:03:11 -0000 1.1.2.8 +++ openacs-4/packages/acs-core-docs/www/objects.adp 10 Jun 2016 07:35:08 -0000 1.1.2.9 @@ -83,7 +83,7 @@ for the PG version) file created when we created the package. Then, do the following:
First, add an entry to the acs_object_types
table with the following
PL/SQL call:
begin @@ -139,7 +139,7 @@ attributes, so there is no need for us to define them.
The next thing we do is make a small modification to the data
model to reflect the fact that each row in the notes
table represents something that is
not only an object of type note
, but also an acs_object
. The new table definition looks
@@ -163,7 +163,7 @@
acs_objects
.
The next step is to define a PL/SQL package for your new type, and write some basic procedures to create and delete objects. Here is a package definition for our new type:
@@ -210,7 +210,7 @@ We'll talk about this more later.