ad_scope_admin_page_top

one of the documented procedures in this installation of the ACS
Usage:
ad_scope_admin_page_top   window_title   page_title   { context_bar_title "" }
What it does:
ad_scope_admin_page_top combines admin header, admin page title, admin context bar and horizontal line and generates a standard looking admin top of the page. window_title is the title that should appear in the browser window. page_title is the title that will be displayed on the page. context_bar_title is the title appearing as the last item in the context bar. if context_bar_title is empty or not provided then page_title will be used instead of context_bar_title. if scope is not set in the topmost environment then public scope is assumed. if scope=group, it assumes that group_vars_set is set in the topmost environment.
Defined in: /web/philip/tcl/ad-scope.tcl

Source code:


    set db [ns_db gethandle subquery]
    
    set return_val "
    [ad_scope_admin_header $window_title $db]
    [ad_scope_admin_page_title $page_title $db]
    "
    ns_db releasehandle $db
    append return_val "[ad_scope_admin_context_bar [ad_decode $context_bar_title "" $page_title $context_bar_title]]
    <hr>
    "

    return $return_val


philg@mit.edu