]> git.mjollnir.org Git - moodle.git/log
moodle.git
15 years agoReplacing deprecated print_user_picture()
David Mudrak [Mon, 4 Jan 2010 17:50:13 +0000 (17:50 +0000)]
Replacing deprecated print_user_picture()

15 years agoDisplay "Edit submission" button at submission page
David Mudrak [Mon, 4 Jan 2010 17:50:03 +0000 (17:50 +0000)]
Display "Edit submission" button at submission page

15 years agoDeletes the embeded media when deleting the assessment dimension
David Mudrak [Mon, 4 Jan 2010 17:49:53 +0000 (17:49 +0000)]
Deletes the embeded media when deleting the assessment dimension

15 years agoDo not support tags yet until the API stabilizes
David Mudrak [Mon, 4 Jan 2010 17:49:43 +0000 (17:49 +0000)]
Do not support tags yet until the API stabilizes

The generated form uses deprecated calls at the moment.

15 years agoReplaces deprecated update_module_button()
David Mudrak [Mon, 4 Jan 2010 17:49:33 +0000 (17:49 +0000)]
Replaces deprecated update_module_button()

15 years agoAssessment dimensions now have unique id which allows to embed media.
David Mudrak [Mon, 4 Jan 2010 17:49:23 +0000 (17:49 +0000)]
Assessment dimensions now have unique id which allows to embed media.

15 years agoDB structure change
David Mudrak [Mon, 4 Jan 2010 17:49:13 +0000 (17:49 +0000)]
DB structure change

Every dimension has to have its own ID so it may become itemid within
File API framework. Using the same model as we have with course modules
and module instances.
Also, removing some obsolete fields.

15 years agoA lot of changes here and there
David Mudrak [Mon, 4 Jan 2010 17:49:01 +0000 (17:49 +0000)]
A lot of changes here and there

15 years agoUses workshop renderer to display assessment page
David Mudrak [Mon, 4 Jan 2010 17:48:33 +0000 (17:48 +0000)]
Uses workshop renderer to display assessment page

Some small refactoring like using single function to group users done.

15 years agoMDL-19941 Submission attachments and embedded files draft support
David Mudrak [Mon, 4 Jan 2010 17:48:20 +0000 (17:48 +0000)]
MDL-19941 Submission attachments and embedded files draft support

Plus some cleaning up here and there

15 years agoAdding a development tools script
David Mudrak [Mon, 4 Jan 2010 17:48:07 +0000 (17:48 +0000)]
Adding a development tools script

15 years agoIn response to MDL-19603 changing the text length to big everywhere
David Mudrak [Mon, 4 Jan 2010 17:47:54 +0000 (17:47 +0000)]
In response to MDL-19603 changing the text length to big everywhere

Also, the submission wysiwyg part is going to be stored in "content"
instead of current "data".

15 years agoExtending workshop class constructor
David Mudrak [Mon, 4 Jan 2010 17:47:43 +0000 (17:47 +0000)]
Extending workshop class constructor

Every action script in 99% starts with fetching course, course module,
and module instance record. Workshop class will keep the reference to
the course record in courserecord public member variable (do not confuse
with course integer property).

15 years agoMDL-19870 Random allocation - work in progress
David Mudrak [Mon, 4 Jan 2010 17:47:32 +0000 (17:47 +0000)]
MDL-19870 Random allocation - work in progress

Random allocation implemented. More testing needed.

15 years agoFix: do not remove allocation if it should be kept
David Mudrak [Mon, 4 Jan 2010 17:47:22 +0000 (17:47 +0000)]
Fix: do not remove allocation if it should be kept

15 years agoMDL-19870 Initial work on random allocator
David Mudrak [Mon, 4 Jan 2010 17:47:09 +0000 (17:47 +0000)]
MDL-19870 Initial work on random allocator

Initial sketches of random allocator. Refactoring of the rest of the
module here and there. Also, this commit removes trailing whitespace and
running empty lines.

15 years agoUse the new output->table() rendering method
David Mudrak [Mon, 4 Jan 2010 17:46:44 +0000 (17:46 +0000)]
Use the new output->table() rendering method

15 years agoManual allocator uses the new subrendering feature
David Mudrak [Mon, 4 Jan 2010 17:46:33 +0000 (17:46 +0000)]
Manual allocator uses the new subrendering feature

15 years agoMDL-19717 First drafts of allocation support
David Mudrak [Mon, 4 Jan 2010 17:46:05 +0000 (17:46 +0000)]
MDL-19717 First drafts of allocation support

15 years agoAdded capabilities
David Mudrak [Mon, 4 Jan 2010 17:45:27 +0000 (17:45 +0000)]
Added capabilities

15 years agoUse the new output approach
David Mudrak [Mon, 4 Jan 2010 17:45:14 +0000 (17:45 +0000)]
Use the new output approach

15 years agoRemoved anonymity and hidegrades
David Mudrak [Mon, 4 Jan 2010 17:45:03 +0000 (17:45 +0000)]
Removed anonymity and hidegrades

These will be controlled by capabilities, as suggested by Eloy.

15 years agoFirst drafts of assessment support
David Mudrak [Mon, 4 Jan 2010 17:44:52 +0000 (17:44 +0000)]
First drafts of assessment support

15 years agoRenaming {load|save}_grading_form() methods
David Mudrak [Mon, 4 Jan 2010 17:44:30 +0000 (17:44 +0000)]
Renaming {load|save}_grading_form() methods

After I started work on assessment support, I realized that "grading
form" would not be consistent with "assessment form".

15 years agoRenaming gradingform.php to edit_form.php
David Mudrak [Mon, 4 Jan 2010 17:44:07 +0000 (17:44 +0000)]
Renaming gradingform.php to edit_form.php

15 years agoFirst drafts of the Number of errors grading strategy
David Mudrak [Mon, 4 Jan 2010 17:43:31 +0000 (17:43 +0000)]
First drafts of the Number of errors grading strategy

15 years agoDisplay the strategy name
David Mudrak [Mon, 4 Jan 2010 17:43:12 +0000 (17:43 +0000)]
Display the strategy name

15 years agoEdit grading form refactoring
David Mudrak [Mon, 4 Jan 2010 17:43:02 +0000 (17:43 +0000)]
Edit grading form refactoring

The previous desing was too "base-class oriented". I have realized that
strategies have to deal with loading and saving dimension definitions in
their own way. Getting rid of all db<->form field mappings as it would
work for very simple strategies only.

15 years agoAdded submission form strings
David Mudrak [Mon, 4 Jan 2010 17:42:49 +0000 (17:42 +0000)]
Added submission form strings

15 years agoSome plays with submission, to do
David Mudrak [Mon, 4 Jan 2010 17:42:37 +0000 (17:42 +0000)]
Some plays with submission, to do

15 years agoAdding formal source code conventions
David Mudrak [Mon, 4 Jan 2010 17:42:27 +0000 (17:42 +0000)]
Adding formal source code conventions

15 years agoExplaining nattachments better
David Mudrak [Mon, 4 Jan 2010 17:42:17 +0000 (17:42 +0000)]
Explaining nattachments better

15 years agoInitial draft of submission support
David Mudrak [Mon, 4 Jan 2010 17:38:29 +0000 (17:38 +0000)]
Initial draft of submission support

15 years agoSome mform refactoring
David Mudrak [Mon, 4 Jan 2010 17:37:53 +0000 (17:37 +0000)]
Some mform refactoring

Uses customdata instead of modified constructor.

15 years agoYay! Saving dimensions works
David Mudrak [Mon, 4 Jan 2010 17:37:31 +0000 (17:37 +0000)]
Yay! Saving dimensions works

Cooking dimension editor's raw data is done by the strategy class.

15 years agoFixed the missing table in Error banded strategy and renaming it to Number of errors.
David Mudrak [Mon, 4 Jan 2010 17:37:04 +0000 (17:37 +0000)]
Fixed the missing table in Error banded strategy and renaming it to Number of errors.

15 years agoUse strategy-specific term for assessment dimension
David Mudrak [Mon, 4 Jan 2010 17:36:43 +0000 (17:36 +0000)]
Use strategy-specific term for assessment dimension

15 years agoApplying Eloy's suggestions
David Mudrak [Mon, 4 Jan 2010 17:36:15 +0000 (17:36 +0000)]
Applying Eloy's suggestions

15 years agoMore work on the strategy API
David Mudrak [Mon, 4 Jan 2010 17:35:56 +0000 (17:35 +0000)]
More work on the strategy API

15 years agoSome files renamed to fit the coding style
David Mudrak [Mon, 4 Jan 2010 17:35:12 +0000 (17:35 +0000)]
Some files renamed to fit the coding style

15 years agoMDL-17827 workshop: initial check in of the files
David Mudrak [Mon, 4 Jan 2010 17:34:08 +0000 (17:34 +0000)]
MDL-17827 workshop: initial check in of the files

Exported from David's git repository

15 years agoAdding locallib.php to store internal functions
David Mudrak [Mon, 4 Jan 2010 17:12:35 +0000 (17:12 +0000)]
Adding locallib.php to store internal functions

15 years agoMDL-20204 improved pix docs
Petr Skoda [Mon, 4 Jan 2010 14:40:34 +0000 (14:40 +0000)]
MDL-20204 improved pix docs

15 years agoMDL-21236 removing spurious popup action from normal action links, thanks sam
Petr Skoda [Mon, 4 Jan 2010 09:46:47 +0000 (09:46 +0000)]
MDL-21236 removing spurious popup action from normal action links, thanks sam

15 years ago"MDL-20204, fixed yui2 js file path"
Dongsheng Cai [Mon, 4 Jan 2010 08:33:33 +0000 (08:33 +0000)]
"MDL-20204, fixed yui2 js file path"

15 years agoMDL-21232 using normal = which should be enough now in PHP5
Petr Skoda [Mon, 4 Jan 2010 07:51:59 +0000 (07:51 +0000)]
MDL-21232 using normal = which should be enough now in PHP5

15 years agoportfolio/glossary MDL-21158 make sure full glossary export is in a leap2a selection
Penny Leach [Mon, 4 Jan 2010 03:57:47 +0000 (03:57 +0000)]
portfolio/glossary MDL-21158   make sure full glossary export is in a leap2a selection

15 years agoportfolio NOBUG just fixed some code wrapping in a long line
Penny Leach [Mon, 4 Jan 2010 03:43:18 +0000 (03:43 +0000)]
portfolio NOBUG just fixed some code wrapping in a long line

15 years agoportfolio/forum MDL-21156 added portfolio url rewriting to forum export
Penny Leach [Mon, 4 Jan 2010 03:28:59 +0000 (03:28 +0000)]
portfolio/forum MDL-21156  added portfolio url rewriting to forum export

15 years agoportfolio MDL-21156 added a missing lang string and removed a too strict exception
Penny Leach [Mon, 4 Jan 2010 03:20:48 +0000 (03:20 +0000)]
portfolio MDL-21156  added a missing lang string and removed a too strict exception

15 years agooutput MDL-21232 image now checks to see if passed url var is a moodle_url to avoid...
Sam Hemelryk [Mon, 4 Jan 2010 02:53:47 +0000 (02:53 +0000)]
output MDL-21232 image now checks to see if passed url var is a moodle_url to avoid bad image src attribute

15 years agoUpdated the HEAD build version to 20100104
Moodle Robot [Mon, 4 Jan 2010 00:33:27 +0000 (00:33 +0000)]
Updated the HEAD build version to 20100104

15 years agoMDL-21231 fixed recent regression, thanks penny for the report
Petr Skoda [Sun, 3 Jan 2010 21:10:49 +0000 (21:10 +0000)]
MDL-21231 fixed recent regression, thanks penny for the report

15 years agoMDL-21198 one more single_button + version bump to the new year (could not resit it)
Petr Skoda [Sun, 3 Jan 2010 20:54:36 +0000 (20:54 +0000)]
MDL-21198 one more single_button + version bump to the new year (could not resit it)

15 years agoMDL-21198 fixed silly regression in type checking - grrr
Petr Skoda [Sun, 3 Jan 2010 20:49:30 +0000 (20:49 +0000)]
MDL-21198 fixed silly regression in type checking - grrr

15 years agoMDL-21198 used new simple_button class when doing OUTPUT->confirm() - more consistent...
Petr Skoda [Sun, 3 Jan 2010 20:47:13 +0000 (20:47 +0000)]
MDL-21198 used new simple_button class when doing OUTPUT->confirm() - more consistent and hopefully easier to remember than html_form::make_button() ;-)

15 years agoMDL-21198 new simple_button output component, this could finally solve potential...
Petr Skoda [Sun, 3 Jan 2010 17:20:49 +0000 (17:20 +0000)]
MDL-21198 new simple_button output component, this could finally solve potential "form x button" confusion - continued

15 years agoMDL-21198 new simple_button output component, this could finally solve potential...
Petr Skoda [Sun, 3 Jan 2010 17:08:21 +0000 (17:08 +0000)]
MDL-21198 new simple_button output component, this could finally solve potential "form x button" confusion

15 years agoMDL-21198 $OUTPUT->single_button() resurrection, hopefully much easier to use than...
Petr Skoda [Sun, 3 Jan 2010 15:46:14 +0000 (15:46 +0000)]
MDL-21198 $OUTPUT->single_button() resurrection, hopefully much easier to use than $OUTPUT->button(); fixed some regressions and code style improvements

15 years agoMDL-21198 towards origianl single_button() syntax + other improvements
Petr Skoda [Sun, 3 Jan 2010 10:28:29 +0000 (10:28 +0000)]
MDL-21198 towards origianl single_button() syntax + other improvements

15 years agoUpdated the HEAD build version to 20100103
Moodle Robot [Sun, 3 Jan 2010 00:33:51 +0000 (00:33 +0000)]
Updated the HEAD build version to 20100103

15 years agoPreventing assignment CSS from influencing other modules
David Mudrak [Sat, 2 Jan 2010 22:54:13 +0000 (22:54 +0000)]
Preventing assignment CSS from influencing other modules

This was discovered during workshop testing. User pictures were all
displayed in size 35x35px regardless their size setting. This was caused
by mod/assignment standard theme.

15 years agoMDL-21198 fixing a regression in the recent action_link() rewrite
David Mudrak [Sat, 2 Jan 2010 21:40:00 +0000 (21:40 +0000)]
MDL-21198 fixing a regression in the recent action_link() rewrite

15 years agoMDL-21198 fixed a typo
David Mudrak [Sat, 2 Jan 2010 20:58:43 +0000 (20:58 +0000)]
MDL-21198 fixed a typo

15 years agoMDL-21198 minor cleanup and improvements
Petr Skoda [Sat, 2 Jan 2010 13:57:44 +0000 (13:57 +0000)]
MDL-21198 minor cleanup and improvements

15 years agoMDL-21198 fixed yet another regression in last commit, lalala
Petr Skoda [Sat, 2 Jan 2010 13:26:09 +0000 (13:26 +0000)]
MDL-21198 fixed yet another regression in last commit, lalala

15 years agoMDL-21198 fixed another regression in last commit
Petr Skoda [Sat, 2 Jan 2010 13:25:09 +0000 (13:25 +0000)]
MDL-21198 fixed another regression in last commit

15 years agoMDL-21198 fixed regression in last commit
Petr Skoda [Sat, 2 Jan 2010 13:23:43 +0000 (13:23 +0000)]
MDL-21198 fixed regression in last commit

15 years agoMDL-21198 OUTPUT->action_icon improvements, refactoring and fixing conversion regressions
Petr Skoda [Sat, 2 Jan 2010 13:17:54 +0000 (13:17 +0000)]
MDL-21198 OUTPUT->action_icon improvements, refactoring and fixing conversion regressions

15 years agoUpdated the HEAD build version to 20100102
Moodle Robot [Sat, 2 Jan 2010 00:33:17 +0000 (00:33 +0000)]
Updated the HEAD build version to 20100102

15 years agoMDL-20204 Eclipse autocompletion works again
Petr Skoda [Fri, 1 Jan 2010 12:44:08 +0000 (12:44 +0000)]
MDL-20204 Eclipse autocompletion works again

15 years agoUpdated the HEAD build version to 20100101
Moodle Robot [Fri, 1 Jan 2010 00:33:49 +0000 (00:33 +0000)]
Updated the HEAD build version to 20100101

15 years agoAutomatic installer.php lang files by installer_builder (20100101)
Moodle Robot [Fri, 1 Jan 2010 00:23:06 +0000 (00:23 +0000)]
Automatic installer.php lang files by installer_builder (20100101)

15 years agoMDL-21198 $OUTPUT->icon() improvements
Petr Skoda [Thu, 31 Dec 2009 10:06:57 +0000 (10:06 +0000)]
MDL-21198 $OUTPUT->icon() improvements

15 years agoMDL-21198 $OUTPUT->icon() improvements
Petr Skoda [Thu, 31 Dec 2009 10:06:56 +0000 (10:06 +0000)]
MDL-21198 $OUTPUT->icon() improvements

15 years agoUpdated the HEAD build version to 20091231
Moodle Robot [Thu, 31 Dec 2009 00:34:17 +0000 (00:34 +0000)]
Updated the HEAD build version to 20091231

15 years agoAutomatic installer.php lang files by installer_builder (20091231)
Moodle Robot [Thu, 31 Dec 2009 00:23:03 +0000 (00:23 +0000)]
Automatic installer.php lang files by installer_builder (20091231)

15 years agoNOBUG: Fix use of output_tag() causing warnings here and there.
Eloy Lafuente [Wed, 30 Dec 2009 18:00:34 +0000 (18:00 +0000)]
NOBUG: Fix use of output_tag() causing warnings here and there.

15 years agoMDL-16658 restore - new restore:createuser cap + pre-check users before restoring...
Eloy Lafuente [Wed, 30 Dec 2009 17:35:36 +0000 (17:35 +0000)]
MDL-16658 restore - new restore:createuser cap + pre-check users before restoring; merged from 19_STABLE

15 years agoMDL-20204 sheet name first, thanks Urs
Petr Skoda [Wed, 30 Dec 2009 15:32:58 +0000 (15:32 +0000)]
MDL-20204 sheet name first, thanks Urs

15 years agoMDL-21217, MDL-21198 simplified/improved outputlib help icon related apis + several...
Petr Skoda [Wed, 30 Dec 2009 15:19:59 +0000 (15:19 +0000)]
MDL-21217, MDL-21198 simplified/improved outputlib help icon related apis + several fixed regresions

15 years agoMDL-21217, MDL-21198 simplified/improved outputlib help icon related apis + several...
Petr Skoda [Wed, 30 Dec 2009 15:19:55 +0000 (15:19 +0000)]
MDL-21217, MDL-21198 simplified/improved outputlib help icon related apis + several fixed regresions

15 years agomoodle.org lang string: MDLSITE-846 thanks to Mauno
Helen Foster [Wed, 30 Dec 2009 14:09:22 +0000 (14:09 +0000)]
moodle.org lang string: MDLSITE-846 thanks to Mauno

15 years agomoodle.org lang strings: MDLSITE-297 thanks to MD
Helen Foster [Wed, 30 Dec 2009 12:38:06 +0000 (12:38 +0000)]
moodle.org lang strings: MDLSITE-297 thanks to MD

15 years agoUpdated the HEAD build version to 20091230
Moodle Robot [Wed, 30 Dec 2009 00:33:39 +0000 (00:33 +0000)]
Updated the HEAD build version to 20091230

15 years agoMDL-20204 just a little blue theme experiment for testing of theme development proces...
Petr Skoda [Tue, 29 Dec 2009 22:11:52 +0000 (22:11 +0000)]
MDL-20204 just a little blue theme experiment for testing of theme development process ;-)

15 years agoMDL-20204 just a little blue theme experiment for testing of theme development proces...
Petr Skoda [Tue, 29 Dec 2009 22:11:52 +0000 (22:11 +0000)]
MDL-20204 just a little blue theme experiment for testing of theme development process ;-)

15 years agoNOBUG: Whitespace and XHTML ; merged from 19_STABLE
Eloy Lafuente [Tue, 29 Dec 2009 19:36:08 +0000 (19:36 +0000)]
NOBUG: Whitespace and XHTML ; merged from 19_STABLE

15 years agoMDL-21119 lang menu and login info now handled by themes
Petr Skoda [Tue, 29 Dec 2009 17:26:29 +0000 (17:26 +0000)]
MDL-21119 lang menu and login info now handled by themes

15 years agoMDL-20204 fixed some alt image typos
Petr Skoda [Tue, 29 Dec 2009 14:38:49 +0000 (14:38 +0000)]
MDL-20204 fixed some alt image typos

15 years agoMDL-21210 hopefully fixed $PAGE->set_url() weirdness and added more diagnostics
Petr Skoda [Tue, 29 Dec 2009 14:30:15 +0000 (14:30 +0000)]
MDL-21210 hopefully fixed $PAGE->set_url()  weirdness and added more diagnostics

15 years agoMDL-21193 improved error messages in combo loader
Petr Skoda [Tue, 29 Dec 2009 12:39:11 +0000 (12:39 +0000)]
MDL-21193 improved error messages in combo loader

15 years agoMDL-21193 improved error messages in combo loader
Petr Skoda [Tue, 29 Dec 2009 12:38:50 +0000 (12:38 +0000)]
MDL-21193 improved error messages in combo loader

15 years agoMDL-20204 adding missing theme render prefix for current theme - thanks dvpdiner2
Petr Skoda [Tue, 29 Dec 2009 12:23:39 +0000 (12:23 +0000)]
MDL-20204 adding missing theme render prefix for current theme - thanks dvpdiner2

15 years agoMDL-21208 THEME_DESIGNER_CACHE_LIFETIME control option added
Petr Skoda [Tue, 29 Dec 2009 12:14:42 +0000 (12:14 +0000)]
MDL-21208 THEME_DESIGNER_CACHE_LIFETIME control option added

15 years agoMDL-21208 major perf improvement for theme designer mode - now partially cached too ;-)
Petr Skoda [Tue, 29 Dec 2009 12:04:31 +0000 (12:04 +0000)]
MDL-21208 major perf improvement for theme designer mode - now partially cached too ;-)

15 years agoMDL-21208 longer image caching in theme designer mode (performance)
Petr Skoda [Tue, 29 Dec 2009 11:05:25 +0000 (11:05 +0000)]
MDL-21208 longer image caching in theme designer mode (performance)

15 years agoUpdated the HEAD build version to 20091229
Moodle Robot [Tue, 29 Dec 2009 00:33:16 +0000 (00:33 +0000)]
Updated the HEAD build version to 20091229

15 years agoMDL-21193 finally fixed YUI3 laoding - now fully cached and working - yay!
Petr Skoda [Mon, 28 Dec 2009 23:08:55 +0000 (23:08 +0000)]
MDL-21193 finally fixed YUI3 laoding - now fully cached and working - yay!

15 years agoMDL-21204 fixed incorrect url params, credit goes to Gabriel Dias
Petr Skoda [Mon, 28 Dec 2009 19:42:19 +0000 (19:42 +0000)]
MDL-21204 fixed incorrect url params, credit goes to Gabriel Dias