Index: openacs-4/packages/forums/tcl/forum-message-reply-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/forums/tcl/forum-message-reply-procs.tcl,v
diff -u -r1.4 -r1.5
--- openacs-4/packages/forums/tcl/forum-message-reply-procs.tcl 10 Jul 2018 10:03:30 -0000 1.4
+++ openacs-4/packages/forums/tcl/forum-message-reply-procs.tcl 10 Jul 2018 10:32:02 -0000 1.5
@@ -10,16 +10,26 @@
namespace eval forum::message::notification {
- ad_proc -public get_url {
+ ad_proc -deprecated -public get_url {
object_id
} {
- NotificationType.GetURL Service Contract implementation.
+ NotificationType.GetURL Service Contract implementation..
+ This proc was always empty and is currently not used anywhere
+ in upstream code. Is most likely superseded by its
+ forum::notification counterpart.
+
+ @see forum::notification::get_url
} -
- ad_proc -public process_reply {
+ ad_proc -deprecated -public process_reply {
reply_id
} {
- NotificationType.ProcessReply Service Contract implementation.
+ NotificationType.ProcessReply Service Contract implementation.
+ This proc was always empty and is currently not used anywhere
+ in upstream code. Is most likely superseded by its
+ forum::notification counterpart.
+
+ @see forum::notification::process_reply
} -
}