Hi Mike,
I've noticed you have made some fixes to these problems in PGanswermacros.pl in the CVS.
However one of these fixes involves changing the definition of
the function call of mail_answers_to2(), and you haven't made the
corresponding changes in the problem set SampleQuestionnaires which
uses this routine. Could you please document how to properly call the
new version of mail_answers_to2()? BTW here are some additional small bug fixes:
In profBuildProblemSetPage.pl, the regular expression: my @setHeaderFiles = grep /header.*.pg$/i, recursiveFindFiles($templateDirectory);
selects header files with ".PG" suffix as well as ".pg". Change this to my @setHeaderFiles = grep /.pg$/,grep /header/i, recursiveFindFiles($templateDirectory);
In profEditCourseFiles.pl the regular expression is garbled: @filenames = grep /.*header.*.pg$/i, recursiveFindFiles($currentDir);
Change this to: @filenames = grep /.pg$/,grep /header/i, recursiveFindFiles($currentDir);
Regards,
Zig
<| Post or View Comments |> |