ec_product_review_summary

one of the documented procedures in this installation of the ACS
Usage:
ec_product_review_summary   author_name   publication   review_date
What it does:
Returns a one-line user-readable summary of a product review
Defined in: /web/philip/tcl/ecommerce-defs.tcl

Source code:


    set result_list [list]
    if ![empty_string_p $author_name] {
	lappend result_list $author_name
    }
    if ![empty_string_p $publication] {
	lappend result_list "<cite>$publication</cite>"
    }
    if ![empty_string_p $review_date] {
	lappend result_list [util_AnsiDatetoPrettyDate $review_date]
    }
    return [join $result_list ", "]


philg@mit.edu