Sam Hemelryk
03384ff9fd
Merge branch 'MDL-46118_master' of git://github.com/dmonllao/moodle
2014-07-01 08:33:13 +12:00
Mark Nelson
c9b0e9769a
MDL-32450 editor_tinymce: documented removal of DragMath
2014-06-30 13:08:00 -07:00
Mark Nelson
07f8f2f559
MDL-32450 editor_tinymce: removed DragMath from the 'customtoolbar' setting
2014-06-30 13:07:33 -07:00
Dan Poltawski
f74b3cd8bc
Merge branch 'wip-mdl-45641' of https://github.com/rajeshtaneja/moodle
2014-06-30 15:12:30 +01:00
Dan Poltawski
9d8c363927
Merge branch 'MDL-42467_database' of https://github.com/andyjdavis/moodle
2014-06-30 15:08:59 +01:00
Dan Poltawski
973508d2e5
Merge branch 'MDL-45833_master' of git://github.com/dmonllao/moodle
2014-06-30 13:27:14 +01:00
Dan Poltawski
edd605d913
Merge branch 'MDL-46044-master' of git://github.com/damyon/moodle
2014-06-30 11:45:29 +01:00
Heiko Schach
4c7a19eccc
MDL-46063 feedback: Fix user pictures
2014-06-30 13:06:32 +03:00
Dan Poltawski
6f90b157f3
Merge branch 'MDL-41663-master' of git://github.com/damyon/moodle
2014-06-30 09:24:39 +01:00
Dan Poltawski
cb1bf3f51a
Merge branch 'MDL-40228-master' of git://github.com/FMCorz/moodle
2014-06-30 08:55:35 +01:00
Frederic Massart
3774d40f8c
MDL-16474 scale: Allow scales with 1 item
2014-06-30 14:24:24 +08:00
Eric Merrill
7abaa5f46c
MDL-42071 caching Support for clustered memcache caching
...
For stores where there is a very high rate of sets compared to gets, it
is beneficial to retrieve from the local server, skipping the network
overhead, at the expense of having to set many severs when a key is set.
This patch adds a memcache option to enable clustering. When on, only
one "server" is allowed, which will be where fetches are from, while
sets/updates/deletes/purges will occur to the all the servers in the
"set server" list.
To run unit tests, define TEST_CACHESTORE_MEMCACHE_TESTSERVERS with
multiple (return delimited) servers.
2014-06-29 23:02:31 -04:00
Eric Merrill
1c0518a625
MDL-42071 caching Support for clustered memcached caching
...
For stores where there is a very high rate of sets compared to gets, it
is beneficial to retrieve from the local server, skipping the network
overhead, at the expense of having to set many severs when a key is set.
This patch adds a memcached option to enable clustering. When on, only
one "server" is allowed, which will be where fetches are from, while
sets/updates/deletes/purges will occur to the all the servers in the
"set server" list.
To run unit tests, define TEST_CACHESTORE_MEMCACHED_TESTSERVERS with
multiple (return delimited) servers.
2014-06-29 23:02:06 -04:00
Ray Morris
17f229fae3
MDL-40457 Question Bank: Allow plugins to add columns to question bank view
...
Allows plugins to add columns to the question bank view by extending core_question\bank\column_base
Columns to display are set in $CFG->questionbankcolumns. Columns are namespaced and autoloaded to support this.
2014-06-29 21:28:52 -05:00
Mark Nelson
f09561cbb5
MDL-45381 mod_forum: changed event URL for subscription created/deleted events
2014-06-29 18:37:44 -07:00
Mark Nelson
e3e4ea97ff
MDL-32450 upgrade: do not remove DragMath settings if the files still exist
2014-06-29 15:48:21 -07:00
Petr Skoda
1170df12a1
MDL-32450 delete Dragmath plugin and library because it is not compatible with GPL
2014-06-29 15:36:29 -07:00
AMOS bot
32b0fa38cb
Automatically generated installer lang files
2014-06-29 00:42:43 +00:00
Tim Hunt
097dbfe11a
MDL-46093 quiz review should default to showing everything on one page
...
... as long as the quiz is not too big. At the moment, that limit is
set to 50 questions.
2014-06-27 17:14:51 +01:00
Davo Smith
463882d085
MDL-46161 switch the field order of the index on mdl_files_reference to improve performance of file_storage::search_references
2014-06-27 11:34:37 +01:00
NeillM
6288c923f6
MDL-45961 Customise this page button on user profile page only works correctly for users own profile
2014-06-27 09:03:38 +01:00
Rajesh Taneja
f1259a7679
MDL-45641 event: Ldap user_signup unit test added
2014-06-27 15:44:56 +08:00
Rajesh Taneja
9363073b22
MDL-45641 event: Manually trigger event where needed.
...
Some places, user_created_user and user_updated_user
events should be triggred after profile data is saved.
2014-06-27 15:44:56 +08:00
Rajesh Taneja
a7466eb448
MDL-45641 event: Removed multiple user_updated event trigger
...
user_updated event was being triggred while
setting password, which is not correct. It now
trigger user_password_updated event. Few more
modifications done:
1. Correct event is being triggred.
2. Event is only triggred when password is chnaged.
3. Password is updated via single api.
4. Updated unit test
2014-06-27 15:44:56 +08:00
Rajesh Taneja
2b55cb1b18
MDL-45641 event: Option to trigger user event manually
...
On some pages full user data is not stored before user_created/
user_updated event is triggred. So giving option to trigger that
manually, so it can be triggred after all data is saved
2014-06-27 15:44:56 +08:00
Damyon Wiese
92d78aace8
MDL-46044 Assign: Add conditions to the inner query for performance
2014-06-27 14:58:58 +08:00
Damyon Wiese
6447021bc0
MDL-46044 Assign: Modify myhome query to only use the maxattempt from the submission
...
Using mismatches from the submissions/grades tables does not make much sense, we
should always only consider only the maxattempt from the submissions table.
2014-06-27 14:22:48 +08:00
Damyon Wiese
6c489d2cd0
MDL-46044 Assign: Move common setup to setUp method (share it for all of lib_test.php)
2014-06-27 14:15:31 +08:00
Damyon Wiese
fc1dac2e1e
MDL-46044 Assign: Fix print_overview function when there are multiple attempts
2014-06-27 14:15:31 +08:00
Damyon Wiese
5533e011ce
MDL-46044 Assign: Update unit test to test multiple attempts on overview page
2014-06-27 14:15:31 +08:00
David Monllao
fb9a2cddfb
MDL-46118 report_log: No results limit when downloading
2014-06-27 11:35:12 +08:00
David Monllao
c16970ead0
MDL-45833 event: Removing courseid as the context is higher than course context
2014-06-27 11:25:14 +08:00
Brian Barnes
9130250b0e
fixed download button
2014-06-27 12:51:41 +12:00
Yuliya
cd243d94cd
MDL-45379 badges: removed unnecessary tables from renderers
...
Signed-off-by: Yuliya <yuliya.bozhko@gmail.com>
Signed-off-by: Brian Barnes <brian.barnes@totaralms.com>
2014-06-27 12:51:41 +12:00
Yuliya Bozhko
d9fe7dbe78
MDL-46107 badges: Fix badges navigation and remove empty breadcrumbs on pages using Clean
...
Signed-off-by: Yuliya Bozhko <yuliya.bozhko@totaralms.com>
2014-06-27 12:45:25 +12:00
Sam Hemelryk
b9f4c37879
MDL-45209 course: fixed navbar when creating,editing courses
2014-06-27 09:39:47 +12:00
Ray Morris
1c906d4945
MDL-46163 Question bank: Category selector renders as nested form
2014-06-26 12:09:38 -05:00
Charles Fulton
30cc5d70ce
MDL-43347 grades: convert keep highest to text field
2014-06-26 07:33:07 -07:00
Eloy Lafuente (stronk7)
7a4832ecb9
weekly release 2.8dev
2014-06-26 10:35:37 +02:00
Eloy Lafuente (stronk7)
2d2864d606
Merge branch 'install_master' of https://git.in.moodle.com/amosbot/moodle-install
2014-06-26 10:35:27 +02:00
Eloy Lafuente (stronk7)
078379a9aa
Revert " MDL-45044 filter_tex: properly escape excutable pathnames for Windows"
...
This reverts commit f0da509835
.
2014-06-26 10:06:20 +02:00
Rajesh Taneja
cbda1aa244
MDL-45889 behat: Allow admin config to set by shortname
2014-06-26 13:18:00 +08:00
Andrew Davis
4257ae82e8
MDL-46036 mod_survey: added logic to prevent user trying to download when there are no results
2014-06-26 11:11:15 +08:00
Marina Glancy
d70fe4f8d9
Merge branch 'wip-mdl-46061' of git://github.com/rajeshtaneja/moodle
2014-06-26 10:26:59 +08:00
Rajesh Taneja
d7a0b72160
MDL-46061 behat: Fixed blur event problem for atto_image
...
atto_image look for blur event after changing width/height
Added a new step to get focus off the element, so this can
work.
2014-06-26 09:59:49 +08:00
Charles Fulton
74dd7a3e84
MDL-43347 grades: consistent interface for drop lowest setting
2014-06-25 11:10:04 -07:00
Damyon Wiese
2b472c83b5
MDL-45983 Atto equation editor: Exclude phantomjs from this behat test because it's buggy
2014-06-25 15:04:20 +08:00
Damyon Wiese
c33634c7e4
Merge branch 'wip-mdl-43835' of https://github.com/rajeshtaneja/moodle
2014-06-25 13:55:19 +08:00
David Monllao
e20392edc0
MDL-42716 mod_assign: Lang str for the viewblinddetails capability
2014-06-25 13:20:41 +08:00
Rajesh Taneja
004d7e35b0
MDL-43835 behat: Use proper step for navigation expansion
2014-06-25 12:54:53 +08:00