Sara Arjona [Wed, 3 Jun 2020 15:57:57 +0000 (17:57 +0200)]
Merge branch 'MDL-68833-master' of git://github.com/andrewnicols/moodle
Sara Arjona [Wed, 3 Jun 2020 12:25:37 +0000 (14:25 +0200)]
Merge branch 'MDL-68796-master' of git://github.com/bmbrands/moodle
Sara Arjona [Wed, 3 Jun 2020 11:17:32 +0000 (13:17 +0200)]
Merge branch 'MDL-68772-master' of https://github.com/Clyxz/moodle
Andrew Nicols [Wed, 3 Jun 2020 08:32:38 +0000 (16:32 +0800)]
MDL-68833 theme_boost: Add missing js tags
Jun Pataleta [Wed, 3 Jun 2020 07:39:36 +0000 (15:39 +0800)]
Merge branch 'MDL-68612-master-integration' of git://github.com/mickhawkins/moodle
Sara Arjona [Wed, 3 Jun 2020 07:29:00 +0000 (09:29 +0200)]
Merge branch 'MDL-68320-master' of git://github.com/lameze/moodle
Simey Lameze [Fri, 8 May 2020 07:21:59 +0000 (15:21 +0800)]
MDL-68320 core: add campaign content to notifications page
Andrew Nicols [Fri, 22 May 2020 10:59:41 +0000 (18:59 +0800)]
MDL-68612 user: Set the initial filter on page load
Michael Hawkins [Mon, 18 May 2020 11:15:52 +0000 (19:15 +0800)]
MDL-68612 core: Behat tests updated to support new participants filter
Existing tests have been updated, rewritten and/or expanded to support
the new participants filter.
Michael Hawkins [Wed, 20 May 2020 06:01:05 +0000 (14:01 +0800)]
MDL-68612 user: Created behat step to set user course lastaccess data
Jun Pataleta [Wed, 3 Jun 2020 06:09:03 +0000 (14:09 +0800)]
Merge branch 'MDL-68840-master' of git://github.com/bmbrands/moodle
Jake Dallimore [Wed, 3 Jun 2020 04:28:51 +0000 (12:28 +0800)]
Merge branch 'MDL-68875' of https://github.com/stronk7/moodle
Jake Dallimore [Wed, 3 Jun 2020 04:10:38 +0000 (12:10 +0800)]
Merge branch 'MDL-68898-master' of git://github.com/bmbrands/moodle
Jake Dallimore [Wed, 3 Jun 2020 04:06:06 +0000 (12:06 +0800)]
Merge branch 'MDL-68163-master' of https://github.com/syxton/moodle
Bas Brands [Thu, 28 May 2020 16:17:10 +0000 (18:17 +0200)]
MDL-68833 theme_boost: prevent having to call init on the loader
This was added in a previous master-only issue and breaks backwards compatability with child themes.
There is no need to have the init function here.
Andrew Nicols [Wed, 27 May 2020 06:53:22 +0000 (14:53 +0800)]
MDL-68833 theme_boost: Stop overriding popover triggers
The trigger specified in JS overrides any `data-trigger` in the DOM,
which changed the behaviour of Popovers.
Andrew Nicols [Wed, 27 May 2020 06:52:50 +0000 (14:52 +0800)]
MDL-68833 theme_boost: Add ./pending event checks back
Adrian Greeve [Wed, 3 Jun 2020 01:10:32 +0000 (09:10 +0800)]
Merge branch 'MDL-68891-master' of git://github.com/mihailges/moodle
Adrian Greeve [Wed, 3 Jun 2020 00:38:33 +0000 (08:38 +0800)]
Merge branch 'MDL-68883-master' of git://github.com/andrewnicols/moodle
Andrew Nicols [Wed, 3 Jun 2020 00:00:57 +0000 (08:00 +0800)]
Merge branch 'MDL-68312-master-2' of git://github.com/rezaies/moodle
Victor Deniz Falcon [Tue, 2 Jun 2020 23:35:10 +0000 (00:35 +0100)]
Merge branch 'MDL-68578-master' of git://github.com/aanabit/moodle
Martin Hanusch [Tue, 2 Jun 2020 14:50:02 +0000 (16:50 +0200)]
MDL-68772 mod_quiz: Navigation overlay fix
Bas Brands [Tue, 2 Jun 2020 14:20:48 +0000 (16:20 +0200)]
MDL-68898 core_contentbank: add link attribute to contentbank items
- this will reveil the fullname of the item which is useful when
the name is truncated
Amaia Anabitarte [Tue, 26 May 2020 13:11:50 +0000 (15:11 +0200)]
MDL-68578 contenttype_h5p: Behat test for H5P editor changes
Amaia Anabitarte [Tue, 26 May 2020 15:34:28 +0000 (17:34 +0200)]
MDL-68578 contenttype_h5p: Add name attribute to editor iframe
The switch_to_class_iframe step needs a name attribute for the iframe.
H5P third party library does not add that name attribute, so we add it.
Amaia Anabitarte [Tue, 26 May 2020 13:11:27 +0000 (15:11 +0200)]
MDL-68578 contenttype_h5p: Save content title from uploaded H5P file
Eloy Lafuente (stronk7) [Sun, 31 May 2020 13:53:40 +0000 (15:53 +0200)]
MDL-68875 privacy: Keep moodle_content_writer->get_path() the same
In MDL-62853 a new clean_param(PARAM_PATH) was added to the
moodle_content_writer->get_path() method. And this caused some
Windows tests to start failing.
The problem is that clean_param(PARAM_PATH) does normalise directory
separators to be always forward backslashes and that's normally ok
but the get_path() method has some DIRECTORY_SEPARATOR dependent code
that stopped working under windows.
After analysing various solutions, and trying to keep the behavior
EXACTLY like it was before MDL-62853, but with the cleaning included
we have applied 2 changes:
b) Move the clean_param() to later within the array_map() function,
that way the code there, that uses DIRECTORY_SEPARATOR will continue
working the same.
b) As far as there are more DIRECTORY_SEPARATOR dependent code later
in the function, also perform a str_replace() to convert back to the
OS directory separator.
Those 2 points together (a and b) make the behavior to be 100% the
original one, with separators being kept and the paths being cleaned.
This solution corresponds 100% with the proposed fixes named 3) and
4) in the issue.
Final note... all that DIRECTORY_SEPARATOR maybe needs a review because
it really shouldn't be used unless strictly needed. But that falls out
from this issue which goal was to keep things safely working like they
were before the regression (but with the cleaning applied).
Matt Davidson [Tue, 2 Jun 2020 13:28:29 +0000 (09:28 -0400)]
MDL-68163 gradebook: add grade item duplication
Sara Arjona [Tue, 2 Jun 2020 11:03:08 +0000 (13:03 +0200)]
weekly release 3.9dev+
Sara Arjona [Tue, 2 Jun 2020 11:03:05 +0000 (13:03 +0200)]
Merge branch 'install_master' of https://git.in.moodle.com/amosbot/moodle-install
Bas Brands [Thu, 28 May 2020 12:26:25 +0000 (14:26 +0200)]
MDL-68840 mod_quiz: random question in question list css fix
Mihail Geshoski [Tue, 2 Jun 2020 08:45:46 +0000 (16:45 +0800)]
MDL-68891 theme_boost: Fix go to top link position on horizontal scroll
Andrew Nicols [Tue, 2 Jun 2020 03:57:40 +0000 (11:57 +0800)]
MDL-68793 core_table: Version bump for renamed WS
Andrew Nicols [Tue, 2 Jun 2020 03:56:31 +0000 (11:56 +0800)]
Merge branch 'MDL-68793-master' of git://github.com/lameze/moodle
Simey Lameze [Fri, 22 May 2020 02:08:16 +0000 (10:08 +0800)]
MDL-68793 core_table: fix WS name to comply with guidelines
Andrew Nicols [Tue, 2 Jun 2020 03:14:00 +0000 (11:14 +0800)]
Merge branch 'MDL-68821' of https://github.com/Chocolate-lightning/moodle
Mathew May [Mon, 25 May 2020 06:22:33 +0000 (14:22 +0800)]
MDL-68821 course: Add a attr check for the chooser
Adrian Greeve [Tue, 2 Jun 2020 01:36:37 +0000 (09:36 +0800)]
Merge branch 'MDL-68828-master' of git://github.com/bmbrands/moodle
Andrew Nicols [Tue, 2 Jun 2020 01:14:00 +0000 (09:14 +0800)]
Merge branch 'MDL-67518' of https://github.com/stronk7/moodle
Adrian Greeve [Tue, 2 Jun 2020 00:38:35 +0000 (08:38 +0800)]
Merge branch 'MDL-68723-master' of git://github.com/mihailges/moodle
Andrew Nicols [Tue, 2 Jun 2020 00:23:13 +0000 (08:23 +0800)]
MDL-68883 filter_displayh5p: Ensure wwwroot is preg_quoted properly
The character used as a preg_* delimter is the tilde (~) char, but this
was not passed into the `preg_quote()` when taking the user input
($CFG->wwwroot).
As a result, any site which uses a userdir fails to parse the regexp.
Eloy Lafuente (stronk7) [Mon, 1 Jun 2020 22:25:04 +0000 (00:25 +0200)]
Merge branch 'MDL-63284-master' of https://github.com/Clyxz/moodle
Eloy Lafuente (stronk7) [Mon, 1 Jun 2020 22:13:56 +0000 (00:13 +0200)]
Merge branch 'MDL-68866-master' of https://github.com/mchurchward/moodle
Eloy Lafuente (stronk7) [Mon, 1 Jun 2020 22:08:35 +0000 (00:08 +0200)]
Merge branch 'MDL-68844-master' of https://github.com/roland04/moodle
Víctor Déniz Falcón [Mon, 1 Jun 2020 15:45:27 +0000 (16:45 +0100)]
Merge branch 'MDL-68353-master' of git://github.com/rezaies/moodle
Victor Deniz Falcon [Mon, 1 Jun 2020 07:11:48 +0000 (08:11 +0100)]
Merge branch 'MDL-68861-master' of git://github.com/vmdef/moodle
cescobedo [Thu, 28 May 2020 17:59:06 +0000 (19:59 +0200)]
MDL-68861 core_contentbank: Fix translation in add button
Shamim Rezaie [Sun, 31 May 2020 14:12:33 +0000 (00:12 +1000)]
MDL-68353 theme_classic: Update filepicker xpath selector
AMOS bot [Sat, 30 May 2020 00:07:14 +0000 (00:07 +0000)]
Automatically generated installer lang files
Martin Hanusch [Fri, 29 May 2020 14:42:04 +0000 (16:42 +0200)]
MDL-63284 question: Moving questions with tags disabled bug fix
Sara Arjona [Fri, 29 May 2020 14:30:32 +0000 (16:30 +0200)]
Merge branch 'MDL-68858-master' of git://github.com/vmdef/moodle
Jun Pataleta [Fri, 29 May 2020 14:26:03 +0000 (22:26 +0800)]
Merge branch 'MDL-68353-master' of git://github.com/rezaies/moodle
Eloy Lafuente (stronk7) [Mon, 20 Apr 2020 20:52:04 +0000 (22:52 +0200)]
MDL-67518 phpunit: avoid DB sorting randomness in test
While reading from mdl_config, sometimes this test was failing
because an order was being presumed. Now we convert the records
array to an associative one to perform tests against it.
Víctor Déniz Falcón [Thu, 28 May 2020 16:23:35 +0000 (17:23 +0100)]
MDL-68858 core_contentbank: added scrollable dropdown and missing icons
Sara Arjona [Fri, 29 May 2020 10:52:25 +0000 (12:52 +0200)]
weekly release 3.9dev+
Sara Arjona [Fri, 29 May 2020 10:52:22 +0000 (12:52 +0200)]
Merge branch 'install_master' of https://git.in.moodle.com/amosbot/moodle-install
Shamim Rezaie [Thu, 14 May 2020 10:17:01 +0000 (20:17 +1000)]
MDL-68353 test: Update existing tests to work with file elements
Shamim Rezaie [Thu, 14 May 2020 10:16:43 +0000 (20:16 +1000)]
MDL-68353 test: Update filemanager/filepicker xpath selector
Shamim Rezaie [Wed, 13 May 2020 14:17:41 +0000 (00:17 +1000)]
MDL-68353 test: get_field_locator to support custom field labels
Shamim Rezaie [Mon, 11 May 2020 23:49:07 +0000 (09:49 +1000)]
MDL-68353 form: filepicker label fix
Shamim Rezaie [Mon, 11 May 2020 22:49:52 +0000 (08:49 +1000)]
MDL-68353 admin: Not use label tag in admin setting elements when needed
Shamim Rezaie [Wed, 8 Apr 2020 06:20:37 +0000 (16:20 +1000)]
MDL-68353 message: enclose privacy settings within a fieldset
Shamim Rezaie [Wed, 8 Apr 2020 05:57:39 +0000 (15:57 +1000)]
MDL-68353 core: replace invalid labels with div
Shamim Rezaie [Tue, 7 Apr 2020 15:09:55 +0000 (01:09 +1000)]
MDL-68353 form: filemanager label fix
Michael Hawkins [Thu, 21 May 2020 14:27:46 +0000 (22:27 +0800)]
MDL-68612 user: Fixed delete participants filter row execution order
This ensures that when deleting the penultimate filter, the filterset
join type is reset before the filters are re-applied.
Michael Hawkins [Mon, 18 May 2020 08:07:05 +0000 (16:07 +0800)]
MDL-68612 user: Participants filter row accessibility improvements
More clearly defining each filter row and its ability to remove
filter selections for screen readers.
Michael Hawkins [Wed, 6 May 2020 10:39:22 +0000 (18:39 +0800)]
MDL-68612 user: Unified filter deprecations - renderer and renderable
Michael Hawkins [Wed, 6 May 2020 10:34:59 +0000 (18:34 +0800)]
MDL-68612 user: Unified filter deprecations - related library functions
Jun Pataleta [Fri, 29 May 2020 04:01:50 +0000 (12:01 +0800)]
Merge branch 'MDL-64175-master' of git://github.com/sarjona/moodle
Jun Pataleta [Fri, 29 May 2020 03:48:46 +0000 (11:48 +0800)]
Merge branch 'MDL-68855-master' of git://github.com/cescobedo/moodle
Shamim Rezaie [Tue, 7 Apr 2020 14:10:43 +0000 (00:10 +1000)]
MDL-68353 form: Only include the size attribute if there is a size set
Shamim Rezaie [Tue, 7 Apr 2020 14:04:12 +0000 (00:04 +1000)]
MDL-68353 form: Removed the size attribute
The size attribute does not work with the checkbox input type.
Shamim Rezaie [Tue, 7 Apr 2020 13:16:42 +0000 (23:16 +1000)]
MDL-68353 core: do not output empty labels
Shamim Rezaie [Tue, 7 Apr 2020 10:50:13 +0000 (20:50 +1000)]
MDL-68353 core: Set aria-label for close buttons on YUI dialogues
Jake Dallimore [Fri, 29 May 2020 02:53:57 +0000 (10:53 +0800)]
Merge branch 'MDL-68802-master' of https://github.com/HuongNV13/moodle
Michael Hawkins [Wed, 6 May 2020 10:33:19 +0000 (18:33 +0800)]
MDL-68612 user: Unified filter deprecations - mustache template
Michael Hawkins [Wed, 6 May 2020 10:32:50 +0000 (18:32 +0800)]
MDL-68612 user: Unified filter deprecations - JavaScript
Michael Hawkins [Wed, 6 May 2020 10:31:36 +0000 (18:31 +0800)]
MDL-68612 core: Unified filter deprecations - language string
Michael Hawkins [Wed, 20 May 2020 09:32:34 +0000 (17:32 +0800)]
MDL-68612 lib: Reverting filter/filterset default join types to match UI
These had temporarily been set to ALL for consistency while the unified
filter remained in use. Now that is being replaced with the new UI, it
can be returned to its intended default.
Michael Hawkins [Wed, 27 May 2020 10:49:18 +0000 (18:49 +0800)]
MDL-68612 user: Update participants group filtering to enforce groups
This is required to ensure regardless of user applied filters, only
members of groups visible to the user are ever fetched. This also
includes a fix to remove the groups filter option where no groups
mode is applied.
Michael Hawkins [Wed, 6 May 2020 10:39:55 +0000 (18:39 +0800)]
MDL-68612 user: Remove unified filter from participants page
Mike Churchward [Fri, 29 May 2020 01:51:50 +0000 (21:51 -0400)]
MDL-68866 accesslib: Fixing parameter documentation.
AMOS bot [Fri, 29 May 2020 00:07:42 +0000 (00:07 +0000)]
Automatically generated installer lang files
Sara Arjona [Thu, 28 May 2020 16:11:35 +0000 (18:11 +0200)]
Merge branch 'MDL-68854-master' of git://github.com/vmdef/moodle
Sara Arjona [Thu, 28 May 2020 15:58:51 +0000 (17:58 +0200)]
Merge branch 'MDL-68583-master-fix' of github.com:sarjona/moodle
Sara Arjona [Thu, 28 May 2020 15:57:26 +0000 (17:57 +0200)]
MDL-68583 core_course: add missing spaces
Sara Arjona [Thu, 28 May 2020 15:42:52 +0000 (17:42 +0200)]
Merge branch 'MDL-68583-master' of https://github.com/kabalin/moodle
Víctor Déniz Falcón [Thu, 28 May 2020 15:37:21 +0000 (16:37 +0100)]
Merge branch 'MDL-68209-master-2' of git://github.com/bmbrands/moodle
Sara Arjona [Thu, 28 May 2020 11:58:12 +0000 (13:58 +0200)]
MDL-64175 atto_media: update advanced settings
Some OS, such as Ubuntu, are slightly changing the audio attributes,
from <audio attribute1="true"> to <audio attribute1>.
This patch is for reviewing this piece of code and covering both cases.
cescobedo [Thu, 28 May 2020 13:54:30 +0000 (15:54 +0200)]
MDL-68855 mod_h5pactivity: Add itemid to the package URL
Ruslan Kabalin [Sat, 2 May 2020 15:02:51 +0000 (16:02 +0100)]
MDL-68583 core_course: Fix category delete action menu.
Deletion form offers user a deletion with contents move option, it is
available when full deletion is not permitted. Action menu should take
this into account too and allow user to reach the form.
Víctor Déniz Falcón [Thu, 28 May 2020 12:30:38 +0000 (13:30 +0100)]
MDL-68854 repository_contentbank: add size to content nodes
Víctor Déniz Falcón [Thu, 28 May 2020 12:00:16 +0000 (13:00 +0100)]
Merge branch 'MDL-67813-master-1' of git://github.com/mihailges/moodle
Huong Nguyen [Thu, 28 May 2020 09:41:46 +0000 (16:41 +0700)]
MDL-68802 qtype_ddimageortext: issue related to keyboard navigation
Eloy Lafuente (stronk7) [Thu, 28 May 2020 11:01:39 +0000 (13:01 +0200)]
Merge branch 'MDL-68753-master-enfix' of git://github.com/mudrd8mz/moodle
Víctor Déniz Falcón [Thu, 28 May 2020 10:46:39 +0000 (11:46 +0100)]
Merge branch 'MDL-68746-master-fix' of git://github.com/sarjona/moodle
Sara Arjona [Thu, 28 May 2020 10:42:39 +0000 (12:42 +0200)]
Merge branch 'MDL-68244' of https://github.com/Chocolate-lightning/moodle
Sara Arjona [Thu, 28 May 2020 10:00:21 +0000 (12:00 +0200)]
Merge branch 'MDL-68565' of https://github.com/paulholden/moodle
Paul Holden [Thu, 30 Apr 2020 16:24:44 +0000 (17:24 +0100)]
MDL-68565 tool_usertours: account for optional config in WS response.
Sara Arjona [Thu, 28 May 2020 09:20:46 +0000 (11:20 +0200)]
MDL-68746 core_badges: fix behat error with issuername