vyshane
2585a68d54
Merged from 1.8.
2007-02-16 08:46:55 +00:00
moodler
1934b87667
Updated versions and requires (primarily because of formslib dependencies)
2007-02-02 13:02:24 +00:00
mark-nielsen
a7003df2b9
Merged in layout fix from MOODLE_17_STABLE
2007-02-02 03:58:45 +00:00
mark-nielsen
7a8137e9d7
Merged fix for MDL-8390 from MOODLE_17_STABLE branch
2007-02-02 03:45:02 +00:00
mark-nielsen
107470cb3a
Merged in fixes for MDL-8375 from MOODLE_17_STABLE
2007-02-02 02:27:03 +00:00
skodak
5841aa9122
fixed obsoleted course->category test for finding if course is site
2007-02-01 09:06:48 +00:00
stronk7
f58938b5a7
Restoring one deleted by error }. Grrr.
...
Merged from MOODLE_17_STABLE
2007-01-31 18:46:14 +00:00
stronk7
8a88bce5ac
Changing nullability of field response on table lesson_answers to null.
...
Versions in 17_STABLE are the same, so no problems. MDL-8351
Merged from MOODLE_17_STABLE
2007-01-31 18:40:14 +00:00
mark-nielsen
ddaaceb4bb
"Merged" in the fixed for MDL-8137
2007-01-29 06:43:22 +00:00
jamiesensei
a7f7e52fc5
changed name of moodleform_mod method 'defaults_preprocessing' to 'data_preprocessing' in line with change of set_defaults name to set_data.
2007-01-16 15:36:33 +00:00
vyshane
f6830d4cb1
xhtml fixes related to MDL-7861.
2007-01-12 06:57:11 +00:00
skodak
26de8d35ce
fixed text field widths in new forms
2007-01-11 19:47:08 +00:00
vyshane
4085962ae9
xhtml fixes for MDL-7861.
2007-01-11 08:51:46 +00:00
skodak
60af27037b
MDL-7861 xhtml transient fixes for not closed input fields - I hope all of them except imported libs are now fixed
2007-01-08 19:34:16 +00:00
skodak
0d905d9f34
MDL-7861 new class .icon and .iconsmall
2007-01-08 09:14:05 +00:00
skodak
d2ce367fb9
MDL-8062 Remove name attribute from <form> and related javascript code cleanup (tested with FF, IE, Konq and Opera)
2007-01-06 19:22:58 +00:00
skodak
7150226896
MDL-7861 xhtml strict fixes - fixed all <br> in our code
2007-01-04 23:38:17 +00:00
skodak
b7dc225654
MDL-8062 1.3 Remove name attribute from <form> and fix focus everywhere - more changes ahead
2007-01-04 21:32:36 +00:00
skodak
fa73873105
MDL-8050 1.2 Remove all target="_top" - refactoring of previous commit
2007-01-04 18:23:55 +00:00
Martin Langhoff
f3f7610c90
cvsimport fixups -- cvshead had strayed from upstream
2007-01-04 13:15:04 +13:00
skodak
32f0b38a4a
MDL-8049 Remove all language=Javascript from javascript includes
2007-01-03 19:33:44 +00:00
skodak
e25cb71041
MDL-8050 1.2 Remove all target="_top"
2007-01-03 19:24:48 +00:00
toyomoyo
e8e76f5a16
MDL-7861, fixing various xhtml strict issues and formatting
2007-01-03 07:29:51 +00:00
mark-nielsen
f521f98a22
modified some strings to add more meaning to buttons and links
...
left menu, clock and media file all display like blocks
some general code cleanup eg: went through several of the todo's in the code
2006-12-30 17:29:44 +00:00
jamiesensei
f07b9627b6
changes to how we generate the id attribute of forms and the naming convention of forms
...
migrate blog edit to formslib
2006-12-28 09:32:45 +00:00
toyomoyo
70f150bf0c
MDL-7861, fixing xhtml tags
2006-12-22 07:19:00 +00:00
toyomoyo
7ac95a7181
MDL-7861, fixing tags
2006-12-22 06:31:34 +00:00
toyomoyo
c5f6db7a61
MDL-7861, fixing broken tags
2006-12-22 05:58:28 +00:00
toyomoyo
9d9aa95baf
fixing broken tags for MDL-7861
2006-12-22 05:20:20 +00:00
toyomoyo
2ba9db3cd5
MDL-7861 fixng lesson xhtml tags
2006-12-20 02:17:13 +00:00
toyomoyo
a0b939df01
fixing xhtml tags MDL-7861
2006-12-20 02:00:12 +00:00
toyomoyo
220dcd583c
MDL-7861 fixing broken xhtml in lesson
2006-12-20 01:49:58 +00:00
jamiesensei
a23f0aaf95
* 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
2006-12-19 07:03:08 +00:00
toyomoyo
37aa59a932
no need to use javascript for a submit button
2006-12-19 02:34:38 +00:00
toyomoyo
4cb35c1b95
MDL-7861, fixing xhtml for lesson. When in strict mode, javascript button is not working
2006-12-19 01:52:39 +00:00
toyomoyo
78d112679d
MLD-7861, making moodle xhtml strict. There are still errors in lesson mod
2006-12-18 06:13:04 +00:00
jamiesensei
19194f825a
added setAdvanced MoodleQuickForm method. And added closeHeaderAfter method
2006-12-14 12:44:10 +00:00
toyomoyo
077f381461
accessiblity, associating <th> with respective row or col
2006-12-13 08:24:23 +00:00
skodak
7850588ab8
MDL-7909 add optional id parameter to choose_from_menu() and print_textarea() + minor quoting improvement in choose_from_menu()
2006-12-12 22:06:37 +00:00
mark-nielsen
f2a3512bbd
Merged in changes for MDL-7477 fix
2006-12-11 18:44:00 +00:00
mark-nielsen
eb302b1914
Merged in fix for MDL-7418
2006-12-08 18:48:01 +00:00
mark-nielsen
3cea312333
Merged changes from MOODLE_17_STABLE
2006-12-06 02:26:28 +00:00
mark-nielsen
15d2933a00
Merged in changes from MOODLE_17_STABLE for bug MDL-2006
2006-12-06 02:04:37 +00:00
jamiesensei
0befbdfd8f
petr's patch to fix problem with htmlarea breaking clientside validation. Also using id's with same naming convention as formslib for htmlareas.
2006-12-05 13:21:40 +00:00
jamiesensei
19110c573d
added new 'cancel' element type and introduced new is_cancelled() MoodleQuickForm method.
...
also used new cancel button in all mod_forms as well as a 'Revert' button and reworked logic about where to go on cancel or after submission for modedit.php
2006-12-04 09:36:30 +00:00
mark-nielsen
512ce79274
Merged changes from MOODLE_17_STABLE for MDL-7707
2006-11-28 05:54:43 +00:00
jamiesensei
74e01e6281
changed name of submit buttons to submitbutton instead of sumbit as submit was conflicting with method form.submit()
2006-11-24 16:38:22 +00:00
jamiesensei
e24b7f851a
some restructuring of formslib - moving moodleform_mod definition to new file course\moodleform_mod.php and some changes to moodleform_mod standard elements setup and moodleform disabledIf API
2006-11-24 06:39:15 +00:00
jamiesensei
5f649aaa79
migrated mod/lesson/mod.html to formslib
2006-11-15 07:44:33 +00:00
skodak
1936c10e54
fixed obsoleted use of course->category to find site course - now used SITEID instead MDL-1899
2006-11-12 08:55:13 +00:00