Ankit Agarwal
9638600bbb
MDL-45035 events: Fix @package and @since tags in Moodle 2.6 events
2014-04-11 13:32:33 +08:00
Mark Nelson
f68fee244a
MDL-42462 mod_feedback: added $OUTPUT to list of global variables used to avoid error
2014-04-09 15:37:21 +08:00
Dan Poltawski
a5cd92574d
Merge branch 'MDL-42462-Feedback-Fix-for-WCAG-2-0-issue-with-Informational-and-Error-Content-Displayed-in-red' of https://github.com/michael-milette/moodle
2014-04-08 14:11:59 +08:00
Marina Glancy
e19c086c36
MDL-40843 recent_activity: corrections to grouping and user fields
2014-04-04 16:52:01 +08:00
Michael Milette
cba011942c
MDL-42462 - Feedback - Fix for WCAG 2.0 issue with Informational and Error Content Displayed in red
...
1) The same code used in other Moodle forms is now used in Feedback to display the "There are required fields in this form marked (*/Required field)" message at the top of the screen and each of the asterisks next to required fields.
2) Feedback specific styles (missingrequire, feeback_required_mark), which were used to highlight required and error fields, have been eliminated. These colours are now controlled by the common Moodle styles (mform1, mform, fdescription, required, req and error) that are used throughout the rest of Moodle for a more uniform appearance.
3) Field level error reporting now displays a message instead of just highlighting the field in a similar way that other Moodle forms do.
Affected files:
- /mod/feedback/styles.css
- /mod/feedback/complete.php
- /mod/feedback/complete_guest.php
- /mod/feedback/edit.php
- /mod/feedback/print.php
- /mod/feedback/item/captcha/lib.php
- /mod/feedback/item/info/lib.php
- /mod/feedback/item/multichoice/lib.php
- /mod/feedback/item/multichoicerated/lib.php
- /mod/feedback/item/numeric/lib.php
- /mod/feedback/item/textarea/lib.php
- /mod/feedback/item/textfield/lib.php
- /mod/feedback/lang/en/feedback.php
Signed-off-by: Michael Milette <michael.milette@instruxmedia.com>
2014-04-03 09:25:37 -04:00
Marina Glancy
daf7b64ef7
Merge branch 'w13_MDL-44107_m27_canview' of git://github.com/skodak/moodle
2014-03-25 17:10:27 +08:00
Petr Škoda
15f009e1a2
MDL-44107 add debugging to deprecated event::can_view()
2014-03-25 14:53:17 +08:00
Petr Škoda
bc29320285
MDL-44661 implement event->anonymous property
2014-03-20 17:33:35 +08:00
Petr Škoda
d58a8932b8
MDL-44107 deprecate can_view() in feedback events, to be replaced by is_anonymous()
...
See MDL-44661 for more info.
2014-03-20 17:29:19 +08:00
Andreas Grabs
e68fc3c6f1
MDL-44653 mod_feedback - Include additional name fields using user_picture::fields()
2014-03-18 18:24:18 +08:00
Marina Glancy
d2097020b4
MDL-44524 feedback: fix bug in sql under oracle
...
Thanks to Rob King"
2014-03-18 12:00:14 +08:00
Dan Poltawski
f504e63daa
Merge branch 'wip-MDL-44321-master' of git://github.com/marinaglancy/moodle
2014-03-03 13:50:18 +08:00
Tomasz Muras
1298acc707
MDL-43656 mod_feedback: availablity date logic incorrect
2014-03-03 11:23:44 +08:00
Marina Glancy
1e242b41af
MDL-44321 events: cleaning up course_module_instance_list_viewed event
2014-02-28 16:36:09 +08:00
Marina Glancy
fbc4b77841
MDL-44321 events: cleaning up course_module_viewed event
2014-02-28 16:36:09 +08:00
Eloy Lafuente (stronk7)
b629de817a
Merge branch '44155-27' of git://github.com/samhemelryk/moodle
2014-02-18 00:54:28 +01:00
Sam Hemelryk
9714baa1bb
MDL-44155 mod_feedback: unified @package use
2014-02-18 10:50:13 +13:00
Andrew Nicols
af64bc6179
MDL-33099 Javascript: Deprecate the ajaxenabled function
2014-02-17 14:11:21 +08:00
Marina Glancy
3f1a513077
MDL-42505 whitespace correction
2014-02-11 14:36:41 +08:00
Marina Glancy
7480dbc5f2
Merge branch 'MDL-42505-Feedback-Inappropriate-use-of-fieldset-tags-around-cancel-button' of git://github.com/michael-milette/moodle
2014-02-11 14:13:39 +08:00
Marina Glancy
7f34b8e135
Merge branch 'MDL-42339' of git://github.com/rwijaya/moodle
2014-02-05 15:56:30 +08:00
Rossiani Wijaya
8c6ca6961a
MDL-42339 - removed double formatting for set_title() and set_heading()
2014-02-05 14:47:23 +08:00
Marina Glancy
1b066c06c6
Merge branch 'MDL-43440-master' of git://github.com/mr-russ/moodle
2014-02-03 13:42:23 +08:00
Rajesh Taneja
623a32e50d
MDL-43736 Events: Updated unit test to test context not used in event
2014-01-29 11:39:50 +08:00
Rajesh Taneja
fdc729ea57
MDL-43736 Events: event->contextinstanceid should be used where possible
...
While restoring event context might not be present (deleted)
So before using context api's check context or use event properties
2014-01-29 11:39:44 +08:00
Tomasz Muras
672ce966c6
MDL-43040 Replace $module with $plugin in all mod/*/version.php
...
Conflicts:
mod/quiz/version.php
2014-01-29 00:36:12 +01:00
Michael Milette
ca5849e5dc
MDL-42505 - Feedback plugin: Inappropriate use of fieldset tags around form and cancel button
...
Changes:
* Removed the fieldset HTML tags around the Cancel button at the bottom of the form.
* Removed the fieldset HTML tags around the whole form.
* Added missing fieldset tags around groups of radio buttons and checkboxes.
* Removed unordered list wrapping dropdown lists.
* Removed duplicate label for dropdown lists.
Modified Files:
* mod/feedback/complete.php
* mod/feedback/complete_guest.php
* mod/feedback/item/multichoice/lib.php
* mod/feedback/item/multichoicerated/lib.php
Signed-off-by: Michael Milette <michael.milette@instruxmedia.com>
2014-01-28 09:43:56 -05:00
Russell Smith
74b63eae76
MDL-43440 unit testing: Use cmid in unit tests when it should be used.
...
instance is has been used instead of cmid. This works as all id's are 1
in most cases, but not always.
accesslib_clear_all_caches_for_unit_testing was updated to clear the
$USER->access cache which would fail test when the wrong user's data was used.
2014-01-25 08:57:32 +11:00
Petr Škoda
32f906b677
MDL-43661 use new edulevel in all existing events
2014-01-21 16:12:35 +08:00
Damyon Wiese
4177d6a097
Merge branch 'MDL-43632-master' of https://github.com/lucisgit/moodle
2014-01-20 17:10:38 +08:00
Tony Butler
802f85076a
MDL-43632 mod_feedback: Use SSL for reCAPTCHA API request if Moodle is using it
2014-01-10 10:40:23 +00:00
Eloy Lafuente (stronk7)
577432283c
Merge branch 'MDL-43590-en_fix' of git://github.com/mudrd8mz/moodle
2014-01-10 10:08:34 +01:00
Helen Foster
480fca77b3
MDL-43590 Merge English strings from the en_fix language pack
2014-01-09 01:06:01 +01:00
Eloy Lafuente (stronk7)
0601a82aff
Merge branch 'wip-MDL-42310-master' of git://github.com/abgreeve/moodle
2014-01-08 01:32:28 +01:00
Rajesh Taneja
184afb6b73
MDL-43238 events: Added event other information in event php doc block
2014-01-03 15:03:48 +08:00
Michael Milette
a059b434f7
MDL-42310 feedback mod - Enable filtering of multichoice and multichoice rated controls
...
Conflicts:
mod/feedback/item/multichoice/lib.php
mod/feedback/item/multichoicerated/lib.php
Signed-off-by: Michael Milette <michael.milette@instruxmedia.com>
2014-01-03 10:24:49 +08:00
Ankit Agarwal
45faf15dfd
MDL-43044 events: Deprecate and remove code duplication from instances_list_viewed events
2013-12-06 15:59:49 +08:00
Ankit Agarwal
e10ea84ed0
MDL-42962 events: Remove duplicate code from all course_module_viewed events
2013-12-03 14:24:32 +08:00
Damyon Wiese
47578dbff4
MDL-42930 Add 2.6.0 upgrade line
2013-11-18 11:47:17 +08:00
Eloy Lafuente (stronk7)
aa7bc816d9
Merge branch 'wip-MDL-42672-master' of git://github.com/marinaglancy/moodle
2013-11-12 20:07:05 +01:00
Andreas Grabs
6d645211be
MDL-41775 mod_feedback - Input fields are shown with a fixed width on bootstrap based themes
2013-11-08 10:42:49 +01:00
Marina Glancy
09af1e2864
MDL-42672 blocks: warnings on /mod/xxx/index.php for frontpage course
2013-11-06 14:21:24 +11:00
Eloy Lafuente (stronk7)
f39c82ebed
MDL-42701 Bump all versions near 2.6 release
2013-11-05 02:36:00 +01:00
Damyon Wiese
d04bea30da
Merge branch 'wip-MDL-42400-master' of git://github.com/marinaglancy/moodle
2013-11-04 13:11:42 +08:00
Andreas Grabs
73bbdce8c6
MDL-42521 mod_feedback - Feedback does not show line graphs in Clean theme
2013-11-03 19:11:27 +01:00
Marina Glancy
7fbe33fcf1
MDL-42400 generator: module generators call add_moduleinfo instead of direct inserts
2013-10-26 14:00:23 +11:00
Andreas Grabs
bb4191ff4d
MDL-42210 mod_feedback - convert tabs to space
2013-10-20 10:22:56 +02:00
Michael Milette
690266bcf7
MDL-42210-Feedback-Input-Labels
...
Adds labels to the input fields in the Feedback module including: multichoice, multichoicerated, numeric, textarea and textfield.
2013-10-20 10:22:54 +02:00
Dan Poltawski
4f0eaf18f4
Merge branch 'MDL-40493-master' of git://github.com/damyon/moodle
...
Conflicts:
lib/db/install.xml
lib/db/upgrade.php
version.php
2013-10-08 16:42:17 +08:00
Damyon Wiese
3d27180e94
MDL-40493 User preference: Allow users to set their preferred text editor.
...
This changes the setting htmleditor in the user table from a 0 or 1 column
to a user preference for the name of their preferred html editor.
2013-10-02 12:49:30 +08:00