Index: openacs-4/packages/acs-content-repository/acs-content-repository.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-content-repository/acs-content-repository.info,v
diff -u -r1.103.2.12 -r1.103.2.13
--- openacs-4/packages/acs-content-repository/acs-content-repository.info 9 Aug 2014 19:33:16 -0000 1.103.2.12
+++ openacs-4/packages/acs-content-repository/acs-content-repository.info 30 Aug 2014 16:43:22 -0000 1.103.2.13
@@ -7,7 +7,7 @@
t
t
-
+
OpenACS
The canonical repository for OpenACS content.
2013-09-08
@@ -19,7 +19,7 @@
GPL
3
-
+
Index: openacs-4/packages/acs-content-repository/sql/postgresql/content-template.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-content-repository/sql/postgresql/content-template.sql,v
diff -u -r1.25 -r1.25.2.1
--- openacs-4/packages/acs-content-repository/sql/postgresql/content-template.sql 7 Jul 2011 10:46:02 -0000 1.25
+++ openacs-4/packages/acs-content-repository/sql/postgresql/content-template.sql 30 Aug 2014 16:43:22 -0000 1.25.2.1
@@ -18,6 +18,9 @@
--
-- procedure content_template__get_root_folder/0
--
+
+select define_function_args('content_template__get_root_folder','');
+
CREATE OR REPLACE FUNCTION content_template__get_root_folder(
) RETURNS integer AS $$
Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/acs-content-repository/sql/postgresql/upgrade/upgrade-5.8.1d7-5.8.1d8.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Index: openacs-4/packages/file-storage/file-storage.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/file-storage/file-storage.info,v
diff -u -r1.54.2.6 -r1.54.2.7
--- openacs-4/packages/file-storage/file-storage.info 1 Apr 2014 18:37:32 -0000 1.54.2.6
+++ openacs-4/packages/file-storage/file-storage.info 30 Aug 2014 16:50:01 -0000 1.54.2.7
@@ -7,7 +7,7 @@
f
f
-
+
OpenACS
Collaborative document storage
2013-09-08
@@ -17,7 +17,7 @@
2
#file-storage.file-storage#
-
+
Index: openacs-4/packages/file-storage/sql/postgresql/file-storage-package-create.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/file-storage/sql/postgresql/file-storage-package-create.sql,v
diff -u -r1.26 -r1.26.2.1
--- openacs-4/packages/file-storage/sql/postgresql/file-storage-package-create.sql 30 Mar 2013 22:50:45 -0000 1.26
+++ openacs-4/packages/file-storage/sql/postgresql/file-storage-package-create.sql 30 Aug 2014 16:50:01 -0000 1.26.2.1
@@ -503,6 +503,7 @@
END;
$$ LANGUAGE plpgsql;
+select define_function_args('file_storage__get_parent_id','item_id');
CREATE OR REPLACE FUNCTION file_storage__get_parent_id (
get_parent_id__item_id integer
Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/file-storage/sql/postgresql/upgrade/upgrade-5.8.1d3-5.8.1d4.sql'.
Fisheye: No comparison available. Pass `N' to diff?
Index: openacs-4/packages/notifications/notifications.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/notifications.info,v
diff -u -r1.53.2.9 -r1.53.2.10
--- openacs-4/packages/notifications/notifications.info 9 Aug 2014 19:33:17 -0000 1.53.2.9
+++ openacs-4/packages/notifications/notifications.info 30 Aug 2014 16:47:07 -0000 1.53.2.10
@@ -8,7 +8,7 @@
t
notifications
-
+
OpenACS
Email notifications management
2013-09-08
@@ -17,7 +17,7 @@
3
#notifications.Notifications#
-
+
Index: openacs-4/packages/notifications/sql/postgresql/notifications-package-create.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/sql/postgresql/notifications-package-create.sql,v
diff -u -r1.16 -r1.16.2.1
--- openacs-4/packages/notifications/sql/postgresql/notifications-package-create.sql 30 Mar 2013 22:01:09 -0000 1.16
+++ openacs-4/packages/notifications/sql/postgresql/notifications-package-create.sql 30 Aug 2014 16:47:07 -0000 1.16.2.1
@@ -46,10 +46,8 @@
$$ LANGUAGE plpgsql;
-select define_function_args ('notification_interval__delete','interval_id');
-
-
+select define_function_args ('notification_interval__delete','interval_id');
--
-- procedure notification_interval__delete/1
--
@@ -105,6 +103,11 @@
$$ LANGUAGE plpgsql;
+--
+-- procedure notification_delivery_method__delete/1
+--
+select define_function_args ('notification_delivery_method__delete','delivery_method_id');
+
CREATE OR REPLACE FUNCTION notification_delivery_method__delete(
p_delivery_method_id integer
) RETURNS integer AS $$
@@ -116,11 +119,12 @@
$$ LANGUAGE plpgsql;
--- Notification Types Package
+--
+-- procedure notification_type__new/9
+--
+
select define_function_args ('notification_type__new','type_id,sc_impl_id,short_name,pretty_name,description,creation_date,creation_user,creation_ip,context_id');
--- implementation
-
CREATE OR REPLACE FUNCTION notification_type__new (
p_type_id integer,
p_sc_impl_id integer,
@@ -151,13 +155,12 @@
END;
$$ LANGUAGE plpgsql;
-select define_function_args ('notification_type__delete','type_id');
-
-
--
-- procedure notification_type__delete/1
--
+select define_function_args ('notification_type__delete','type_id');
+
CREATE OR REPLACE FUNCTION notification_type__delete(
p_type_id integer
) RETURNS integer AS $$
@@ -168,6 +171,11 @@
END;
$$ LANGUAGE plpgsql;
+
+--
+-- procedure notification_request__new/13
+--
+
select define_function_args ('notification_request__new','request_id,object_type;notification_request,type_id,user_id,object_id,interval_id,delivery_method_id,format,dynamic_p;f,creation_date,creation_user,creation_ip,context_id');
create function notification_request__new (
@@ -204,13 +212,12 @@
END;
$$ LANGUAGE plpgsql;
-select define_function_args ('notification_request__delete','request_id');
-
-
--
-- procedure notification_request__delete/1
--
+select define_function_args ('notification_request__delete','request_id');
+
CREATE OR REPLACE FUNCTION notification_request__delete(
p_request_id integer
) RETURNS integer AS $$
@@ -230,13 +237,12 @@
END;
$$ LANGUAGE plpgsql;
-select define_function_args ('notification_request__delete_all', 'object_id');
-
-
--
-- procedure notification_request__delete_all/1
--
+select define_function_args ('notification_request__delete_all', 'object_id');
+
CREATE OR REPLACE FUNCTION notification_request__delete_all(
p_object_id integer
) RETURNS integer AS $$
@@ -254,13 +260,12 @@
END;
$$ LANGUAGE plpgsql;
-select define_function_args ('notification_request__delete_all_for_user', 'user_id');
-
-
--
-- procedure notification_request__delete_all_for_user/1
--
+select define_function_args ('notification_request__delete_all_for_user', 'user_id');
+
CREATE OR REPLACE FUNCTION notification_request__delete_all_for_user(
p_user_id integer
) RETURNS integer AS $$
@@ -279,13 +284,12 @@
$$ LANGUAGE plpgsql;
-select define_function_args ('notification__new','notification_id,type_id,object_id,notif_date,response_id,notif_user,notif_subject,notif_text,notif_html,file_ids,creation_date,creation_user,creation_ip,context_id');
-
-
-
--
-- procedure notification__new/14
--
+
+select define_function_args ('notification__new','notification_id,type_id,object_id,notif_date,response_id,notif_user,notif_subject,notif_text,notif_html,file_ids,creation_date,creation_user,creation_ip,context_id');
+
CREATE OR REPLACE FUNCTION notification__new(
p_notification_id integer,
p_type_id integer,
@@ -331,13 +335,12 @@
END;
$$ LANGUAGE plpgsql;
-select define_function_args ('notification__delete','notification_id');
-
-
--
-- procedure notification__delete/1
--
+select define_function_args ('notification__delete','notification_id');
+
CREATE OR REPLACE FUNCTION notification__delete(
p_notification_id integer
) RETURNS integer AS $$
Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/packages/notifications/sql/postgresql/upgrade/upgrade-5.8.1d3-5.8.1d4.sql'.
Fisheye: No comparison available. Pass `N' to diff?