Jake Dallimore [Thu, 22 Oct 2020 01:30:48 +0000 (09:30 +0800)]
Merge branch 'MDL-68438_310' of https://github.com/t-schroeder/moodle into MOODLE_310_STABLE
Adrian Greeve [Thu, 22 Oct 2020 01:07:54 +0000 (09:07 +0800)]
Merge branch 'MDL-69788-310' of https://github.com/paulholden/moodle into MOODLE_310_STABLE
Eloy Lafuente (stronk7) [Wed, 21 Oct 2020 17:45:26 +0000 (19:45 +0200)]
Merge branch 'MDL-66392-310' of https://github.com/paulholden/moodle into MOODLE_310_STABLE
Paul Holden [Tue, 29 Sep 2020 07:57:56 +0000 (08:57 +0100)]
MDL-66392 analytics: make model output directory default to empty.
Falling back to path within $CFG->dataroot/models.
Sara Arjona [Wed, 21 Oct 2020 16:32:47 +0000 (18:32 +0200)]
Merge branch 'm310_MDL-68536_Notice_Undefined_Property_CFG_branch' of https://github.com/scara/moodle into MOODLE_310_STABLE
Sara Arjona [Wed, 21 Oct 2020 15:38:16 +0000 (17:38 +0200)]
Merge branch 'MDL-67673_310' of https://github.com/stronk7/moodle into MOODLE_310_STABLE
Víctor Déniz [Wed, 21 Oct 2020 15:26:44 +0000 (16:26 +0100)]
Merge branch 'MDL-69392-310' of git://github.com/junpataleta/moodle into MOODLE_310_STABLE
Víctor Déniz [Wed, 21 Oct 2020 10:32:33 +0000 (11:32 +0100)]
Merge branch 'MDL-69513-dkim-settings-MOODLE_310_STABLE' of https://github.com/brendanheywood/moodle into MOODLE_310_STABLE
Eloy Lafuente (stronk7) [Wed, 7 Oct 2020 19:33:38 +0000 (21:33 +0200)]
MDL-67673 phpunit: Document all the changes in upgrade.txt
This includes:
- Breaking changes (return void + PHP 7.1 min requirement).
- Deprecations and removals.
- Specifically DbUnit and its replacement.
- Printer showing how to rerun tests removed.
Eloy Lafuente (stronk7) [Wed, 7 Oct 2020 18:41:44 +0000 (20:41 +0200)]
MDL-67673 phpunit: Remove the rerun hint on failed test cases
That custom printer was using some hacks to be able to intercept
configuration switches, reflection and other tricks to be able to
print the:
To re-run:
vendor/bin/phpunit --verbose "core_setuplib_testcase" lib/tests/setuplib_test.php
line on every failed/exceptional/skipped test. After some internal
discussion it was agreed that the normal phpunit output:
1) core_setuplib_testcase::test_localcachedir
Time is lower that allowed start value
Failed asserting that
1601976686 is equal to
1601976687 or is greater than
1601976687.
/var/www/html/lib/phpunit/classes/advanced_testcase.php:446
/var/www/html/lib/tests/setuplib_test.php:170
/var/www/html/lib/phpunit/classes/advanced_testcase.php:80
has already all the information at hand about how to rerun a test:
- vendor/bin/phpunit lib/tests/setuplib_test.php
- vendor/bin/phpunit --filter core_setuplib_testcase::test_localcachedir
- vendor/bin/phpunit --filter ::test_localcachedir
- vendor/bin/phpunit --testsuite componentname_testsuite
- vendor/bin/phpunit --config <<compoenent directory>>
- use --cache-result to get failed tests rerun with ease.
- ...
So better, let's use standard phpunit output and done. Also, note that,
with the upgrade to phpunit 8.5, the printer was not working correctly
any more, causing some switches, like --verbose ... to be ignored. Sure
it could have been fixed but, as commented above, no real need for all
that "parapheranlia" to print the rerun information.
Eloy Lafuente (stronk7) [Wed, 7 Oct 2020 10:02:19 +0000 (12:02 +0200)]
MDL-67673 phpunit: deprecate old phpunit/dbunit stuff
Apply the standard deprecation procedure to the old APIs, to
be removed in Moodle 4.2 (MDL-69882). Existing unit tests
cover the deprecation debugging.
Originally MDL-64600
Eloy Lafuente (stronk7) [Sun, 4 Oct 2020 22:37:34 +0000 (00:37 +0200)]
MDL-67673 phpunit: Move tests to use new phpunit_dataset
- Make advanced_testcase old methods to use new ones internally.
- Fix advanced_testcase, statslib, mod/quiz and mod/data tests.
Originally MDL-64600
Eloy Lafuente (stronk7) [Sun, 4 Oct 2020 15:30:44 +0000 (17:30 +0200)]
MDL-67673 phpunit: Introduce a new, lightweight phpunit_dataset
In charge of taking over the, now removed/archived, phpunit/dbunit
package. It supports loading of CSV/XML files and strings and
PHP arrays, allowing to send the loaded information to database.
Perform some basic controls about the consistency of information,
surely not super-exhaustive but fair enough.
100% covered with unit test.
Planned like an "interim" replacement for phpunit/dbunit uses in
core that, ideally, should be moved to generators stuff at some
point.
Note, expect a few tests in core to fail with this commit, I've
changed some fixtures around. Next commit will fix existing uses.
Originally MDL-64600
Eloy Lafuente (stronk7) [Tue, 15 Sep 2020 14:03:05 +0000 (16:03 +0200)]
MDL-67673 phpunit: Disable phpunit results cache by default
It can be enabled if desired from CLI using the --cache-result
option (or modifying the phpunit.xml cacheResult to true).
That will create the .phpunit.result.cache files that,
later, can be used to easily repeat failed (defects) tests or
run the slow ones first and more. See the --order-by option
to know more about all the available criteria. For example:
./vendor/bin/phpunit --order-by=defects --stop-on-defect
(will run all the failed ones first, stopping on problem, useful
for TDD and other scenarios, not so much for complete runs or CI).
Also, added to .gitignore so they won't be committed ever.
Eloy Lafuente (stronk7) [Tue, 1 Sep 2020 23:14:14 +0000 (01:14 +0200)]
MDL-67673 phpunit: Remove deprecated assertEquals() params
The optional parameters of assertEquals() and assertNotEquals()
are deprecated in PHPUnit 8 (to be removed in PHPUnit 9):
- delta => use assertEqualsWithDelta()
- canonicalize => use assertEqualsCanonicalizing()
- ignoreCase => use assertEqualsIgnoringCase
- maxDepth => removed without replacement.
More info @ https://github.com/sebastianbergmann/phpunit/issues/3341
Initial search done with:
ag 'assert(Not)?Equals\(.*,.*,' --php
Then, running tests and fixing remaining cases.
Eloy Lafuente (stronk7) [Mon, 31 Aug 2020 22:44:13 +0000 (00:44 +0200)]
MDL-67673 phpunit: Remove deprecated assertContains() uses on strings
Both assertContains() and assertNotContains() are deprecated in PHPUnit 8
for operations on strings. Also the optional case parameter is. All uses
must be changed to one of:
- assertStringContainsString()
- assertStringContainsStringIgnoringCase()
- assertStringNotContainsString()
- assertStringNotContainsStringIgnoringCase()
More info: https://github.com/sebastianbergmann/phpunit/issues/3422
Regexp to find all uses:
ag 'assert(Not)?Contains\('
Eloy Lafuente (stronk7) [Mon, 31 Aug 2020 22:07:51 +0000 (00:07 +0200)]
MDL-67673 phpunit: Remove deprecated non-public attribute assertions
With PHPUnit 8 a good number of assertions, all them related with
operations on non-public attributes have been deprecated. And will
be removed with PHPUnit 9.
The main point is that unit tests shouldn't be testing non-public
APIs (good practice) and those assertions were an error originally.
See https://github.com/sebastianbergmann/phpunit/issues/3338 for
the complete list and other details.
When possible (the attributes being checked are public), the change
is simple, just switching to normal assertions.
When the attributes are not public we need to find a workaround
to be able to test the same using public APIs, or use Reflection,
or remove the tests.
For the records, this is the regexp used to find all the cases:
ag '>(assertAttribute|attribute\(|readAttributte|getStaticAttribute| \
getObjectAttribute)' -G "test.php"
Eloy Lafuente (stronk7) [Sun, 2 Aug 2020 23:19:50 +0000 (01:19 +0200)]
MDL-67673 phpunit: Remove expectedException annotations
While this is not strictly required, because removal will
happen in PHPUnit 9.0, we are already getting rid of all
uses in core.
From release notes:https://phpunit.de/announcements/phpunit-8.html
The annotations `@expectedException`, `@expectedExceptionCode`,
`@expectedExceptionMessage`, and `@expectedExceptionMessageRegExp`
are now deprecated.
Using these annotations will trigger a deprecation warning
in PHPUnit 8 and in PHPUnit 9 these annotations will be removed.
Also, all uses of expectExceptionMessageRegExp() has been moved
to expectExceptionMessageMatches(). See https://github.com/sebastianbergmann/phpunit/issues/3957
TODO: Various weirdness found while doing the changes with these tests:
- vendor/bin/phpunit lib/tests/exporter_test.php (created MDL-69700)
- vendor/bin/phpunit competency/tests/external_test.php (same issue than prev one)
- vendor/bin/phpunit question/engine/tests/questionengine_test.php (created MDL-69624)
- vendor/bin/phpunit lib/tests/event_test.php (created MDL-69688)
Eloy Lafuente (stronk7) [Sun, 2 Aug 2020 11:43:32 +0000 (13:43 +0200)]
MDL-67673 phpunit: Remove deprecated assertArraySubset()
While this is not strictly required, because removal will
happen in PHPUnit 9.0, we are already getting rid of all
uses in core.
From release notes:https://phpunit.de/announcements/phpunit-8.html
assertArraySubset() is deprecated and will be removed in PHPUnit 9.
Eloy Lafuente (stronk7) [Sun, 2 Aug 2020 11:08:42 +0000 (13:08 +0200)]
MDL-67673 phpunit: Remove deprecated assertInternalType()
While this is not strictly required, because removal will
happen in PHPUnit 9.0, we are already getting rid of all
uses in core.
From release notes:https://phpunit.de/announcements/phpunit-8.html
assertInternalType() is deprecated and will be removed in
PHPUnit 9. Refactor your test to use assertIsArray(), assertIsBool(),
assertIsFloat(), assertIsInt(), assertIsNumeric(), assertIsObject(),
assertIsResource(), assertIsString(), assertIsScalar(),
assertIsCallable(), or assertIsIterable() instead.
Eloy Lafuente (stronk7) [Sun, 2 Aug 2020 08:50:59 +0000 (10:50 +0200)]
MDL-67673 phpunit: phpunit_constraint_object_is_equal_with_exceptions
Constraints are now declared final, so we cannot extend them anymore.
Hence, instead of extending PHPUnit\Framework\Constraint\IsEqual we
are just wrapping it into our constraint.
Eloy Lafuente (stronk7) [Sun, 2 Aug 2020 08:59:12 +0000 (10:59 +0200)]
MDL-67673 phpunit: Fix the return type of template methods
All the setup/teardown/pre/post/conditions template methods
now are required to return void. This was warned with phpunit 7
and now is enforced.
At the same time, fix a few wrong function names,
provider data and param types, return statements...
Eloy Lafuente (stronk7) [Sat, 1 Aug 2020 16:15:28 +0000 (18:15 +0200)]
MDL-67673 phpunit: Bump to PHPUnit 8.5 and remove DBunit
This makes everything to break, but it's what we'll be fixing
in the next commits, heh. :-)
Generated with php72 (min version supported), following the
instructions @ https://docs.moodle.org/dev/Composer
Paul Holden [Fri, 16 Oct 2020 07:59:53 +0000 (08:59 +0100)]
MDL-69788 admin: validate language menu configuration.
Jun Pataleta [Wed, 21 Oct 2020 09:46:48 +0000 (17:46 +0800)]
Merge branch 'MDL-37226-310' of git://github.com/lucaboesch/moodle into MOODLE_310_STABLE
Tim Schroeder [Thu, 16 Apr 2020 19:40:01 +0000 (21:40 +0200)]
MDL-68438 message: fixed email format change with messaging disabled
Jun Pataleta [Wed, 21 Oct 2020 08:03:14 +0000 (16:03 +0800)]
Merge branch 'MDL-69945-310' of git://github.com/lucaboesch/moodle into MOODLE_310_STABLE
Jun Pataleta [Mon, 5 Oct 2020 11:05:17 +0000 (19:05 +0800)]
MDL-69392 mod_forum: Colour contrast check for locked discussions
Jun Pataleta [Mon, 5 Oct 2020 11:04:16 +0000 (19:04 +0800)]
MDL-69392 block_myoverview: Basic contrast check for the dashboard
Jun Pataleta [Mon, 5 Oct 2020 09:38:22 +0000 (17:38 +0800)]
MDL-69392 question: Fix Try again button styling
Jun Pataleta [Thu, 27 Aug 2020 14:54:48 +0000 (22:54 +0800)]
MDL-69392 theme_boost: Improve question colour contrast
* Lighten info container.
* Fix colour contrast for the question container by
- Lightening the background a bit
- Darkening the text colour a bit
- Making sure the link colour has good colour contrast against the
question text.
* Fix colour contrast for the comments container by
- Lightening the text colour a bit
- Darkening the link colour a bit for better colour contrast against
the feedback text.
Jun Pataleta [Fri, 4 Sep 2020 03:12:16 +0000 (11:12 +0800)]
MDL-69392 theme_classic: Darken red, blue and green colours
The current red, blue, and green colours achieve the minimum colour
contrast against a white background. However, when they're against
coloured background, text with these colours will easily fail the
4.5:1 contrast ratio requirement for Level AA.
The updated colours now have the following contrast ratio against a
white background:
* Blue - #0f6fc5 (5.12:1, from 4.58:1)
* Green - #357a32 (5.27:1, from 4.63:1)
* Red - #ca3120 (5.29:1, from 4.59:1)
Jun Pataleta [Thu, 27 Aug 2020 14:50:52 +0000 (22:50 +0800)]
MDL-69392 theme_boost: Darken red, blue and green colours
The current red, blue, and green colours achieve the minimum colour
contrast against a white background. However, when they're against
coloured background, text with these colours will easily fail the
4.5:1 contrast ratio requirement for Level AA.
The updated colours now have the following contrast ratio against a
white background:
* Blue - #0f6fc5 (5.12:1, from 4.58:1)
* Green - #357a32 (5.27:1, from 4.63:1)
* Red - #ca3120 (5.29:1, from 4.59:1)
Adrian Greeve [Wed, 21 Oct 2020 06:18:02 +0000 (14:18 +0800)]
Merge branch 'MDL-69807-310' of https://github.com/paulholden/moodle into MOODLE_310_STABLE
Adrian Greeve [Wed, 21 Oct 2020 04:54:02 +0000 (12:54 +0800)]
Merge branch 'MDL-68766-M310' of https://github.com/michael-milette/moodle into MOODLE_310_STABLE
Jake Dallimore [Wed, 21 Oct 2020 04:45:55 +0000 (12:45 +0800)]
Merge branch 'MDL-68983-recent-session-lock-ro-MOODLE_310_STABLE' of https://github.com/brendanheywood/moodle into MOODLE_310_STABLE
Jake Dallimore [Wed, 21 Oct 2020 02:57:35 +0000 (10:57 +0800)]
Merge branch 'MDL-69902-310' of https://github.com/marinaglancy/moodle into MOODLE_310_STABLE
Jake Dallimore [Wed, 21 Oct 2020 02:02:08 +0000 (10:02 +0800)]
Merge branch 'MDL-69751-310' of git://github.com/mihailges/moodle into MOODLE_310_STABLE
Eloy Lafuente (stronk7) [Tue, 20 Oct 2020 22:51:10 +0000 (00:51 +0200)]
on-demand release 3.10dev+
Luca Bösch [Mon, 19 Oct 2020 07:52:54 +0000 (09:52 +0200)]
MDL-65448 block_site_main_menu: Restyle moving.
Jake Dallimore [Tue, 20 Oct 2020 03:08:46 +0000 (11:08 +0800)]
Merge branch 'MDL-67695-MOODLE_310_STABLE_get_lti_proxies' of https://github.com/andrewmadden/moodle into MOODLE_310_STABLE
Adrian Greeve [Tue, 20 Oct 2020 00:49:06 +0000 (08:49 +0800)]
Merge branch 'MOODLE_310_STABLE-MDL-68284' of https://github.com/yao9394/moodle into MOODLE_310_STABLE
Mihail Geshoski [Tue, 6 Oct 2020 05:30:45 +0000 (13:30 +0800)]
MDL-69751 core: Restore deleted guest user and add missing context
This upgrade step fixes the cases where the current guest user is
labelled as 'deleted' and the related user context is missing.
Mihail Geshoski [Tue, 6 Oct 2020 05:24:05 +0000 (13:24 +0800)]
MDL-69751 course: Handle missing guest user context
Makes sure the guest user context exists when fetching
the recommended modules. If the context does not exist
an exception is being thrown describing the problem.
Katie Ransom [Mon, 19 Oct 2020 09:45:26 +0000 (10:45 +0100)]
MDL-69962 tool_usertours: Fix increase in included files
Andrew Nicols [Tue, 20 Oct 2020 00:02:22 +0000 (08:02 +0800)]
Merge branch 'MDL-69687-m310' of https://github.com/sammarshallou/moodle into MOODLE_310_STABLE
Jenkins Automation [Fri, 18 Sep 2020 01:04:10 +0000 (10:34 +0930)]
MDL-69726 calendar: fix raw event fetcher under postgres
Without this, there's a code path that under the right circumstances is hit and
results in a query with `FROM (mdl_event) ev` in it - which is not valid syntax
under postgres.
Paul Holden [Fri, 16 Oct 2020 13:54:25 +0000 (14:54 +0100)]
MDL-69807 blocks: remove redundant sesskey loading edit/delete page.
Eloy Lafuente (stronk7) [Mon, 19 Oct 2020 20:56:31 +0000 (22:56 +0200)]
Merge branch 'MDL-69906-310-searchsimpledb' of git://github.com/mudrd8mz/moodle into MOODLE_310_STABLE
Eloy Lafuente (stronk7) [Mon, 19 Oct 2020 20:32:02 +0000 (22:32 +0200)]
Merge branch 'MDL-57756-text-customparams-310' of https://github.com/cengage/moodle into MOODLE_310_STABLE
Andrew Madden [Mon, 19 Oct 2020 03:35:19 +0000 (14:35 +1100)]
MDL-67695 mod_lti: Use correct return structure for get_tool_proxies.
* Deprecated serialise_tool_proxy() as no longer used.
* Use tool_proxy_return_structure for each proxy.
* Added tests for getting all proxies and orphaned proxies.
Sara Arjona [Mon, 19 Oct 2020 16:14:54 +0000 (18:14 +0200)]
Merge branch 'MDL-69897-310' of https://github.com/paulholden/moodle into MOODLE_310_STABLE
Sara Arjona [Mon, 19 Oct 2020 11:41:59 +0000 (13:41 +0200)]
Merge branch 'MDL-69900-310' of git://github.com/mihailges/moodle into MOODLE_310_STABLE
sam marshall [Mon, 19 Oct 2020 09:14:09 +0000 (10:14 +0100)]
MDL-69687 Course: remove_course_contents orphaned completion data
The remove_course_contents function did not delete data from
course_module_completion table in most cases, resulting in large
quantities of orphaned data.
Sara Arjona [Mon, 19 Oct 2020 08:07:21 +0000 (10:07 +0200)]
Merge branch 'MOODLE_310_MDL-69791' of https://github.com/golenkovm/moodle into MOODLE_310_STABLE
Andrew Nicols [Mon, 19 Oct 2020 07:54:36 +0000 (15:54 +0800)]
Merge branch 'MDL-65448-310' of git://github.com/lucaboesch/moodle into MOODLE_310_STABLE
Luca Bösch [Mon, 19 Oct 2020 07:43:42 +0000 (09:43 +0200)]
MDL-65448 block_social_activities: Restyle moving.
Luca Bösch [Mon, 19 Oct 2020 07:33:19 +0000 (09:33 +0200)]
MDL-65448 core_course: Restyle non-JS activity moving.
Luca Bösch [Mon, 19 Oct 2020 07:14:26 +0000 (09:14 +0200)]
MDL-65448 gradebook: Remove erraneous dev .movehere class left over.
Luca Bösch [Sat, 15 Feb 2020 16:43:55 +0000 (17:43 +0100)]
MDL-65448 core_course: Restyle non-JS activity moving.
Luca Bösch [Wed, 1 May 2019 09:27:38 +0000 (11:27 +0200)]
MDL-65448 block_site_main_menu: Restyle moving.
Luca Bösch [Wed, 1 May 2019 09:54:09 +0000 (11:54 +0200)]
MDL-65448 block_social_activities: Restyle moving.
Luca Bösch [Sat, 15 Feb 2020 16:46:30 +0000 (17:46 +0100)]
MDL-65448 gradebook: Restyle moving.
Sara Arjona [Mon, 19 Oct 2020 07:03:51 +0000 (09:03 +0200)]
Merge branch 'MDL-69736-310' of git://github.com/ferranrecio/moodle into MOODLE_310_STABLE
Brendan Heywood [Fri, 16 Oct 2020 07:09:35 +0000 (18:09 +1100)]
MDL-69513 email: Add support for email DKIM signatures
Andrew Nicols [Mon, 19 Oct 2020 05:19:28 +0000 (13:19 +0800)]
Merge branch 'MDL-69687-m310' of https://github.com/sammarshallou/moodle into MOODLE_310_STABLE
Andrew Nicols [Mon, 19 Oct 2020 02:07:45 +0000 (10:07 +0800)]
Merge branch 'MDL-65448-310' of git://github.com/lucaboesch/moodle into MOODLE_310_STABLE
Michael Milette [Sat, 17 Oct 2020 05:50:23 +0000 (01:50 -0400)]
MDL-68766 auth: Login form: 'Log in using...' should be h3, not h6
sam marshall [Mon, 5 Oct 2020 09:27:38 +0000 (10:27 +0100)]
MDL-69687 Course: Improve removal of completion data on MySQL
sam marshall [Mon, 14 Sep 2020 10:23:56 +0000 (11:23 +0100)]
MDL-69687 DB: Add API for deleting data based on subquery
The new API works on normal databases (by deleting data based on the
subquery) and also on MySQL (by deleting the data using a weird join
on the subquery).
Luca Bösch [Thu, 15 Oct 2020 22:25:57 +0000 (00:25 +0200)]
MDL-37226 assign: align select all header checkbox
Paul Holden [Thu, 15 Oct 2020 22:31:31 +0000 (23:31 +0100)]
MDL-69788 lang: fallback to all translations if misconfigured.
If given translation list contains only invalid entries, fallback
to returning the complete list of available language translations.
Luca Bösch [Wed, 1 May 2019 09:27:38 +0000 (11:27 +0200)]
MDL-65448 block_site_main_menu: Restyle moving.
Luca Bösch [Wed, 1 May 2019 09:54:09 +0000 (11:54 +0200)]
MDL-65448 block_social_activities: Restyle moving.
Luca Bösch [Sat, 15 Feb 2020 16:43:55 +0000 (17:43 +0100)]
MDL-65448 core_course: Restyle non-JS activity moving.
Luca Bösch [Sat, 15 Feb 2020 16:46:30 +0000 (17:46 +0100)]
MDL-65448 gradebook: Restyle moving.
Luca Bösch [Thu, 15 Oct 2020 05:33:42 +0000 (07:33 +0200)]
MDL-69945 core_calendar: let circles appear as circles
Sara Arjona [Fri, 16 Oct 2020 11:18:54 +0000 (13:18 +0200)]
on-demand release 3.10dev+
Sagar Ghimire [Mon, 24 Aug 2020 01:40:49 +0000 (11:40 +1000)]
MDL-68284 gradebook: Prevent exposing hidden quiz grade item
Jake Dallimore [Fri, 16 Oct 2020 03:52:29 +0000 (11:52 +0800)]
Merge branch 'MOODLE_310_MDL-47178' of https://github.com/golenkovm/moodle into MOODLE_310_STABLE
Jun Pataleta [Fri, 16 Oct 2020 02:09:40 +0000 (10:09 +0800)]
Merge branch 'MDL-69266-310' of https://github.com/HuongNV13/moodle into MOODLE_310_STABLE
Huong Nguyen [Mon, 5 Oct 2020 06:33:08 +0000 (13:33 +0700)]
MDL-69266 qtype_ddwtos: 'unlimited' options fail in 3.9
Adrian Greeve [Thu, 15 Oct 2020 07:11:29 +0000 (15:11 +0800)]
Merge branch 'MDL-69549-310-7' of git://github.com/andrewnicols/moodle into MOODLE_310_STABLE
Jun Pataleta [Thu, 15 Oct 2020 05:56:58 +0000 (13:56 +0800)]
Merge branch 'MDL-69583-310' of git://github.com/ferranrecio/moodle into MOODLE_310_STABLE
Jun Pataleta [Thu, 15 Oct 2020 05:53:36 +0000 (13:53 +0800)]
Merge branch 'MDL-69520-310' of git://github.com/sarjona/moodle into MOODLE_310_STABLE
Simey Lameze [Wed, 30 Sep 2020 07:06:12 +0000 (15:06 +0800)]
MDL-69549 mod_resource: content export implementation
Andrew Nicols [Wed, 14 Oct 2020 23:31:11 +0000 (07:31 +0800)]
MDL-69549 mod_page: Content export implementation
Andrew Nicols [Wed, 14 Oct 2020 23:31:05 +0000 (07:31 +0800)]
MDL-69549 mod_folder: Content export implementation
Andrew Nicols [Thu, 24 Sep 2020 04:25:31 +0000 (12:25 +0800)]
MDL-69549 core: Add context export API
Katie Ransom [Wed, 30 Sep 2020 13:32:58 +0000 (14:32 +0100)]
MDL-69739 tool_usertours: Add tour-level CSS selector
Eloy Lafuente (stronk7) [Wed, 14 Oct 2020 20:47:12 +0000 (22:47 +0200)]
Merge branch 'MDL-69813-310' of https://github.com/paulholden/moodle into MOODLE_310_STABLE
Eloy Lafuente (stronk7) [Wed, 14 Oct 2020 19:22:08 +0000 (21:22 +0200)]
Merge branch 'MDL-63805-310' of git://github.com/jleyva/moodle into MOODLE_310_STABLE
Eloy Lafuente (stronk7) [Wed, 14 Oct 2020 09:22:23 +0000 (11:22 +0200)]
MDL-68070 messaging: Ensure that error is shown on first messages
Before there is a conversation, messages between users are sent
using core_message_send_instant_messages instead of
core_message_send_messages_to_conversation.
That method had an undefined $errormessage variable, ultimately
causing the problem detected on message_post_message()/message_send()
to never been returned by the external.
This just adds the same error than already existing conversations do,
but returning it as warning, for BC, JS will show it.
Sara Arjona [Thu, 24 Sep 2020 19:23:36 +0000 (21:23 +0200)]
MDL-69520 core_h5p: unit tests for covering example and tutorial
Sara Arjona [Thu, 24 Sep 2020 12:03:04 +0000 (14:03 +0200)]
MDL-69520 core_h5p: add example and tutorial links
Eloy Lafuente (stronk7) [Wed, 14 Oct 2020 14:53:22 +0000 (16:53 +0200)]
MDL-68070 messaging: Amend lang string to be clearer for any user.
Credit goes to Helen Foster for the improvement, thanks!
Víctor Déniz [Wed, 14 Oct 2020 10:27:14 +0000 (11:27 +0100)]
Merge branch 'MDL-68900-m310' of https://github.com/sumitnegi933/moodle into MOODLE_310_STABLE
Juan Leyva [Tue, 29 Sep 2020 15:34:57 +0000 (17:34 +0200)]
MDL-63805 glossary: New WS mod_glossary_prepare_entry_for_edition
Juan Leyva [Mon, 28 Sep 2020 19:22:20 +0000 (21:22 +0200)]
MDL-63805 glossary: New WS mod_glossary_update_entry
Juan Leyva [Mon, 28 Sep 2020 19:22:16 +0000 (21:22 +0200)]
MDL-63805 glossary: Glossary API refactor