function processRow()

in js/details.js [296:313]


function processRow(ct, bugId, flagId, flagIdx, assignee, s, p, platform, flags, msg, cmtIdx, title, nisetter) {
  // flagId is the bugzilla flagid of the ni that set this user's ni. We use it
  // in comment links.

  let d = new Date(Date.parse(ct));

  // comment simplification steps
  let msgClean = msg;
  let clipIdx = msg.indexOf('For more information');
  if (clipIdx != -1) {
    msgClean = msg.substring(0, clipIdx);
  }

  if (platform == 'Unspecified')
    platform = '';

  addRec(d, bugId, flagId, flagIdx, assignee, s, p, platform, msgClean, cmtIdx, title, flags, nisetter);
}