]> git.mjollnir.org Git - moodle.git/log
moodle.git
18 years agoAdd support for multilang titles in forum->posts
stronk7 [Wed, 20 Dec 2006 16:41:11 +0000 (16:41 +0000)]
Add support for multilang titles in forum->posts

Merged from MOODLE_17_STABLE

18 years agoAdded one missing format_string() to post->subject
stronk7 [Wed, 20 Dec 2006 10:00:02 +0000 (10:00 +0000)]
Added one missing format_string() to post->subject

Merged from MOODLE_17_STABLE

18 years agoMDL-7861, adding new xhtml compatible import forms
toyomoyo [Wed, 20 Dec 2006 08:05:26 +0000 (08:05 +0000)]
MDL-7861, adding new xhtml compatible import forms

18 years agofixing broken xhtml MLD-7861
toyomoyo [Wed, 20 Dec 2006 07:15:23 +0000 (07:15 +0000)]
fixing broken xhtml MLD-7861

18 years agoMissing </div>. MDL-7861.
vyshane [Wed, 20 Dec 2006 06:14:18 +0000 (06:14 +0000)]
Missing </div>. MDL-7861.

18 years agoAdded missing html closing tags in function redirect() before the die call. MDL-7861.
vyshane [Wed, 20 Dec 2006 05:56:38 +0000 (05:56 +0000)]
Added missing html closing tags in function redirect() before the die call. MDL-7861.

18 years agoxhtml fixes for MDL-7861.
vyshane [Wed, 20 Dec 2006 05:55:22 +0000 (05:55 +0000)]
xhtml fixes for MDL-7861.

18 years agoMDL-7861, fixing broken xhtml tags
toyomoyo [Wed, 20 Dec 2006 03:44:59 +0000 (03:44 +0000)]
MDL-7861, fixing broken xhtml tags

18 years agoFixed xhtml issues. MDL-7861.
vyshane [Wed, 20 Dec 2006 02:38:10 +0000 (02:38 +0000)]
Fixed xhtml issues. MDL-7861.

18 years agoxhtml fixes for MDL-7861.
vyshane [Wed, 20 Dec 2006 02:25:52 +0000 (02:25 +0000)]
xhtml fixes for MDL-7861.

18 years agoMDL-7861 fixng lesson xhtml tags
toyomoyo [Wed, 20 Dec 2006 02:17:13 +0000 (02:17 +0000)]
MDL-7861 fixng lesson xhtml tags

18 years agofixing xhtml tags MDL-7861
toyomoyo [Wed, 20 Dec 2006 02:00:12 +0000 (02:00 +0000)]
fixing xhtml tags MDL-7861

18 years agoMDL-7861 fixing broken xhtml in lesson
toyomoyo [Wed, 20 Dec 2006 01:49:58 +0000 (01:49 +0000)]
MDL-7861 fixing broken xhtml in lesson

18 years agoAdded missing footer for delete confirmation view. MDL-7861.
vyshane [Wed, 20 Dec 2006 01:15:15 +0000 (01:15 +0000)]
Added missing footer for delete confirmation view. MDL-7861.

18 years agofixing warning
toyomoyo [Wed, 20 Dec 2006 01:01:05 +0000 (01:01 +0000)]
fixing warning

18 years agoMDL-7861, fixing broken xhtml tags
toyomoyo [Wed, 20 Dec 2006 00:48:49 +0000 (00:48 +0000)]
MDL-7861, fixing broken xhtml tags

18 years agogot rid of extra help button that shouldn't have been there.
jamiesensei [Tue, 19 Dec 2006 11:43:32 +0000 (11:43 +0000)]
got rid of extra help button that shouldn't have been there.

18 years agofix for MDL-7937 'Fatal error: Call to a member function on a non-object in /var...
jamiesensei [Tue, 19 Dec 2006 11:18:06 +0000 (11:18 +0000)]
fix for MDL-7937 'Fatal error: Call to a member function on a non-object in /var/www/dev/lib/pear/HTML/QuickForm.php on line 602 error'

18 years agoFixed a problem with double indexed elements in the GetValue method
csantossaenz [Tue, 19 Dec 2006 08:55:25 +0000 (08:55 +0000)]
Fixed a problem with double indexed elements in the GetValue method

18 years agoFixed a problem with double indexed elements in the GetValue method
csantossaenz [Tue, 19 Dec 2006 08:37:44 +0000 (08:37 +0000)]
Fixed a problem with double indexed elements in the GetValue method

18 years agoMDL-7861, taking out <br/>s in title tag
toyomoyo [Tue, 19 Dec 2006 07:19:13 +0000 (07:19 +0000)]
MDL-7861, taking out <br/>s in title tag

18 years agoadding missing tag MDL-7861
toyomoyo [Tue, 19 Dec 2006 07:05:48 +0000 (07:05 +0000)]
adding missing tag MDL-7861

18 years ago* Added setAdvanced functionality see http://docs.moodle.org/en/Development:lib/forms...
jamiesensei [Tue, 19 Dec 2006 07:03:08 +0000 (07:03 +0000)]
* Added setAdvanced functionality see http://docs.moodle.org/en/Development:lib/formslib.php_setAdvanced
* Added MoodleQuickForm method closeHeaderBefore($elementName); http://docs.moodle.org/en/Development:lib/formslib.php_Form_Definition#Use_Fieldsets_to_group_Form_Elements
* Added moodleform method add_action_buttons(); see http://docs.moodle.org/en/Development:lib/formslib.php_Form_Definition#add_action_buttons.28.24cancel_.3D_true.2C_.24revert_.3D_true.2C_.24submitlabel.3Dnull.29.3B
* is_cancelled method added to moodleform http://docs.moodle.org/en/Development:lib/formslib.php_Usage#Basic_Usage_in_A_Normal_Page
* added hidden labels to elements within groups such as the date_selector select boxes and other elements in 'groups'
* quiz/mod.html migrated to formslib
* glossary/edit.html migrated to formslib
* extended registerNoSubmitButton() functionality to automatically add js to onclick to bypass client side js input validation.
* added no_submit_button_pressed() function that can be used in a similar way to is_cancelled() as a test in the main script to see if some button in the page has been pressed that is a submit button that is used for some dynamic functionality within the form and not to submit the data for the whole form.
* added new condition for disabledIf which allows to disable another form element if no options are selected from within a select element.
* added default 'action' for moodleform  - strip_querystring(qualified_me()) http://docs.moodle.org/en/Development:lib/formslib.php_Usage#Basic_Usage_in_A_Normal_Page

18 years agoMaking sure that restore views work in xhtml strict 1.0. MDL-7861.
vyshane [Tue, 19 Dec 2006 07:00:14 +0000 (07:00 +0000)]
Making sure that restore views work in xhtml strict 1.0. MDL-7861.

18 years agoMDL-7861, adding third param to error() function to print correct admin footer
toyomoyo [Tue, 19 Dec 2006 06:58:20 +0000 (06:58 +0000)]
MDL-7861, adding third param to error() function to print correct admin footer

18 years agoMDL-7861, adding third param to notice() function, so that the right footer is printe...
toyomoyo [Tue, 19 Dec 2006 06:49:45 +0000 (06:49 +0000)]
MDL-7861, adding third param to notice() function, so that the right footer is printed. Currently missing admin footer

18 years agoremoving extra tag MDL-7861
toyomoyo [Tue, 19 Dec 2006 06:19:16 +0000 (06:19 +0000)]
removing extra tag MDL-7861

18 years agoMDL-7861, adding missing tag
toyomoyo [Tue, 19 Dec 2006 06:16:17 +0000 (06:16 +0000)]
MDL-7861, adding missing tag

18 years agoMDL-7861, strict xhtml for course/index page
toyomoyo [Tue, 19 Dec 2006 05:57:55 +0000 (05:57 +0000)]
MDL-7861, strict xhtml for course/index page

18 years agoMerged from 1.7. Also contains some xhtml fixes for MDL-7861.
vyshane [Tue, 19 Dec 2006 05:02:22 +0000 (05:02 +0000)]
Merged from 1.7. Also contains some xhtml fixes for MDL-7861.

18 years agoMDL-7861, fixing xhtml strict problems in scales
toyomoyo [Tue, 19 Dec 2006 04:37:28 +0000 (04:37 +0000)]
MDL-7861, fixing xhtml strict problems in scales

18 years agoFixed some xhtml issues. MDL-7861.
vyshane [Tue, 19 Dec 2006 03:33:06 +0000 (03:33 +0000)]
Fixed some xhtml issues. MDL-7861.

18 years agono need to use javascript for a submit button
toyomoyo [Tue, 19 Dec 2006 02:34:38 +0000 (02:34 +0000)]
no need to use javascript for a submit button

18 years agoMDL-7861, fixing xhtml for lesson. When in strict mode, javascript button is not...
toyomoyo [Tue, 19 Dec 2006 01:52:39 +0000 (01:52 +0000)]
MDL-7861, fixing xhtml for lesson. When in strict mode, javascript button is not working

18 years agoMDL-7903 Guests can not enter course that allows guests with key; merged from MOODLE_...
skodak [Mon, 18 Dec 2006 19:21:10 +0000 (19:21 +0000)]
MDL-7903 Guests can not enter course that allows guests with key; merged from MOODLE_17_STABLE

18 years agoMDL-7975 - Make import and export of truefalse questions more reliable. Merged from...
tjhunt [Mon, 18 Dec 2006 18:07:49 +0000 (18:07 +0000)]
MDL-7975 - Make import and export of truefalse questions more reliable. Merged from MOODLE_17_STABLE.

18 years agoMDL-7974 Weekend Days Settings Chooses Wrong Day after Saving
skodak [Mon, 18 Dec 2006 18:07:03 +0000 (18:07 +0000)]
MDL-7974 Weekend Days Settings Chooses Wrong Day after Saving

18 years agoMDL-7973 Trailing spaces in PayPal email account cause problems...
skodak [Mon, 18 Dec 2006 17:27:04 +0000 (17:27 +0000)]
MDL-7973 Trailing spaces in PayPal email account cause problems...

18 years agoMDL-7957 Add proper form labels to elements in search and settings tabs
skodak [Mon, 18 Dec 2006 17:10:35 +0000 (17:10 +0000)]
MDL-7957 Add proper form labels to elements in search and settings tabs

18 years agoMDL-7972 - improve GIFT import export for truefalse questions.
tjhunt [Mon, 18 Dec 2006 16:38:58 +0000 (16:38 +0000)]
MDL-7972 - improve GIFT import export for truefalse questions.
Also clean up whitespace in question/format/gift/format.php.
MDL-7928 - Numerical question type should use * for the match anything answer - GIFT format part. - Merged from MOODLE_17_STABLE.

18 years agoMDL-7969 Documented requirement for first column in get_records_sql etc to be a uniqu...
sam_marshall [Mon, 18 Dec 2006 13:54:31 +0000 (13:54 +0000)]
MDL-7969 Documented requirement for first column in get_records_sql etc to be a unique field such as id.

18 years agoMDL-7953 xhtml compliance in messaging - first step
skodak [Mon, 18 Dec 2006 09:04:33 +0000 (09:04 +0000)]
MDL-7953 xhtml compliance in messaging - first step

18 years agoMDL-7861 added proper s() quoting into user image alt text and popup title
skodak [Mon, 18 Dec 2006 08:08:15 +0000 (08:08 +0000)]
MDL-7861 added proper s() quoting into user image alt text and popup title

18 years agoDML-7861, fixing misnmatched tags
toyomoyo [Mon, 18 Dec 2006 07:55:40 +0000 (07:55 +0000)]
DML-7861, fixing misnmatched tags

18 years agoMerged from 1.7.
vyshane [Mon, 18 Dec 2006 06:26:23 +0000 (06:26 +0000)]
Merged from 1.7.

18 years agoMLD-7861, making moodle xhtml strict. There are still errors in lesson mod
toyomoyo [Mon, 18 Dec 2006 06:13:04 +0000 (06:13 +0000)]
MLD-7861, making moodle xhtml strict. There are still errors in lesson mod

18 years agoAdded 2 new functions: question_get_feedback_image() and question_get_feedback_class().
vyshane [Mon, 18 Dec 2006 06:07:44 +0000 (06:07 +0000)]
Added 2 new functions: question_get_feedback_image() and question_get_feedback_class().

18 years agoRefactored printing of feedback images and printing of feedback html classes. See...
vyshane [Mon, 18 Dec 2006 06:04:47 +0000 (06:04 +0000)]
Refactored printing of feedback images and printing of feedback html classes. See MDL-7467 for more details.

18 years agoMDL-7681, fix for non xhtml strict tags and attributes
toyomoyo [Mon, 18 Dec 2006 05:24:01 +0000 (05:24 +0000)]
MDL-7681, fix for non xhtml strict tags and attributes

18 years agoremoving silly statement
toyomoyo [Mon, 18 Dec 2006 05:05:32 +0000 (05:05 +0000)]
removing silly statement

18 years agoMDL-7861, fixing minor xhtml strict problem
toyomoyo [Mon, 18 Dec 2006 05:03:36 +0000 (05:03 +0000)]
MDL-7861, fixing minor xhtml strict problem

18 years agoMDL-7890, warn on time limits, added string
toyomoyo [Mon, 18 Dec 2006 04:53:53 +0000 (04:53 +0000)]
MDL-7890, warn on time limits, added string

18 years agoMDL-7861, making moodle xhtml strict, adding missing alt text
toyomoyo [Mon, 18 Dec 2006 04:53:02 +0000 (04:53 +0000)]
MDL-7861, making moodle xhtml strict, adding missing alt text

18 years agoXHTML compliance MDL-7861
moodler [Mon, 18 Dec 2006 04:47:58 +0000 (04:47 +0000)]
XHTML compliance MDL-7861

18 years agoCommented out header.php because it's not in CVS yet
moodler [Mon, 18 Dec 2006 04:43:12 +0000 (04:43 +0000)]
Commented out header.php because it's not in CVS yet

18 years agoRemoved bad character
moodler [Mon, 18 Dec 2006 04:38:53 +0000 (04:38 +0000)]
Removed bad character

18 years agoLatest tags file
moodler [Mon, 18 Dec 2006 04:29:25 +0000 (04:29 +0000)]
Latest tags file

18 years agoAutomatic installer.php lang files by installer_builder (20061218)
moodler [Mon, 18 Dec 2006 03:38:22 +0000 (03:38 +0000)]
Automatic installer.php lang files by installer_builder (20061218)

18 years agofixing broken xhtml
toyomoyo [Mon, 18 Dec 2006 01:56:21 +0000 (01:56 +0000)]
fixing broken xhtml

18 years agoRemoved tabs from source.
vyshane [Mon, 18 Dec 2006 01:18:18 +0000 (01:18 +0000)]
Removed tabs from source.

18 years agoMDL-7941Installation on Windows makes reference to libgd.dll in php.ini
skodak [Sun, 17 Dec 2006 22:25:46 +0000 (22:25 +0000)]
MDL-7941Installation on Windows makes reference to libgd.dll in php.ini

18 years agoMDL-7959 improve rss template for Image gallery preset
skodak [Sun, 17 Dec 2006 22:00:30 +0000 (22:00 +0000)]
MDL-7959 improve rss template for Image gallery preset

18 years agoMDL-7945 Database learning activity does not use user defined RSS template, but conti...
skodak [Sun, 17 Dec 2006 21:48:51 +0000 (21:48 +0000)]
MDL-7945 Database learning activity does not use user defined RSS template, but continues to use default template.

18 years agofixed number of rss articles in data mod settings - broken during new forms conversion
skodak [Sun, 17 Dec 2006 21:12:23 +0000 (21:12 +0000)]
fixed number of rss articles in data mod settings - broken during new forms conversion

18 years agoincreased release number to v2.3.0, to differentiate this version fo the module from...
gbateson [Sun, 17 Dec 2006 02:27:40 +0000 (02:27 +0000)]
increased release number to v2.3.0, to differentiate this version fo the module from v2.2.0, which is used on Moodle 1.7

18 years agoModified README.TXT to reflect the fact that this version fo the module, v2.3.0,...
gbateson [Sun, 17 Dec 2006 02:22:38 +0000 (02:22 +0000)]
Modified README.TXT to reflect the fact that this version fo the module, v2.3.0, is not compatitble with Moodle 1.7 and eariler.

18 years agoModifications to reflect the fact that this version of the module, v2.2.0, only works...
gbateson [Sun, 17 Dec 2006 01:15:05 +0000 (01:15 +0000)]
Modifications to reflect the fact that this version of the module, v2.2.0, only works with Moodle 1.7

18 years agoMDL-7928 - Numerical question type should use * for the match anything answer. Merged...
tjhunt [Fri, 15 Dec 2006 18:30:39 +0000 (18:30 +0000)]
MDL-7928 - Numerical question type should use * for the match anything answer. Merged from MOODLE_17_STABLE.

18 years agoMDL-7926 - set_field_select function. Merged from MOODLE_17_STABLE.
tjhunt [Fri, 15 Dec 2006 18:23:31 +0000 (18:23 +0000)]
MDL-7926 - set_field_select function. Merged from MOODLE_17_STABLE.

18 years agoMDL-7925 - description question types were being created with defaultgrade = 1. It...
tjhunt [Fri, 15 Dec 2006 15:41:56 +0000 (15:41 +0000)]
MDL-7925 - description question types were being created with defaultgrade = 1. It should be zero, so fix the bug, and reset any wrong ones in the database. Merged from MOODLE_17_STABLE.

18 years agoadding long time warning MDL-7890
toyomoyo [Fri, 15 Dec 2006 05:34:35 +0000 (05:34 +0000)]
adding long time warning MDL-7890

18 years agofixing broken xhtml
toyomoyo [Fri, 15 Dec 2006 05:30:56 +0000 (05:30 +0000)]
fixing broken xhtml

18 years agofixing broken html
toyomoyo [Fri, 15 Dec 2006 05:23:57 +0000 (05:23 +0000)]
fixing broken html

18 years agofixing broken html
toyomoyo [Fri, 15 Dec 2006 05:06:53 +0000 (05:06 +0000)]
fixing broken html

18 years agoadded warning to warn possible long updates, MDL-7890
toyomoyo [Fri, 15 Dec 2006 04:39:19 +0000 (04:39 +0000)]
added warning to warn possible long updates, MDL-7890

18 years agoAutomatic installer.php lang files by installer_builder (20061215)
moodler [Fri, 15 Dec 2006 03:14:33 +0000 (03:14 +0000)]
Automatic installer.php lang files by installer_builder (20061215)

18 years agoFixed a missing closing brace }.
mits [Thu, 14 Dec 2006 14:10:07 +0000 (14:10 +0000)]
Fixed a missing closing brace }.
Thank you Joseph Rezeau: http://moodle.org/mod/forum/discuss.php?d=60788.

18 years agoadded setAdvanced MoodleQuickForm method. And added closeHeaderAfter method
jamiesensei [Thu, 14 Dec 2006 12:44:10 +0000 (12:44 +0000)]
added setAdvanced MoodleQuickForm method. And added closeHeaderAfter method

18 years agoSC#341 fixed initilaization of navtail variable
skodak [Thu, 14 Dec 2006 08:14:03 +0000 (08:14 +0000)]
SC#341 fixed initilaization of navtail variable

18 years agoMerged from 1.7.
vyshane [Thu, 14 Dec 2006 08:10:41 +0000 (08:10 +0000)]
Merged from 1.7.

18 years agoMerged from 1.7.
vyshane [Thu, 14 Dec 2006 07:48:40 +0000 (07:48 +0000)]
Merged from 1.7.

18 years agoaccessibility fixes
toyomoyo [Thu, 14 Dec 2006 07:48:40 +0000 (07:48 +0000)]
accessibility fixes

18 years agoMerged from 1.7.
vyshane [Thu, 14 Dec 2006 04:47:29 +0000 (04:47 +0000)]
Merged from 1.7.

18 years agoNew icons for question feedback.
vyshane [Thu, 14 Dec 2006 02:34:32 +0000 (02:34 +0000)]
New icons for question feedback.
MDL-7467

18 years agoChanges for MDL-7467.
vyshane [Thu, 14 Dec 2006 02:32:32 +0000 (02:32 +0000)]
Changes for MDL-7467.

The images show each possible answer's "correctness":

Green tick - correct answer
Amber tick - partially correct answer
Red cross - wrong answer

Each image will have the appropriate alt text.

The answer that the student has picked is highlited by changing the background colour: light green, light amber or light yellow, depending on the correctness of the chosen answer. In addition to this, the image for that answer is much bigger in size than for the other possible answers. The alt text for this image will indicate that this answer was picked.

This way, the visual cues, the relative importance of each answer (chosen/non-chosen), and the relative relationships (correct/wrong) are kept. The chosen answer is emphasised by the background highlighting, by the bigger size of the icon, and by the alt text as well. I think this covers all the bases.

18 years agoTweaked CSS for question feedback.
vyshane [Thu, 14 Dec 2006 02:31:05 +0000 (02:31 +0000)]
Tweaked CSS for question feedback.

18 years agofixing broken html
toyomoyo [Thu, 14 Dec 2006 02:05:33 +0000 (02:05 +0000)]
fixing broken html

18 years agoMDL-5964 need html editor for comments in database mod + added format sql table field
skodak [Wed, 13 Dec 2006 23:09:34 +0000 (23:09 +0000)]
MDL-5964 need html editor for comments in database mod + added format sql table field
MDL-7813 accessiblity fixes in comments

18 years ago xhtml and accessibility cleanup in data mod MDL-7813
skodak [Wed, 13 Dec 2006 21:02:01 +0000 (21:02 +0000)]
 xhtml and accessibility cleanup in data mod MDL-7813
* buttons reorganized - now displayed only with templates where usable

18 years agodata preset coding style fixes
skodak [Wed, 13 Dec 2006 20:32:13 +0000 (20:32 +0000)]
data preset coding style fixes

18 years agodata mod whitespace cleanup - there are already many accessibility related changes...
skodak [Wed, 13 Dec 2006 20:26:11 +0000 (20:26 +0000)]
data mod whitespace cleanup - there are already many accessibility related changes and fixes that are not backportable anyway and merging from previous versions is not expected

18 years agoMDL-7822 Make imagegallery database template accessible - minor fixing
skodak [Wed, 13 Dec 2006 09:58:55 +0000 (09:58 +0000)]
MDL-7822 Make imagegallery database template accessible - minor fixing

18 years agoMDL-5696 fixed 'Checkbox' actually allows 'checkboxes' and empty 'options' (radio...
skodak [Wed, 13 Dec 2006 09:53:59 +0000 (09:53 +0000)]
MDL-5696 fixed 'Checkbox' actually allows 'checkboxes' and empty 'options' (radio buttons too)

18 years ago xhtml and accessibility cleanup in data mod MDL-7813
skodak [Wed, 13 Dec 2006 09:38:46 +0000 (09:38 +0000)]
 xhtml and accessibility cleanup in data mod MDL-7813
* preference form fixes

do not search for one character in data mod MDL-7911

18 years ago xhtml and accessibility cleanup in data mod MDL-7813
skodak [Wed, 13 Dec 2006 09:29:03 +0000 (09:29 +0000)]
 xhtml and accessibility cleanup in data mod MDL-7813
* image alt value is now called "Alternative text" because it should not be considered optional

18 years ago xhtml and accessibility cleanup in data mod MDL-7813
skodak [Wed, 13 Dec 2006 09:22:47 +0000 (09:22 +0000)]
 xhtml and accessibility cleanup in data mod MDL-7813
* fixed labels in preference form

18 years agoaccessiblity, associating <th> with respective row or col
toyomoyo [Wed, 13 Dec 2006 08:24:23 +0000 (08:24 +0000)]
accessiblity, associating <th> with respective row or col

18 years agofixing accessibility issues
toyomoyo [Wed, 13 Dec 2006 05:25:45 +0000 (05:25 +0000)]
fixing accessibility issues

18 years agovarious accessbility fixes
toyomoyo [Wed, 13 Dec 2006 03:03:43 +0000 (03:03 +0000)]
various accessbility fixes

18 years ago xhtml and accessibility cleanup in data mod MDL-7813
skodak [Tue, 12 Dec 2006 23:34:55 +0000 (23:34 +0000)]
 xhtml and accessibility cleanup in data mod MDL-7813
* image galery preset accessiblity fixes MDL-7822
* xhtml fixes
* fields now use s() and p() where needed
* added labels to all fields - imporved accessiblity for adding of new entries
* some other general bugfixing and cleanup

it is still not finished though, expect some more commits tomorrow