Commit graph

29611 commits

Author SHA1 Message Date
nicolasconnault
98ac187b1a MDL-12098 Printing a closing div tag and the moodle footer 2007-11-27 10:31:50 +00:00
nicolasconnault
f9972ddb61 MDL-12312 Reviewed and slightly improved Petr's great help file 2007-11-27 10:01:52 +00:00
nicolasconnault
9d7e1f08fe MDL-12312 Reviewed and slightly improved Petr's great help file 2007-11-27 10:00:45 +00:00
gbateson
b3c6fa1e92 MDL-12318 filter/mediaplugins/filter.php can no longer insert mediaplayers into javascript, so hotpot module now requires its own filter to mimic behavior of multimedia filter in Moodle 1.7 2007-11-27 08:46:40 +00:00
nicolasconnault
759094e488 MDL-9506 Added support for 'course' type in grade_get_grade_items() function, plus corrected a few typos 2007-11-27 07:11:11 +00:00
nicolasconnault
46e6df89ac MDL-12356 CSS classes implemented 2007-11-27 07:06:02 +00:00
moodler
da46265a8f Merged docs fix about get_recordsets usage from 1.9 stable 2007-11-27 05:59:45 +00:00
toyomoyo
3b2274ce5f MDL-12352, block/search fails to install on postgres 2007-11-27 05:43:27 +00:00
scyrma
15614af6a5 imagealt wasn't loaded in a list of the user's posts. 2007-11-27 05:02:27 +00:00
toyomoyo
7f9c77cad6 fixing a type, merged 2007-11-27 03:26:06 +00:00
toyomoyo
b682cee93c MDL-11194, course role names not reflected in course description 2007-11-27 01:56:21 +00:00
skodak
c267a2886a MDL-12350 do not set parent cat when updating; merged from MOODLE_19_STABLE 2007-11-26 17:45:56 +00:00
dwoolhead
8263f8024d MDL-12313 basically rationalising getting calendar events function calls 2007-11-26 14:43:28 +00:00
jamiesensei
0f6475b396 fix for error message 2007-11-26 13:32:23 +00:00
toyomoyo
fb656c9f40 MDL-12331, hidden teacher should not be displayed in choice results 2007-11-26 06:01:26 +00:00
scyrma
18da0c24ec MDL-12294 - another string fix 2007-11-26 04:52:14 +00:00
toyomoyo
ef678ebb82 MDL-12175, forum reset should delete attachments 2007-11-26 04:22:10 +00:00
scyrma
d417533252 Fix for par of the missing strings, as reported in MDL-12294 2007-11-26 04:10:08 +00:00
toyomoyo
90164c7098 expecting multiple groups from sql 2007-11-26 03:21:46 +00:00
toyomoyo
d4c550f5d1 MDL-12081, teacher with import capability can not import course 2007-11-26 02:39:28 +00:00
moodler
f9244adb87 Automatic installer.php lang files by installer_builder (20071125) 2007-11-25 03:45:54 +00:00
skodak
e850ec4846 MDL-12130 fixed regression - disabledIf did not work in dateselectors; merged from MOODLE_19_STABLE 2007-11-24 13:37:07 +00:00
skodak
a78890d593 MDL-12133 validate() method tidying up; merged from MOODLE_19_STABLE 2007-11-23 22:15:07 +00:00
skodak
010aa4da8b MDL-12329 fixed last access when course not accessed yet - patch by Yolanda Ordóñez Rufat; merged from MOODLE_19_STABLE 2007-11-23 21:31:58 +00:00
skodak
0ad439bb42 MDL-12221 custom themes revisited - fixed bug in previous commit, added more developer debug; merged from MOODLE_19_STABLE 2007-11-23 20:26:16 +00:00
skodak
9f7f1a74a0 MDL-12221 custom themes revisited - implemented container concept; merged from MOODLE_19_STABLE 2007-11-23 16:49:51 +00:00
thepurpleblob
220f149cfc MDL-12296:
Unenrol disable option now works in synchronisation script.

Merged from STABLE_19
2007-11-23 15:49:00 +00:00
moodler
2f9d3e622b Automatic installer.php lang files by installer_builder (20071123) 2007-11-23 04:50:46 +00:00
martinlanghoff
073af1a64b user/index: Add "enrolment details" view to Participants page - MDL-12311
With this patch, the additional roles/groups/groupings columns get moved
to a special "enrolment details" view. To support this, the handling of
the $mode is revamped to use $mode constants.

To keep performance issues at bay, the enrolment details view is only
available when viewing paginated resultsets, and will reset itself to
'brief' if the conditions aren't met. The $mode is sticky, so it is
quite possible to have a mismatched $mode -- so he handle the case
explicitly.
2007-11-23 00:23:39 +00:00
martinlanghoff
a32e05df9a user/index: More consistent handling of groups column - MDL-12311 2007-11-23 00:23:24 +00:00
martinlanghoff
1377ede75d user/index: Fix Participants page for sitecourse - MDL-12311
Groups/groupings don't seem to map normally through enrolments
as you would expect with site. Disable for sitecourse.
2007-11-23 00:23:10 +00:00
martinlanghoff
664fe87f29 user/index: Show enrolment and group/grouping data in Participants page MDL-12311
The participants page will now show (to users that have
moodle/role:assign) the relevant enrolments for each participant.

This is done with a second SELECT using a WHERE id IN() so we are
limited to doing it with small datasets. This is for 2 reasons

 - we cannot retrieve all teh data in the "main" SELECT because
   the outer joins will bring dup rows, breaking LIMIT

 - we cannot use the main SELECT as a subselect because we cannot
   retrieve the LIMIT part of the statement with the current dmllib

 - on large courses / sitecourse performance would be horrible

so it is limited to paginated datasets. It is doing 20 recs at a time,
the "extra" SELECT takes ~7ms on a some large Pg databases).

This will generate an extra DB query on Oracle (and any other DB that
cannot rewind the recordset) because we walk the main rs twice.

While at it, ensure we mark the unsortable columns thus...
2007-11-23 00:22:56 +00:00
stronk7
5fe600ebe7 Deleting one ='' condition that isn't cross-db nor necessary. MDL-12186
Merged from MOODLE_19_STABLE
2007-11-22 22:47:49 +00:00
skodak
b80377b4ef MDL-12312 fixed outdated aggregation help, added examples; merged from MOODLE_19_STABLE 2007-11-22 21:36:59 +00:00
tjhunt
6f15f244a3 MDL-12322 - Reference to incorrect language file 2007-11-22 18:14:57 +00:00
skodak
1ea4933c34 MDL-12312 fixed outdated aggregation help; merged from MOODLE_19_STABLE 2007-11-22 17:53:08 +00:00
tjhunt
3a513ba4df MDL-12282 - fix typo in previous commit. Sorry. 2007-11-22 11:51:16 +00:00
nicolasconnault
8f81fab9df MDL-9506 Returning stdClass objects instead of grade_item objects: for security 2007-11-22 08:47:34 +00:00
moodler
9ddc09afe4 Merged string fix from stable 19 2007-11-22 07:05:30 +00:00
scyrma
61b420ace2 Replaces 'GMT' by 'UTC' where it showed in user interface and fixes MDL-9164. 2007-11-22 06:28:58 +00:00
nicolasconnault
1a5159496b MDL-12182 Reverting to pre-upgrade in order to prepare a patch instead 2007-11-22 06:17:01 +00:00
nicolasconnault
f3ac8eb40c MDL-12182 Reverting to pre-upgrade in order to prepare a patch instead 2007-11-22 05:42:46 +00:00
nicolasconnault
93da7cf445 MDL-12182 More grade_item unit tests 2007-11-22 05:37:49 +00:00
toyomoyo
d2b8b98732 MDL-12309, gradebook can not sort by names while in group mode 2007-11-22 05:17:26 +00:00
toyomoyo
38c77dc617 taking out user class from firstname/lastname cell to remove image css 2007-11-22 01:37:59 +00:00
toyomoyo
094d92a4ac turn this block off when $CFG->messaging is off 2007-11-22 01:17:03 +00:00
toyomoyo
a5c67cdf34 MDL-10028, adding a string 2007-11-22 01:05:36 +00:00
tjhunt
3db14d77ec MDL-12305 - Don't let the quiz reorder tool put a page break at the start of the quiz. Merged from MOODLE_19_STABLE. 2007-11-21 18:09:11 +00:00
tjhunt
cd6ef0a5bb MDL-12305 - Quiz reorder tool broken. Merged from MOODLE_19_STABLE. 2007-11-21 18:00:09 +00:00
tjhunt
5bf04b365e Fix some whitespace. 2007-11-21 16:30:25 +00:00