Index: openacs-4/packages/acs-kernel/acs-kernel.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-kernel/acs-kernel.info,v
diff -u -r1.129.2.12 -r1.129.2.13
--- openacs-4/packages/acs-kernel/acs-kernel.info 11 Sep 2014 10:52:04 -0000 1.129.2.12
+++ openacs-4/packages/acs-kernel/acs-kernel.info 13 Sep 2014 09:32:56 -0000 1.129.2.13
@@ -7,15 +7,15 @@
t
t
-
+
OpenACS Core Team
Routines and data models providing the foundation for OpenACS-based Web services.
2013-09-08
OpenACS
The OpenACS kernel contains the core datamodel create and drop scripts for such things as objects, groups, partiies and the supporting PL/SQL and PL/pgSQL procedures.
3
-
+
Index: openacs-4/packages/acs-kernel/sql/postgresql/acs-objects-create.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-kernel/sql/postgresql/acs-objects-create.sql,v
diff -u -r1.64 -r1.64.2.1
--- openacs-4/packages/acs-kernel/sql/postgresql/acs-objects-create.sql 7 Jul 2011 10:46:02 -0000 1.64
+++ openacs-4/packages/acs-kernel/sql/postgresql/acs-objects-create.sql 13 Sep 2014 09:32:56 -0000 1.64.2.1
@@ -659,7 +659,7 @@
-- ACS_OBJECT PACKAGE --
------------------------
-select define_function_args('acs_object__initialize_attributes','initialize_attributes__object_id');
+select define_function_args('acs_object__initialize_attributes','object_id');
@@ -1000,7 +1000,7 @@
-- function name
-select define_function_args('acs_object__name','name__object_id');
+select define_function_args('acs_object__name','object_id');
@@ -1070,7 +1070,7 @@
-- function default_name
-select define_function_args('acs_object__default_name','default_name__object_id');
+select define_function_args('acs_object__default_name','object_id');
@@ -1439,7 +1439,7 @@
-- function check_context_index
-select define_function_args('acs_object__check_context_index','check_context_index__object_id,check_context_index__ancestor_id,check_context_index__n_generations');
+select define_function_args('acs_object__check_context_index','object_id,ancestor_id,n_generations');
@@ -1628,7 +1628,7 @@
-- function check_path
-select define_function_args('acs_object__check_path','check_path__object_id,check_path__ancestor_id');
+select define_function_args('acs_object__check_path','object_id,ancestor_id');
@@ -1677,7 +1677,7 @@
-- function check_representation
-select define_function_args('acs_object__check_representation','check_representation__object_id');
+select define_function_args('acs_object__check_representation','object_id');
@@ -1777,8 +1777,6 @@
--- added
-
--
-- procedure acs_object__update_last_modified/3
--
@@ -1795,8 +1793,7 @@
--- added
-select define_function_args('acs_object__update_last_modified','update_last_modified__object_id,update_last_modified__modifying_user,update_last_modified__modifying_ip,update_last_modified__last_modified;now()');
+select define_function_args('acs_object__update_last_modified','object_id,modifying_user,modifying_ip,last_modified;now()');
--
-- procedure acs_object__update_last_modified/4