Dan Poltawski
7d650df727
Merge branch 'MDL-55128-master' of git://github.com/jleyva/moodle
2016-07-11 13:33:23 +01:00
Dan Poltawski
e9da895634
Merge branch 'wip-MDL-55154-master' of git://github.com/abgreeve/moodle
2016-07-11 13:31:24 +01:00
David Monllao
728faf96c4
Merge branch 'MDL-51373-master' of git://github.com/jleyva/moodle
2016-07-11 13:58:34 +02:00
Dan Poltawski
ad3f8cd18c
MDL-54944 eslint: make the .eslintrc default stricter
...
Instead of using the more rollup-tolerant config for all files, make the
configuration stricter by default but lower in grunt for yui modules.
This means that manual runs (prechecker) or editor integrations will
flag up the errors as well as grunt.
Also add ignore lines to the core files so that eslint isn't noisy when
not running with grunt.
2016-07-11 12:44:34 +01:00
Juan Leyva
aa7e371af6
MDL-51373 grade: Deprecate WS core_grade_get_grades
2016-07-11 12:41:49 +01:00
Dan Poltawski
e2f79e330d
Merge branch 'MDL-53222_master' of git://github.com/dmonllao/moodle
2016-07-11 11:42:41 +01:00
David Monllao
6a4c2146f9
MDL-53222 search: Replace report_search by new searchareas admin page
2016-07-11 11:49:14 +02:00
Dan Poltawski
c3a95c2840
MDL-53222 admin: rejig listing of search areas
2016-07-11 11:38:41 +02:00
David Monllao
e704bcc776
MDL-53222 report_search: Delete from core
2016-07-11 11:38:41 +02:00
Juan Leyva
95624eef09
MDL-55163 mod_assign: Fix mod_assign_copy_previous_attempts
...
- Not exposed via WS
- Have a bug when calling the api function
2016-07-11 10:35:24 +01:00
David Monllao
1d17f51a8d
Merge branch 'MDL-54832-master' of https://github.com/nashtechdev01/moodle
2016-07-11 06:47:13 +02:00
Adrian Greeve
681f8f09c0
MDL-37250 mod_lesson: All actual attempts on the lesson are displayed.
...
The lesson overview report now shows all attempts made including hitting
the page and immediately navigating away.
2016-07-11 08:18:41 +08:00
AMOS bot
65ec0d7d77
Automatically generated installer lang files
2016-07-11 00:05:50 +08:00
Rajesh Taneja
d89dc6b123
MDL-55111 behat: Use option which is available everytime for export
...
recentupcoming option is always available everytime calendar export
is called, rest week and month is optionally shown and may not be
visible. So use recentupcoming event option and export calendar for test
2016-07-10 11:11:31 +08:00
Nadav Kavalerchik
3bce7d0880
MDL-55170 theme_bootstrapbase: Fix user enrollment dialog, RTL
2016-07-09 14:52:21 +03:00
Dan Poltawski
d7f2176fd8
MDL-54671 css: fix lint errors
2016-07-08 12:58:54 +01:00
Dan Poltawski
c5ec7b698b
MDL-54671 css: reformat css
2016-07-08 12:54:13 +01:00
Stephen Bourget
03064d6a89
MDL-54891 Block_activity_results: Allow admin defaults
2016-07-08 05:10:27 +00:00
Adrian Greeve
d58f3a4d2a
MDL-54962 mod_data: Approval status is now translated.
...
It was using hardcoded English. Now it uses get_string.
2016-07-08 10:53:39 +08:00
Adrian Greeve
9582e530eb
MDL-55154 mod_lesson: Lesson numerical response shows images.
2016-07-08 09:54:58 +08:00
Daniel Thies
b54aeb5f83
MDL-55007 filter_mathjaxloader: Change unit test
2016-07-07 18:59:08 -05:00
Daniel Thies
638b473808
MDL-55007 filter_mathjaxloader: Wrap nolink around each expresssion
2016-07-07 18:58:15 -05:00
Stephen Bourget
9be8052937
MDL-11369 mod_choice: Add calendar events for choice activities
2016-07-07 16:56:17 -04:00
Stephen Bourget
1725216aee
MDL-49029 mod_choice: Add view permissions
2016-07-07 15:10:17 -04:00
Dan Poltawski
d3a93557d5
MDL-55134 less: make indentation consistent
2016-07-07 14:57:14 +01:00
Dan Poltawski
6e304922fb
MDL-54944 js: built files after changes
2016-07-07 12:11:07 +01:00
Dan Poltawski
5602dc1735
MDL-54944 js: ensure functions are consistent in return val
...
Mostly we are being incosnistent when giving an early-exit shortcut.
Detected by http://eslint.org/docs/rules/consistent-return
2016-07-07 12:11:07 +01:00
Dan Poltawski
7b7d55e11a
MDL-54944 js: split variable intialisations in multiple lines
...
To increase code clarity, we don't allow multiple intilisations to be
confused with each other.
Detected by http://eslint.org/docs/rules/one-var-declaration-per-line
2016-07-07 12:11:06 +01:00
Dan Poltawski
2d2b6c9d22
MDL-54944 js: remove uncessary .call() uses
...
Detected by http://eslint.org/docs/rules/no-useless-call
2016-07-07 12:11:06 +01:00
Dan Poltawski
b1c4d0f2d7
MDL-54944 js: Remove uncessary bind() calls
...
Most of these cases, we are already capturing this in a temporary
variable, so the bind becomes uncessary.
Discovered by http://eslint.org/docs/rules/no-extra-bind
2016-07-07 12:11:06 +01:00
Dan Poltawski
c905cd233d
MDL-54944 js: fix quoting of object properities coding style
...
Detected by http://eslint.org/docs/rules/quote-props
2016-07-07 12:11:05 +01:00
Dan Poltawski
9f5f3dcc83
MDL-54944 js: Fix spacing of objects coding style
...
Fixed by http://eslint.org/docs/rules/object-curly-spacing
2016-07-07 12:11:05 +01:00
Dan Poltawski
037de71996
MDL-54944 eslint: Add rules from Policy decision
...
Also bump eslint to v2.13.1 and make the version explicit in
package.json
2016-07-07 12:10:49 +01:00
Eloy Lafuente (stronk7)
5a1728df39
weekly release 3.2dev
2016-07-07 10:19:49 +02:00
Eloy Lafuente (stronk7)
ffe0699c44
NOBUG: Fixed SVG browser compatibility
2016-07-07 10:19:45 +02:00
Eloy Lafuente (stronk7)
2487a92837
Merge branch 'install_master' of https://git.in.moodle.com/amosbot/moodle-install
2016-07-07 10:19:44 +02:00
Andrew Nicols
aa49ee0f29
Merge branch 'wip-mdl-55043' of https://github.com/rajeshtaneja/moodle
2016-07-07 11:27:58 +08:00
Rajesh Taneja
56c5c9a08a
MDL-55043 core_competency: Sort by id to ensure we get expected result.
2016-07-10 11:25:06 +08:00
Andrew Nicols
71f81adce9
Merge branch 'MDL-54869-master' of git://github.com/jleyva/moodle
2016-07-07 10:30:17 +08:00
Stephen Bourget
025188da5f
MDL-53803 mod_choice: remove orphaned answers when removing options
2016-07-06 17:08:50 -04:00
Cameron Ball
aa60ab01c3
MDL-54771 tool_recyclebin: Don't add temp course to recycle bin
2016-07-06 23:18:36 +08:00
Cameron Ball
1706352d01
MDL-54771 restore: Add deletesource to course object
...
Since deleting a course now triggers the pre_course_delete hook
it may be useful for hook implementations to know whether it was
a "true" course deletion, or one originating from a temporary
course created during a restore.
2016-07-06 23:11:31 +08:00
Paul Greidanus
c248c3f07f
MDL-55084 admin: CLI driven password reset
...
This patch allows for changing a user's password via the command line.
This allows for scripted password changes easily.
2016-07-06 07:00:57 -06:00
Eloy Lafuente (stronk7)
9825afd76a
Merge branch 'wip-MDL-46682-master' of git://github.com/abgreeve/moodle
2016-07-06 13:50:12 +02:00
Cameron Ball
977804ed9d
MDL-55137: Update PHPDoc for external_format_text
2016-07-06 17:48:07 +08:00
Davo Smith
a106fb8178
MDL-55136 data_object: fix param handling in fetch_all_helper
2016-07-06 10:33:06 +01:00
Eloy Lafuente (stronk7)
080c1e798b
MDL-54934 workshop: ensure "Current phase" is always separated
...
Apparently some readers can join 2 adjacent spans completely, simply
adding a whitespace between them prevents that, ensuring separation.,
2016-07-06 11:30:40 +02:00
Cameron Ball
c30bfed180
MDL-41945 mod_assign: Add empty submission check
2016-07-06 10:07:04 +01:00
Adrian Greeve
3261b9eeea
MDL-46682 auth/db: Increase of chunk size and update change.
...
The update query was not checking the mnet auth id and could
have been updating the wrong entry.
2016-07-06 16:41:51 +08:00
Andrew Nicols
9ce2448091
Merge branch 'MDL-54734-master' of git://github.com/lameze/moodle
2016-07-06 15:01:06 +08:00