Roundup Tracker - Issues

Message8093

Author rouilj
Recipients rouilj
Date 2024-06-19.01:54:44
Message-id <1718762084.76.0.433955745371.issue2551358@roundup.psfhosted.org>
In-reply-to
A lot of the javascript in Roundup looks like:

  <script>
     <!--
    var text_field = document.frm_help.text_preview;
    original_field=form[field].value;
    text_field.value=original_field;
    //-->
  </script>

The html comment marker and (js) commented out end html comment marker
was a trick for netscape 1.0 to not show script code (since it didn't know to
hide stuff inside a script tag). It should be removed everywhere it occurs.

Since we don't have a javascript testing frame work in place, testing the
javascript will have to be manual.

This is a simple set of edits good for a first timer.

ref: https://stackoverflow.com/questions/808816/are-html-comments-inside-script-tags-a-best-
practice
History
Date User Action Args
2024-06-19 01:54:44rouiljsetrecipients: + rouilj
2024-06-19 01:54:44rouiljsetmessageid: <1718762084.76.0.433955745371.issue2551358@roundup.psfhosted.org>
2024-06-19 01:54:44rouiljlinkissue2551358 messages
2024-06-19 01:54:44rouiljcreate