Helen Foster
08a114cf40
MDL-66003 lang: Import fixed English strings (en_fix)
...
Significant string changes:
* moodleorghubname,core_admin and
sitemustberegistered,message_airnotifier - 'Moodle.net' changed to
'Moodle'
* registration_help,core_admin and registermoochtips,core_hub - removed
erroneous 'access to Moodle.net our course sharing platform'
* trackingtype_help,mod_forum and formnotavailable,core_grading and
showgrades_help,core and rolewarning_help,core_rating -
'Administration block' changed to 'Actions menu or admin block',
'navigation block' changed to 'navigation drawer or block'
2019-06-25 18:00:51 +02:00
Eloy Lafuente (stronk7)
3572a25cc3
MDL-65644 upgrade: add 3.7.0 separation line to all upgrade scripts
2019-05-20 19:35:05 +02:00
Eloy Lafuente (stronk7)
c9a1a6341c
MDL-65571 versions: bump all versions and requires near release
...
version = 2019052000 release version
requires= 2019051100 current beta (week6roll2) version
2019-05-12 23:46:34 +02:00
David Monllaó
4f3f8fba67
Merge branch 'MDL-45151-master' of git://github.com/damyon/moodle
2019-02-19 06:39:24 +01:00
Damyon Wiese
37fc47f17d
MDL-64377 assign: Allow remove submission
...
Calls each submission plugin to remove the data for a submission.
2019-02-05 11:54:49 +08:00
Damyon Wiese
5ac7838e3c
MDL-45151 assign: Add anonymous flag to events if blindmarking
2019-02-01 09:12:48 +08:00
Eloy Lafuente (stronk7)
a12207be25
MDL-63276 upgrade: clean < 3.2.0 upgrade steps
...
3.7 (min PHP 7.1) requires 3.2 (first version supporting PHP 7.1)
This just deletes all the upgrade steps previous to 3.2.0. Some
small adjustments, like adding missing MOODLE_INTERNAL or tweaking
globals can also be applied when needed.
Also includes an upgrade step to prevent upgrading from any
version < 2016120500 (v3.2.0) as anti-cheating measure.
Next commit will get rid of/deprecate all the upgradelib functions
not used anymore in codebase. (note there isn't any this time).
2019-01-03 01:17:17 +01:00
Davo Smith
a029b9aff5
MDL-63773 assignsubmission_file: switch instance form to hideIf
2018-12-06 13:31:45 +00:00
Davo Smith
f203fbf9b6
MDL-63773 assignsubmission_onlinetext: switch instance form to hideIf
2018-12-06 13:31:44 +00:00
Eloy Lafuente (stronk7)
f47c8f3525
MDL-64300 upgrade: add 3.6.0 separation line to all upgrade scripts
2018-12-02 18:36:40 +01:00
Eloy Lafuente (stronk7)
085353b315
MDL-64282 versions: bump all versions and requires near release
...
version = 2018120300 release version
requires= 2018112800 current rc2 (week7roll1) version
2018-11-29 18:24:08 +01:00
Eloy Lafuente (stronk7)
9c0e123af0
MDL-63826 tests: Don't rely on random array keys for testing
2018-11-01 00:28:35 +01:00
Adrian Greeve
d2148f32ca
MDL-63531 privacy: Update to comments provider to simplfy sql.
...
This updates the get_users_in_context_from_sql query to include
the context id to simplify the calls made from other components.
2018-10-30 09:47:14 +08:00
Adrian Greeve
d8cd86e1b1
MDL-63531 assignsubmission: Update to use the new interface.
...
This updates the plugins to use the new inteface for deleting
data for users in a context.
2018-10-30 09:47:14 +08:00
Damyon Wiese
efacf3a099
MDL-61052 assign: Do not queue conversions
...
Identical submissions do not require individual conversions from the document converter. Text passing through
format_text cannot be trusted and is likely to be unique each time, even for the same text.
2018-10-22 11:56:57 +08:00
Adrian Greeve
812c409203
MDL-62491 mod_assign: Fill in the rewrite plugin urls properly.
2018-10-08 09:00:08 +08:00
Eloy Lafuente (stronk7)
51181541ab
Merge branch 'MDL-62279-master' of git://github.com/damyon/moodle
2018-09-25 23:25:10 +02:00
Eloy Lafuente (stronk7)
9c1c0de78c
Merge branch 'MDL-61650-master' of git://github.com/damyon/moodle
2018-08-14 16:49:44 +02:00
Andrew Nicols
bc51085174
Merge branch 'MDL-62643-master' of git://github.com/damyon/moodle
2018-08-14 09:04:17 +08:00
Damyon Wiese
8cee90e3bf
MDL-61650 assign: More consistent empty text
...
Consistently check for empty submissions with count_words(trim($text)).
2018-08-03 16:52:31 +08:00
Damyon Wiese
cc9384f121
MDL-62279 assign: Properly set the defaults
...
Before an assignment has been created, we need to use the site defaults,
not the per instance defaults for the settings.
2018-08-03 15:03:53 +08:00
Adrian Greeve
5454e72c21
MDL-55188 events: First deprecation of eventslib.php
2018-07-30 09:23:54 +08:00
Neill Magill
650779d609
MDL-49025 assign: Submissions of an empty directory should not save
...
Before this change if only a folder was submitted the submission_is_empty
check would return true. This meant that the draft area would be saved.
The is_empty check would then be called which would return false. This
caused the submission form to indicate to the user that the submission
had failed.
Now is_empty and submission_is_empty should both return false if only
folders are submitted.
2018-07-13 14:03:42 +01:00
Neill Magill
3ebfab9810
MDL-49025 assign: Test than an empty directory will not submit
2018-07-13 14:03:41 +01:00
Helen Foster
9722f6a25e
MDL-62763 lang: Merge English strings from the en_fix language pack
...
Significant string changes:
* various strings in tool_dataprivacy and tool_policy - 'Data Protection
Officer' changed to 'privacy officer'
* idnumbermod_help,core - mentioning resource and custom reporting
2018-07-02 11:15:26 +02:00
Damyon Wiese
43c8e1f596
MDL-62643 assign: Skip empty online text files
...
Online text assignment submissions with no text entered into the editor should not
create a blank html document for providing feedback.
2018-06-15 14:07:08 +08:00
Andrew Nicols
a6b8fc7830
MDL-55609 assignfeedback_comments: Remove shared setUp
2018-06-01 07:30:32 +08:00
Eloy Lafuente (stronk7)
00977e984e
MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts
2018-05-28 13:15:48 +02:00
Eloy Lafuente (stronk7)
57ea6753d3
MDL-62361 versions: bump all versions and requires near release
...
version = 2018051400 release version
requires= 2018050800 current beta+ (week4roll1) version
2018-05-09 02:46:30 +02:00
Adrian Greeve
bfb57d2c16
MDL-61308 assignsubmission_comments: Unit test ordering fix.
2018-05-01 12:21:47 +02:00
Adrian Greeve
5843543338
MDL-61308 assign_submission: Privacy code for user rights.
2018-04-26 14:17:55 +08:00
Jun Pataleta
5c7351a263
MDL-61168 mod_assign: Truncate only the online text submission
2018-02-02 09:20:57 +08:00
Zig Tan
e5d9af8c56
MDL-57786 mod_assign: Fix word count for online text submissions
2018-01-02 13:10:37 +08:00
Damyon Wiese
39377f8083
Merge branch 'MDL-44667-master' of https://github.com/snake/moodle
2017-12-12 10:26:08 +08:00
Jake Dallimore
3112c22004
MDL-44667 database: fix incorrect usages of $DB->get_field
...
Some places were passing 5 params, meaning the strictness param was
lost. This fixes those usages.
2017-12-04 16:53:51 +08:00
Eloy Lafuente (stronk7)
e4eba4c346
MDL-59159 upgrade: clean < 3.1.0 upgrade steps
...
LTS (3.5) requires previous LTS (3.1)
This just deletes all the upgrade steps previous to 3.1.0. Some
small adjustments, like adding missing MOODLE_INTERNAL or tweaking
globals can also be applied when needed.
Also includes an upgrade step to prevent upgrading from any
version < 2016052300 (v3.1.0) as anti-cheating measure.
Next commit will get rid of/deprecate all the upgradelib functions
not used anymore in codebase.
2017-12-04 01:18:57 +01:00
Eloy Lafuente (stronk7)
6499085f36
MDL-60784 upgrade: add 3.4.0 separation line to all upgrade scripts
2017-11-12 18:43:30 +01:00
Eloy Lafuente (stronk7)
ba854606e6
MDL-60764 versions: bump all versions and requires near release
...
version = 2017111300 release version
requires= 2017110800 current rc2 version
2017-11-10 02:52:53 +01:00
Dan Marsden
58496fe703
MDL-57886 plagiarism: Pass raw unformatted content to get_links.
2017-09-14 14:48:07 +12:00
Dan Poltawski
08220d64f6
Merge branch 'MDL-59195_assign_comment_permissions' of git://github.com/davosmith/moodle
2017-08-29 11:54:07 +01:00
Andrew Nicols
474c7ee757
Merge branch 'MDL-36985-master' of https://github.com/snake/moodle
2017-08-22 14:37:55 +08:00
Jake Dallimore
f3c2afd0e8
MDL-36985 core_files: added option to remove draft files on save
...
text areas can now specify $options['removeorphaneddrafts'] when saving
their data using file_postupdate_standard_editor(). If set to true,
this option clears all user drafts which are not referenced in the text
2017-08-22 13:15:30 +08:00
Davo Smith
ec0ecdaf6e
MDL-59195 assignsubmission_comments: fix permission checks
2017-08-21 10:23:01 +01:00
John Okely
a18b4799f2
MDL-59733 assignsubmission_file: Use click interface in behat
2017-08-15 13:29:14 +08:00
John Okely
5d9e7abbaf
MDL-59725 assignsubmission_file: Don't use click interface in behat
2017-08-07 09:25:46 +08:00
John Okely
29b31865d7
MDL-59725 assignsubmission_file: Improve accepted types string
2017-08-07 09:25:20 +08:00
John Okely
320889c02b
MDL-59299 filemanager: Display what filetypes are accepted
2017-07-31 09:58:21 +08:00
John Okely
847a4e219a
MDL-59299 assignsubmission_file: Use filetypes library functions
2017-07-31 09:58:21 +08:00
John Okely
e54d059d64
MDL-59299 assignsubmission_file: Improve accepted filetypes help
2017-07-31 09:58:21 +08:00
John Okely
3b77a0d06b
MDL-59299 assignsubmission_file: Use filetype element in behat tests
2017-07-31 09:58:20 +08:00