Index: openacs-4/packages/acs-tcl/tcl/navigation-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/navigation-procs.tcl,v diff -u -r1.32.2.8 -r1.32.2.9 --- openacs-4/packages/acs-tcl/tcl/navigation-procs.tcl 16 Jan 2017 18:10:56 -0000 1.32.2.8 +++ openacs-4/packages/acs-tcl/tcl/navigation-procs.tcl 8 Feb 2017 11:05:41 -0000 1.32.2.9 @@ -625,41 +625,46 @@ # append return_string "" # } -proc ad_menu_footer {{section ""}} { +# -- +# apisano 2017-02-08: this proc is obsolete and currently broken, as +# ad_naked_html_patterns is not defined anywhere on the +# system. Therefore, I am commenting it out. +# -- +# proc ad_menu_footer {{section ""}} { - # if it is an excluded directory, just return - set url_stub [ad_conn url] - set full_filename "$::acs::pageroot$url_stub" +# # if it is an excluded directory, just return +# set url_stub [ad_conn url] +# set full_filename "$::acs::pageroot$url_stub" - foreach naked_pattern [ad_naked_html_patterns] { - if { [string match $naked_pattern $url_stub] } { - return "" - } - } +# foreach naked_pattern [ad_naked_html_patterns] { +# if { [string match $naked_pattern $url_stub] } { +# return "" +# } +# } - set netscape3_p 0 +# set netscape3_p 0 - if {[netscape3_browser]} { - set netscape3_p 1 - } +# if {[netscape3_browser]} { +# set netscape3_p 1 +# } - append return_string "" +# append return_string "" - # close up the table - if {$netscape3_p != 1} { - append return_string " - " - } +# # close up the table +# if {$netscape3_p != 1} { +# append return_string " +# " +# } - # bottom bar +# # bottom bar - append return_string " - - - -
\"top\"\"rules\"\"help\"
" - return $return_string -} +# append return_string " +# +# +# +#
\"top\"\"rules\"\"help\"
" +# return $return_string +# } # Local variables: