jamiesensei [Wed, 7 May 2008 14:38:18 +0000 (14:38 +0000)]
MDL-14201 "Summary graph" included a summary graph at the bottom of overview report page. Shows the distribution of grades achieved by students. If a group is selected the grades from the group are compared with the grades for all participants.
tjhunt [Wed, 7 May 2008 13:34:54 +0000 (13:34 +0000)]
MDL-14727 - Do a database update to fix random questions with the wrong parent (there may be some of these floating around in people's databases becuase of MDL-5482.)
tjhunt [Wed, 7 May 2008 12:32:03 +0000 (12:32 +0000)]
MDL-5482 - Backup and restore problems for match, random and truefalse question types.
All the credit goes to Paulo Matos who carefully worked out and tested this fix, and updated the patch several times over more than a year while I very slowly got around to reviewing it and checking it in.
jamiesensei [Tue, 6 May 2008 18:04:03 +0000 (18:04 +0000)]
For the overview report : MDL-14199 "Option to only show / export final grade" and MDL-14198 "Make it clear which student attempt gives the final grade, if the scoring method is first, last or highest score" fixed a small problem I noticed in this patch.
jamiesensei [Tue, 6 May 2008 17:34:39 +0000 (17:34 +0000)]
For the overview report : MDL-14199 "Option to only show / export final grade" and MDL-14198 "Make it clear which student attempt gives the final grade, if the scoring method is first, last or highest score"
jamiesensei [Mon, 5 May 2008 13:12:11 +0000 (13:12 +0000)]
For overview report - MDL-14185 "Switch to using formslib and improve the interface" and MDL-14186 "Switch to using moodle_url and eliminate the use of $SESSION global"
stronk7 [Mon, 5 May 2008 00:09:58 +0000 (00:09 +0000)]
Glossary concepts must support multilang filter (all filters, in fact).
And accesible alt texts for action buttons too. MDL-14687 ; merged from 19_STABLE
jamiesensei [Sat, 3 May 2008 13:06:49 +0000 (13:06 +0000)]
MDL-14677 "should rescale the grades displayed for each question in the detailed marks view of the overview report so that all grades add up to the sum total grade" used quiz_rescale_grades function to rescale the grade properly before displaying it. Also this patch includes some general clean up and refactoring of overview report.
jamiesensei [Fri, 2 May 2008 16:11:30 +0000 (16:11 +0000)]
MDL-14663 "link_to_popup_window displays 'Click here....' as the link text if you pass in 0 as the link text."
Also fixing the problem in link_to_popup_window function. Test for null instead of empty.
jamiesensei [Fri, 2 May 2008 15:11:59 +0000 (15:11 +0000)]
MDL-14666 "overview report is very inefficient when view detailed marks is selected. There are several sql queries per row." Made a new query outside the loop for adding rows.
jamiesensei [Fri, 2 May 2008 14:21:33 +0000 (14:21 +0000)]
MDL-14664 "sorting by question mark when viewing detailled mark in overview quiz report not working" Found that the problem ocurred when attempt.id != attempt.uniqueid as the sql was using the wrong field to join the question records.
jamiesensei [Fri, 2 May 2008 13:27:49 +0000 (13:27 +0000)]
MDL-14663 "link_to_popup_window displays 'Click here....' as the link text if you pass in 0 as the link text."
Solved this by formatting the grade using number_format to display the grade with a number of decimal places. So for 0 we display something like 0.00 and this displays OK in link_to_popup_window.