• Publicity: Public Only All

forum-message-reply-procs.tcl

Forums Library - Reply Handling

Location:
packages/forums/tcl/forum-message-reply-procs.tcl
Created:
2002-05-17
Author:
Ben Adida
CVS Identification:
$Id: forum-message-reply-procs.tcl,v 1.5 2018/07/10 10:32:02 antoniop Exp $

Procedures in this file

Detailed information

forum::message::notification::get_url (public, deprecated)

 forum::message::notification::get_url object_id
Deprecated. Invoking this procedure generates a warning.

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.

Parameters:
object_id
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3

Testcases:
No testcase defined.

forum::message::notification::process_reply (public, deprecated)

 forum::message::notification::process_reply reply_id
Deprecated. Invoking this procedure generates a warning.

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.

Parameters:
reply_id
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3

Testcases:
No testcase defined.
[ hide source ] | [ make this the default ]

Content File Source

ad_library {

    Forums Library - Reply Handling

    @creation-date 2002-05-17
    @author Ben Adida <ben@openforce.biz>
    @cvs-id $Id: forum-message-reply-procs.tcl,v 1.5 2018/07/10 10:32:02 antoniop Exp $

}

namespace eval forum::message::notification {

    d_proc -deprecated -public get_url {
        object_id
    } {
        NotificationType.GetURL Service Contract implementation..<br>
        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
    } -

    d_proc -deprecated -public process_reply {
        reply_id
    } {
        NotificationType.ProcessReply Service Contract implementation.<br>
        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
    } -
    
}

# Local variables:
#    mode: tcl
#    tcl-indent-level: 4
#    indent-tabs-mode: nil
# End: