Method code for $page_bin_index._make_show_object_href()

[Turn off line numbering]
  1: arg msg, obj, what, change, value;
  2: var show, x;
  3: 
  4: // used by ._show_object()
  5: what = dict_add(what, change, value);
  6: show = map x in (what) to (x[1] + "=" + (x[2] ? "yes" : "no")).join("&");
  7: if (show)
  8:     return "[<a href=\"/bin/display?target=" + obj.objname() + "&" + show + "\">" + msg + "</a>]";
  9: return "[<a href=\"/bin/display?target=" + obj.objname() + "\">" + msg + "</a>]";

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

Tlon