moodle/repository
Eloy Lafuente (stronk7) 9d6aa39985 MDL-71583 versions: Add all the missing full-stops to version/requires
It seems that the new phpcs3 checker is now controlling those
line comments that previously were ignored.

This commit just looks for all the cases and bulk-add
them when needed. The bash script (mac) used to add all them is:

while read -r line; do
    arr=(${line//:/ })
    if [[ -n ${arr[0]} ]] && [[ -n ${arr[1]} ]]; then
        echo "  file ${arr[0]}, line ${arr[1]}"
        sed -i "${arr[1]}s/\$/\./" ${arr[0]}
    fi
done < <(find . -name version.php | xargs ag --nomultiline '>(version|requires) *=.*//.*[^;\.]$')
2021-05-11 20:11:07 +02:00
..
areafiles MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
boxnet MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
classes/privacy MDL-63785 core_repository: performance improvement 2018-12-10 14:52:12 +11:00
contentbank MDL-69331 core_contentbank: Hide disabled H5P content-types 2021-04-15 09:16:32 +02:00
coursefiles MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
dropbox MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
equella MDL-33981 repository_equella: support internal copy 2020-08-24 09:54:34 +10:00
filesystem MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
flickr MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
flickr_public MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
googledocs MDL-71470 repository_googledocs: Update unit tests 2021-04-28 16:30:27 +08:00
local MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
merlot MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
nextcloud MDL-67673 phpunit: Fix the return type of template methods 2020-10-21 12:45:59 +02:00
onedrive MDL-69308 upgrade: remove all the < 3.6.0 upgrade steps 2021-01-13 19:11:19 +01:00
picasa MDL-69308 upgrade: remove all the < 3.6.0 upgrade steps 2021-01-13 19:11:19 +01:00
recent MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
s3 MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
skydrive MDL-69475 versions: bump all versions and requires in master 2020-08-18 00:47:15 +02:00
tests MDL-70921 repository: filter function can not accept argument by ref 2021-02-25 18:24:52 +01:00
upload MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
url MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
user MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
webdav MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
wikimedia MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
youtube MDL-71583 versions: Add all the missing full-stops to version/requires 2021-05-11 20:11:07 +02:00
draftfiles_ajax.php MDL-37802 repository: return error if unzipping files fails. 2020-09-25 09:33:44 +01:00
draftfiles_manager.php MDL-42834 admin: Remove wwwroot if used with moodle_url 2017-10-23 12:25:36 +08:00
filepicker.js MDL-70041 filepicker: Make sure the user has a recently used license 2020-10-28 11:48:33 +08:00
filepicker.php MDL-69028 repository: Put a rate limit on draft file uploads 2021-05-04 17:23:11 +02:00
lib.php MDL-71313 repositories: warn if get_instances context is wrong type 2021-04-12 20:30:43 +01:00
manage_instances.php MDL-61098 repository: Retrieve correct context for repo instance 2017-12-21 11:33:11 +01:00
README.txt
repository_ajax.php MDL-69028 repository: Put a rate limit on draft file uploads 2021-05-04 17:23:11 +02:00
repository_callback.php MDL-59008 repository: add reload parent window support to callback 2017-07-03 13:41:58 +08:00
upgrade.txt MDL-61768 repository_googledocs: Deprecate unused methods 2021-04-15 12:40:32 +08:00

Repository API
==============

This directory contains all the interfaces and plugins for access to repositories.

   Specs:  http://docs.moodle.org/dev/Repository_API
   Track:  http://tracker.moodle.org/browse/MDL-13766