naughty_bounceable_naughtiness_mask

one of the documented procedures in this installation of the ACS
Usage:
naughty_bounceable_naughtiness_mask
What it does:
Returns a mask suitable for ANDing with a content tag. If the result is non-zero, you've got bounceable naughtiness.
Defined in: /web/philip/tcl/ad-content-tagging.tcl

Source code:


    set bounceable_naughtiness 0
    if {[ad_parameter XBounceP content-tagging]} {
	incr bounceable_naughtiness 4
    }
    if {[ad_parameter RBounceP content-tagging]} {
	incr bounceable_naughtiness 2 
    }
    if {[ad_parameter PGBounceP content-tagging]} {
	incr bounceable_naughtiness 1
    }
    return $bounceable_naughtiness


philg@mit.edu