Method code for $page_bin_index._list_gateways()

[Turn off line numbering]
  1: var out, line, gate;
  2: 
  3: out = ["<ul>"];
  4: for gate in (gateways) {
  5:     line = "<li><b><a href=\"/bin/" + gate + "\">" + gate + "</a></b>";
  6:     out += [line];
  7: }
  8: return out + ["</ul>"];

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

Tlon