<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
	<id>http://wiki.mipt.ru/index.php?action=history&amp;feed=atom&amp;title=Grades_min_max</id>
	<title>Grades min max - История изменений</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.mipt.ru/index.php?action=history&amp;feed=atom&amp;title=Grades_min_max"/>
	<link rel="alternate" type="text/html" href="http://wiki.mipt.ru/index.php?title=Grades_min_max&amp;action=history"/>
	<updated>2026-05-07T06:32:07Z</updated>
	<subtitle>История изменений этой страницы в вики</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>http://wiki.mipt.ru/index.php?title=Grades_min_max&amp;diff=1305&amp;oldid=prev</id>
		<title>Олег Давидович: 1 версия импортирована</title>
		<link rel="alternate" type="text/html" href="http://wiki.mipt.ru/index.php?title=Grades_min_max&amp;diff=1305&amp;oldid=prev"/>
		<updated>2024-10-14T18:18:01Z</updated>

		<summary type="html">&lt;p&gt;1 версия импортирована&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Предыдущая версия&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Версия от 18:18, 14 октября 2024&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Олег Давидович</name></author>
	</entry>
	<entry>
		<id>http://wiki.mipt.ru/index.php?title=Grades_min_max&amp;diff=1304&amp;oldid=prev</id>
		<title>1&gt;Tim@horizoneducationnetwork.org: Grammar, spelling, and punctuation fixes for clarity</title>
		<link rel="alternate" type="text/html" href="http://wiki.mipt.ru/index.php?title=Grades_min_max&amp;diff=1304&amp;oldid=prev"/>
		<updated>2023-01-03T13:31:54Z</updated>

		<summary type="html">&lt;p&gt;Grammar, spelling, and punctuation fixes for clarity&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Grades}}&lt;br /&gt;
==Summary==&lt;br /&gt;
&lt;br /&gt;
When grading in Moodle, either in an activity or directly in the gradebook, you assign the student a score from a specified range. The Grades min max setting controls how the grade will be displayed if the maximum or minimum grades are changed after a student has been graded.&lt;br /&gt;
&lt;br /&gt;
The two options are:&lt;br /&gt;
&lt;br /&gt;
1) &amp;quot;Min and max grades as specified in grade item settings&amp;quot; - The student&amp;#039;s grade will be displayed out of the new range, affecting their percentage. &lt;br /&gt;
&lt;br /&gt;
2) &amp;quot;Initial min and max grades&amp;quot; - Students&amp;#039; grades are displayed with the range defined when the student was graded. &lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
* Assignment is created with a maximum grade of 10&lt;br /&gt;
* Sally Student receives a score of 5 out of 10 (50%)&lt;br /&gt;
* The maximum assignment grade is changed to 20&lt;br /&gt;
&lt;br /&gt;
If &amp;quot;Min and max grades used in calculation&amp;quot; is set to &amp;quot;Min and max grades as specified in grade item settings,&amp;quot; Sally Student will have a score of 5 out of 20 (25%)&lt;br /&gt;
&lt;br /&gt;
If &amp;quot;Min and max grades used in calculation&amp;quot; is set to &amp;quot;Initial min and max grades,&amp;quot; Sally Student will have a score of 5 out of 10 (50%) until a teacher manually regrades Sally Student out of 20.&lt;br /&gt;
&lt;br /&gt;
== Information for sites upgrading from earlier versions of Moodle ==&lt;br /&gt;
&lt;br /&gt;
The default behaviour is &amp;quot;Min and max grades as specified in grade item settings.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Moodle 2.8.0 - 2.8.6 and 2.9.0 unintentionally changed the behaviour to &amp;quot;Initial min and max grades.&amp;quot; &lt;br /&gt;
&lt;br /&gt;
In Moodle 2.8.7 and Moodle 2.9.1, it was restored to &amp;quot;Min and max grades as specified in grade item settings,&amp;quot; This setting was added to allow changing the behaviour. Some courses affected by the upgrade will display notices to alert them to the new setting.&lt;br /&gt;
&lt;br /&gt;
== How to find all courses that are affected ==&lt;br /&gt;
&lt;br /&gt;
    SELECT * FROM mdl_config WHERE name LIKE &amp;#039;show_min_max_grades_changed_%&amp;#039; ORDER BY name&lt;br /&gt;
&lt;br /&gt;
That will return rows containing things like &amp;quot;show_min_max_grades_changed_211&amp;quot;. That means that course 211 is affected. So, the URL to get to the gradebook for that course is .../grade/index.php?id=211 within your Moodle site. With a bit of clever search-and-replace, you can probably turn the output from the gradebook query into a set of URLs. For example, the following is a more sophisticated version of this query that works well with the [https://moodle.org/plugins/view/report_customsql Ad-hoc database queries] plugin.&lt;br /&gt;
&lt;br /&gt;
    SELECT substr(cfg.name, 29) AS Course_id,&lt;br /&gt;
        course.shortname AS Course_shortname,&lt;br /&gt;
        CONCAT(&amp;#039;%%WWWROOT%%&amp;#039;, &amp;#039;/grade/report/grader/index.php&amp;#039;, CHR(63), &amp;#039;id=&amp;#039;, substr(cfg.name, 29)) AS Grader_report_url&lt;br /&gt;
    &lt;br /&gt;
    FROM {config} cfg&lt;br /&gt;
    JOIN {course} course ON course.id = CAST(substr(name, 29) AS INT)&lt;br /&gt;
    &lt;br /&gt;
    WHERE name LIKE &amp;#039;show_min_max_grades_changed_%&amp;#039;&lt;br /&gt;
    &lt;br /&gt;
    ORDER BY course.shortname&lt;br /&gt;
&lt;br /&gt;
==Who will see the warning message and button in the gradebook?==&lt;br /&gt;
&lt;br /&gt;
Only users with the [[Capabilities/moodle/grade:manage|moodle/grade:manage]] capability (by default teacher, manager and admin) will see the warning message and button.&lt;br /&gt;
&lt;br /&gt;
== How can I see what grades will change before I click the button? ==&lt;br /&gt;
&lt;br /&gt;
The only way to do this is to have a copy of your live site where you can test. (Testing with a copy of your live site is recommended good practice.)&lt;br /&gt;
&lt;br /&gt;
In that test copy, you can use the report above to find all affected course gradebooks. Then, by using the [[Grade history]] report, you can see which grades change when you click the button and confirm you are happy with the changes before doing the same on your live site.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* MDL-48618 Unexpected changes on grades after upgrade to Moodle 2.8&lt;br /&gt;
&lt;br /&gt;
[[es:Calificaciones min max]]&lt;/div&gt;</summary>
		<author><name>1&gt;Tim@horizoneducationnetwork.org</name></author>
	</entry>
</feed>