Method code for $parse_lib.html_traceback()

[Turn off line numbering]
  1: arg t, status;
  2: var line, out, x;
  3: 
  4: out = "<h2>" + t[1][2].to_html() + "</h2>";
  5: out += "<i><b>Thrown by " + ._html_traceback(@t[2]) + "</b></i><p>";
  6: for x in [3 .. listlen(t)]
  7:     out += "<code><i>" + t[x][1] + "</i>: " + ._html_traceback(@t[x]) + "</code><br>";
  8: return $http.response(status, out + "</p>");

// Created 27-Mar-1995 as a part of ColdCore, see: @help Credit

Tlon