events_pretty_venue

one of the documented procedures in this installation of the ACS
Usage:
events_pretty_venue   db   venue_id
What it does:
returns a pretty location based upon a venue_id. If the venue_id is invalid, returns an empty string
Defined in: /web/philip/tcl/events-defs.tcl

Source code:


    set selection [ns_db 0or1row $db "select
    city, usps_abbrev, iso
    from events_venues
    where venue_id = $venue_id"]
    
    if {[empty_string_p $selection]} {
	return ""
    }

    set_variables_after_query

    return [events_pretty_location $db $city $usps_abbrev $iso]


philg@mit.edu