Forum OpenACS Improvement Proposals (TIPs): [NOT TIP] Add ContextBarSeparator to acs-subsite parameters

To allow easier customization of the look of the context bar, I propose to add a ContextBarSeparator parameter to asc-subsite.  This should allow an html snippet so that an image could be used, and default to " : "

This requires the following patches:
packages/acs-subsite/acs-subsite.info:
add new parameter:
            <parameter datatype="string"  min_n_values="1"  max_n_values="1"  name="ContextBarSeparator"  default=" : " description="Separator to use for the context bar"/>

packages/acs-tcl/tcl/navigation-procs.tcl:
Add new code at line 122:
set separator [parameter::get -package_id [site_node_closest_ancestor_package "acs-subsite"] -parameter ContextBarSeparator]

Collapse
Posted by Joel Aufrecht on
I don't think this needs to be TIPped; it could just be a patch.