Method code for $page_bin_index._show_header_objs()

[Turn on line numbering]
arg objs, what;
var o, line;

if (objs.length() > 1) {
    line = "<tr><td><b>" + what + "s</b>:</td><td>" + ._make_object_href(objs[1]);
    for o in (objs.subrange(2))
        line += ", " + ._make_object_href(o);
    line += "</td></tr>";
} else if (objs.length() == 1) {
    line = "<tr><td><b>" + what + "</b>:</td><td>" + ._make_object_href(objs[1]) + "</td></tr>";
} else {
    line = "<tr><td><b>" + what + "</b>:</td><td>(none)</td></tr>";
}
return line;

// Brad Roberts
// Bruce Mitchener, Jr.
// Created 16-May-1997 as a part of ColdCore, see: @help Credit

Tlon