Commit Graph

1130 Commits

Author SHA1 Message Date
gustav_delius 87b18f4ab7 Fixed call to required_param() 2006-04-05 07:46:52 +00:00
stronk7 2070370cfa Typo. 2006-03-28 23:31:12 +00:00
moodler a2a3733666 iFIx up some styles for the MyMoodle overview 2006-03-15 04:01:10 +00:00
moodler 5d45c04fce More styles for My Moodle 2006-03-15 03:47:08 +00:00
moodler a7a74d7706 Added some styles 2006-03-15 03:42:51 +00:00
moodler 76a60031d0 All the assignment classes no longer need to be loaded, and removed some notices 2006-03-15 03:36:33 +00:00
patrickslee 101e9cad48 Dim link if not visible in my course view for assignment module 2006-03-14 22:05:16 +00:00
patrickslee 84fa8f5fdd Assignment module support for my moodle page 2006-03-14 21:26:37 +00:00
patrickslee cb8229d0a8 UTF8 migration - now supporting PostgreSQL 2006-03-10 03:43:33 +00:00
skodak 38b7336ed1 short php tags 2006-03-07 21:35:13 +00:00
toyomoyo f841494c62 see changes for admin/utfdbmigrate.php 2006-02-24 08:20:13 +00:00
gustav_delius 7af1e88286 Added comments to the code (when will moodle HQ start commenting their own code? ;-) 2006-02-19 13:26:58 +00:00
gustav_delius 1ef048aed3 Fixing a misprint that was preventing multiple files from showing. 2006-02-18 21:19:04 +00:00
gustav_delius f00da052c0 Bug in "Prevent late submissions" setting fixed, thanks to Samuli, see bug 4780 2006-02-16 22:01:57 +00:00
gustav_delius 5c6b657acb Bug in "Prevent late submissions" setting fixed, thanks to Samuli, see bug 4780 2006-02-16 21:56:57 +00:00
moodler 136b6ab33f changed to use utfconvert function 2006-01-31 02:15:21 +00:00
moodler 15921df130 Extra fix for bug #4604. Guests see different message, instead of "You have not submitted anything" 2006-01-23 02:38:26 +00:00
skodak 8d8f70e5a6 remove upload form for guests 2006-01-19 15:24:25 +00:00
moodler 2eac7ec168 Removed submit online assignment button for guest. (bug: 4604) 2006-01-19 02:41:11 +00:00
moodler f7de547886 Guests can no longer submit an online assignment (Bug 4604) 2006-01-18 04:45:12 +00:00
moodler f6691427d9 Added default values where needed for columns in the MySQL creation script mysql.sql.
Added default values to migrate2utf8.xml, for any varchar and text field types, if the default values for these fields were not defined as '' in the MySQL table creation script.

Committed by vyshane
2006-01-17 07:37:29 +00:00
moodler 5d7a2722d5 more bugs 2006-01-16 07:57:56 +00:00
mjollnir_ f90666aa5c Abstracted a bit of the restore procedure to allow for silent restoring.
Added new function, import_backup_file_silently
Changed everything that prints stuff to check for a constant first.
Backup_flush checks a different constant, this is so that output can still
get flushed to the browser when necessary but not print <li>s everywhere.
Please test this!
2006-01-15 21:09:13 +00:00
mjollnir_ 1ecea97679 Granular backup & restore:
This patch allows the much requested selection of individual instances of modules within a course to backup and restore.
It needs A LOT of testing and probably some prettyifying too.
2006-01-13 03:45:31 +00:00
toyomoyo 1e4d9ff6dc utf8 migration support scripts 2006-01-09 06:06:49 +00:00
stronk7 1884f2a6a7 Now it's possible to configure what is going to be counted (words or letters)
because some languages don't have word separators.

Merged from MOODLE_16_UTF8. Abandoning the branch.
2006-01-05 16:27:20 +00:00
toyomoyo e11dd87248 merged, bug #4504 2005-12-23 06:38:04 +00:00
toyomoyo 15b3db1236 fix for bug 4067 2005-11-25 08:41:16 +00:00
toyomoyo ba43f6673a fix for bug 4067 - allow user to upload when assignment not yet marked 2005-11-25 08:31:31 +00:00
moodler 6bd9fe3912 fix for bug #4206 2005-11-24 02:50:05 +00:00
moodler 81532b92f2 Merged bug 4351 fix from stable 2005-11-19 15:39:31 +00:00
skodak 39e1190567 some more fixes for assignment grading; merged from MOODLE_15_STABLE 2005-11-18 10:31:46 +00:00
skodak 5a36be8ce6 Fixed bug #4038 encoding problems when grading; merged from MOODLE_15_STABLE 2005-11-16 22:57:44 +00:00
skodak 77f4b17be8 cleaning of parameter name before use SC#188; merged from MOODLE_15_STABLE 2005-11-16 15:22:21 +00:00
skodak 16907e5366 no page flip after fastgrade saving, allow hiding of grade or comment column when fastgrading, do not update db when no changes in fastgrade; merged from MOODLE_15_STABLE 2005-11-15 23:48:04 +00:00
defacer 02828119f6 OK, trying to write about this in the SC made me think, thinking made me
find the solution. No hacks, no replicating the table object, I just tweaked
the table class itself to help us.

I 'll post at SC#187 about this, but the bug is now totally fixed.
2005-11-13 04:30:50 +00:00
defacer 86f6539591 Removing code block which, upon closer inspection, does nothing at all.
This is obviously a copy/paste artifact from mod/quiz/report/overview/report.php,
but notice that over there is non-trivial processing going on over there with the
sortorder array!

The sortorder can be used directly in queries, just stick an "ORDER BY " in front.
2005-11-13 04:01:41 +00:00
defacer 9894b8246c Gone through the code carefully. Committed what is basically Skodak's patch
at SC#187 postid 1104 with a small addition, EXCEPT the //HACK ALERT part.

Where does that leave us? The popup does not die anymore, BUT:

1. It throws a notice about $sort not being defined (to be expected)
2. It doesn't use the correct sortorder ($sort is not defined, so default sort)

Please see the discussion at SC#187 before doing more work on this.
2005-11-13 03:37:40 +00:00
defacer 5b48244f24 Carefully going through the code now...
Changing get_records_sql() for one record ALWAYS and associated foreach() to
a get_record_sql() without foreach. Please be considerate with copy/paste. ;-)
2005-11-13 03:20:35 +00:00
defacer c9977d055d Been playing around Assignment a bit, and Tidy kept complaining... 2005-11-13 02:50:46 +00:00
defacer 4fdabdc36f Merging from STABLE:
Better retrieval of table sortorder when not done directly through
the table class, see SC#187.
2005-11-12 03:04:11 +00:00
skodak 200c19fb8c cleaning as assignment types SC#182 continued; merged from MOODLE_15_STABLE 2005-11-10 00:22:57 +00:00
skodak de4564ee09 fixed incorrect assignment grades in gradebook when custom scales bug #4279; merged from MOODLE_15_STABLE 2005-11-09 22:39:29 +00:00
skodak c86aa2a479 fixed grades display in assignment/index.php when using different scales; merged from MOODLE_15_STABLE 2005-11-09 22:25:38 +00:00
skodak 5055a3e3d3 fixed grading when secure forms on bug #4300; merged from MOODLE_15_STABLE 2005-11-09 21:37:15 +00:00
moodler fa22fd5fff BIG FEATURE - MULTIPLE GROUPS
Users can now be assigned to multiple groups.  Thanks Yu!
Break out the Bob Marley!!

Otherwise groups work more or less like they did before.

This has been pretty well tested by Yu and myself, but since Yu started
uncovering lots of existing groups bugs it's possible there may be still
a few corner cases still lurking here and there.

Please help test this thoroughly for 1.6!!
2005-11-08 07:19:27 +00:00
moodler 082215e68e Merged fixes from stable 2005-11-04 06:50:30 +00:00
moodler e768aabed0 fixes bug #4268 2005-11-04 06:48:39 +00:00
moodler a81662279f Merged fix for bug 4146 from stable 2005-11-03 09:40:23 +00:00
moodler 9bf660b326 Merged new assignment grading interface fixes from STABLE 2005-11-03 06:25:00 +00:00