Forum OpenACS Development: Re: Notifications tutorial

Collapse
Posted by Jade Rubick on
This is a great contribution. Thanks, David.

You also need to create the procedures referred to as:

job::notification::get_url
job::notification::process_reply

I'm not totally sure what goes in them. In the workflow package, there are just stubs there. Ben Bytheway said that get_url takes an object_id and returns a URL.

This is my first stab at it in project-manager. No guarantees:

ad_library {

    Project Manager Projects Library

    Procedures that deal with tasks

    @creation-date 2003-12-18
    @author Jade Rubick <mailto:jader@bread.com>
    @cvs-id $Id$

}

namespace eval project_manager::task {}

ad_proc -public project_manager::task::get_url {
    object_id
} {

}

ad_proc -public project_manager::task::process_reply {
    reply_id
} {

}