]> git.mjollnir.org Git - moodle.git/log
moodle.git
15 years ago"MDL-15351, fixed draft files browsing"
dongsheng [Mon, 22 Jun 2009 02:59:32 +0000 (02:59 +0000)]
"MDL-15351, fixed draft files browsing"

15 years agoajaxlib MDL-16693 Fixed fringe condition in ajaxlib and added test
samhemelryk [Mon, 22 Jun 2009 02:59:02 +0000 (02:59 +0000)]
ajaxlib MDL-16693 Fixed fringe condition in ajaxlib and added test

15 years agoMDL-19418 Replaced ereg* by preg*
nicolasconnault [Mon, 22 Jun 2009 01:22:37 +0000 (01:22 +0000)]
MDL-19418 Replaced ereg* by preg*

15 years agoMDL-16177 Detecting if script is called from URL, in which case it prints header...
nicolasconnault [Mon, 22 Jun 2009 00:52:36 +0000 (00:52 +0000)]
MDL-16177 Detecting if script is called from URL, in which case it prints header, footer and form. Otherwise, silently create a global $generator object that can be used by unit tests.

15 years agoUpdated the HEAD build version to 20090622
moodlerobot [Mon, 22 Jun 2009 00:37:06 +0000 (00:37 +0000)]
Updated the HEAD build version to 20090622

15 years agoAutomatic installer.php lang files by installer_builder (20090622)
moodlerobot [Mon, 22 Jun 2009 00:27:15 +0000 (00:27 +0000)]
Automatic installer.php lang files by installer_builder (20090622)

15 years agoMDL-19580 preparation for requiring yui before print_header()
skodak [Sun, 21 Jun 2009 18:45:07 +0000 (18:45 +0000)]
MDL-19580 preparation for requiring yui  before print_header()

15 years agoMDL-16697 file picker xhtml strict fixes
skodak [Sun, 21 Jun 2009 18:30:41 +0000 (18:30 +0000)]
MDL-16697 file picker xhtml strict fixes

15 years agoMDL-14589 new function returning area files in tree structure
skodak [Sun, 21 Jun 2009 18:22:52 +0000 (18:22 +0000)]
MDL-14589 new function returning area files in tree structure

15 years agoMDL-14589 fixed error message if url malformed
skodak [Sun, 21 Jun 2009 18:22:16 +0000 (18:22 +0000)]
MDL-14589 fixed error message if url malformed

15 years agoMDL-19950 - check for format type name in qformat if not found in quiz.php lang file
arborrow [Sun, 21 Jun 2009 04:29:37 +0000 (04:29 +0000)]
MDL-19950 - check for format type name in qformat if not found in quiz.php lang file

15 years agoUpdated the HEAD build version to 20090621
moodlerobot [Sun, 21 Jun 2009 00:38:56 +0000 (00:38 +0000)]
Updated the HEAD build version to 20090621

15 years agoMDL-19211, MDL-19544 improved editor embedding, media and dragmath enabled only when...
skodak [Sat, 20 Jun 2009 11:00:40 +0000 (11:00 +0000)]
MDL-19211, MDL-19544 improved editor embedding, media and dragmath enabled only when moodle configuration and current user permissions allow it to work 100%

15 years agoUpdated the HEAD build version to 20090620
moodlerobot [Sat, 20 Jun 2009 00:39:27 +0000 (00:39 +0000)]
Updated the HEAD build version to 20090620

15 years agoAutomatic installer.php lang files by installer_builder (20090620)
moodlerobot [Sat, 20 Jun 2009 00:29:33 +0000 (00:29 +0000)]
Automatic installer.php lang files by installer_builder (20090620)

15 years agoMDL-19516 dragmath embedding improvements by Mauno Korpelainen
skodak [Fri, 19 Jun 2009 14:35:46 +0000 (14:35 +0000)]
MDL-19516 dragmath embedding improvements by Mauno Korpelainen

15 years agoMDL-16438 centralise information about plugins to avoid duplication, includes local...
skodak [Fri, 19 Jun 2009 14:25:56 +0000 (14:25 +0000)]
MDL-16438 centralise information about plugins to avoid duplication, includes local customisation conversion to standard plugin structure + fixes for some recent regressions; see tracker for more details and links to docs and forums discussions

15 years agojavascript: MDL-16695 print_footer('empty'); I had the wrong type of quotes.
tjhunt [Fri, 19 Jun 2009 08:02:11 +0000 (08:02 +0000)]
javascript: MDL-16695 print_footer('empty'); I had the wrong type of quotes.
Thanks to Dongsheng for noticing.

15 years ago"MDL-17316, improve non-js filepicker"
dongsheng [Fri, 19 Jun 2009 07:22:37 +0000 (07:22 +0000)]
"MDL-17316, improve non-js filepicker"

15 years agoUpdated the HEAD build version to 20090619
moodlerobot [Fri, 19 Jun 2009 00:39:02 +0000 (00:39 +0000)]
Updated the HEAD build version to 20090619

15 years agoMDL-19528 new dragmath icon by Mauno Korpelainen
skodak [Thu, 18 Jun 2009 17:23:47 +0000 (17:23 +0000)]
MDL-19528 new dragmath icon by Mauno Korpelainen

15 years agothemes: MDL-19077 implement the renderer_factory instrastructure.
tjhunt [Thu, 18 Jun 2009 10:43:13 +0000 (10:43 +0000)]
themes: MDL-19077 implement the renderer_factory instrastructure.

This is part of http://docs.moodle.org/en/Development:Theme_engines_for_Moodle%3F

The concept is that all the print_... functions in weblib get replaced  by methods
on a moodle_core_renderer class. Then, the theme can choose whether to
use the standard moodle_core_renderer class, or another implemenatation of
its own choosing, to generate different HTML.

Also, becuase Moodle is modular, we may need a moodle_mod_forum_renderer
and so on.

In order for the theme to be able to choose which renderers get created, we
introduce the concept  of a renderer factory, as in the factory design pattern.
The theme will choose which factory should be used, and that then creates
the renderer objects based on the module name.

This commit includes 4 types of factory:
* standard_renderer_factory
* custom_corners_renderer_factory
* theme_overridden_renderer_factory
* template_renderer_factory

All this with unit tests and PHP doc comments.

Note, this new code is not actually used yet. Still todo:
1. actually define the moodle_core_renderer class, and deprecate a lot of weblib functions.
2. make theme_setup initialise everything, so it is used.

15 years ago"MDL-17316, supported flickr_public plugin working in non-js filepicker"
dongsheng [Thu, 18 Jun 2009 07:58:37 +0000 (07:58 +0000)]
"MDL-17316, supported flickr_public plugin working in non-js filepicker"

15 years ago"MDL-16698, use non-js filepicker to pick up files"
dongsheng [Thu, 18 Jun 2009 06:52:26 +0000 (06:52 +0000)]
"MDL-16698, use non-js filepicker to pick up files"

15 years ago"MDL-17316, fix upload form in non-js file picker"
dongsheng [Thu, 18 Jun 2009 06:31:51 +0000 (06:31 +0000)]
"MDL-17316, fix upload form in non-js file picker"

15 years agoUpdated the HEAD build version to 20090618
moodlerobot [Thu, 18 Jun 2009 00:39:36 +0000 (00:39 +0000)]
Updated the HEAD build version to 20090618

15 years agoMDL-19552 Fixed a typo.
mits [Wed, 17 Jun 2009 17:40:09 +0000 (17:40 +0000)]
MDL-19552 Fixed a typo.

15 years agojavascript: MDL-16695 print_footer('empty'); was not printing the necessary end of...
tjhunt [Wed, 17 Jun 2009 10:29:42 +0000 (10:29 +0000)]
javascript: MDL-16695 print_footer('empty'); was not printing the necessary end of page code.

15 years agoJust some whitespace fixes
moodler [Wed, 17 Jun 2009 08:50:16 +0000 (08:50 +0000)]
Just some whitespace fixes

15 years agoMove extra ajaxlib unit tests to the right place.
tjhunt [Wed, 17 Jun 2009 07:35:33 +0000 (07:35 +0000)]
Move extra ajaxlib unit tests to the right place.

15 years agoFix boilerplate.
tjhunt [Wed, 17 Jun 2009 07:32:18 +0000 (07:32 +0000)]
Fix boilerplate.

15 years agoJavadoc comment syntax.
tjhunt [Wed, 17 Jun 2009 05:34:10 +0000 (05:34 +0000)]
Javadoc comment syntax.

15 years agoUpdated the HEAD build version to 20090617
moodlerobot [Wed, 17 Jun 2009 00:39:23 +0000 (00:39 +0000)]
Updated the HEAD build version to 20090617

15 years agoMDL-19465 accesslib - improve get_user_access_sitewide() performance (~10%)
stronk7 [Tue, 16 Jun 2009 15:34:55 +0000 (15:34 +0000)]
MDL-19465 accesslib - improve get_user_access_sitewide() performance (~10%)

15 years agoblocks upgrade: MDL-19511 And repeat the upgrade step, since some poeple will have...
tjhunt [Tue, 16 Jun 2009 10:31:33 +0000 (10:31 +0000)]
blocks upgrade: MDL-19511 And repeat the upgrade step, since some poeple will have missed it.

15 years agoMDL-19526 fixed inserting of < and >
skodak [Tue, 16 Jun 2009 10:28:56 +0000 (10:28 +0000)]
MDL-19526 fixed inserting of < and >

15 years agoblocks upgrade: MDL-19511 put back important code that Petr commented out!
tjhunt [Tue, 16 Jun 2009 10:23:56 +0000 (10:23 +0000)]
blocks upgrade: MDL-19511 put back important code that Petr commented out!
The actual mistake was the name of the previous column, which is totally irrelevant, but which XMLDB had filled in incorrectly. Grrr!

15 years agoMDL-19522 dragmath plugin now fully supports localization
skodak [Tue, 16 Jun 2009 10:23:27 +0000 (10:23 +0000)]
MDL-19522 dragmath plugin now fully supports localization

15 years agoadministration MDL-19525 remove global $userfields usage from uploadpicture_form...
jerome [Tue, 16 Jun 2009 09:09:33 +0000 (09:09 +0000)]
administration MDL-19525 remove global $userfields usage from uploadpicture_form class, merged from 1.9

15 years agoMDL-19523 dragmath embedding xhtml fixed
skodak [Tue, 16 Jun 2009 08:54:01 +0000 (08:54 +0000)]
MDL-19523 dragmath embedding xhtml fixed

15 years agoMDL-19523 dragmath embedding xhtml fixed
skodak [Tue, 16 Jun 2009 08:53:37 +0000 (08:53 +0000)]
MDL-19523 dragmath embedding xhtml fixed

15 years agoMDL-19520 upgrading to latest dragmath, thanks Marc Grober for new version notification
skodak [Tue, 16 Jun 2009 08:44:50 +0000 (08:44 +0000)]
MDL-19520 upgrading to latest dragmath, thanks Marc Grober for new version notification

15 years agoMDL-19211 adding forgotten dragmath in legacy editors
skodak [Tue, 16 Jun 2009 08:00:53 +0000 (08:00 +0000)]
MDL-19211 adding forgotten dragmath in legacy editors

15 years ago"MDL-13766, use new API to load javascript files, fix xhtml strict issues in javascri...
dongsheng [Tue, 16 Jun 2009 02:42:32 +0000 (02:42 +0000)]
"MDL-13766, use new API to load javascript files, fix xhtml strict issues in javascript, but YUI cannot work in xml strict mode, so do not true on xml strict option in moodle if you want to use file picker"

15 years agoUpdated the HEAD build version to 20090616
moodlerobot [Tue, 16 Jun 2009 00:40:27 +0000 (00:40 +0000)]
Updated the HEAD build version to 20090616

15 years agoMDL-19460 wiki - disable by default undocumented interwiki links. Can be ebabled...
stronk7 [Mon, 15 Jun 2009 15:11:20 +0000 (15:11 +0000)]
MDL-19460 wiki - disable by default undocumented interwiki links. Can be ebabled with $CFG->wiki_allow_interwiki = true; merged from 19_STABLE

15 years agofilters/multimedia MDL-19504 - Fullscreen button didn't work
poltawski [Mon, 15 Jun 2009 11:21:13 +0000 (11:21 +0000)]
filters/multimedia MDL-19504 - Fullscreen button didn't work

merged from MOODLE_19_STABLE

15 years agojavascript: MDL-19475 replace require_js calls with $PAGE->requires->js.
tjhunt [Mon, 15 Jun 2009 07:57:53 +0000 (07:57 +0000)]
javascript: MDL-19475 replace require_js calls with $PAGE->requires->js.
This is the final batch.

15 years agojavascript: MDL-19475 replace require_js calls with $PAGE->requires->js.
tjhunt [Mon, 15 Jun 2009 07:00:08 +0000 (07:00 +0000)]
javascript: MDL-19475 replace require_js calls with $PAGE->requires->js.

15 years agoMDL-2794 testweblib: adapt the unit tests to the output of new html2text library
fmarier [Mon, 15 Jun 2009 06:08:42 +0000 (06:08 +0000)]
MDL-2794 testweblib: adapt the unit tests to the output of new html2text library

15 years agojavascript: MDL-19475 replace require_js calls with $PAGE->requires->js.
tjhunt [Mon, 15 Jun 2009 05:37:57 +0000 (05:37 +0000)]
javascript: MDL-19475 replace require_js calls with $PAGE->requires->js.

Also, some related JavaScript cleanup.

More to follow.

15 years ago"MDL-16695, fixed yui js files path"
dongsheng [Mon, 15 Jun 2009 05:06:34 +0000 (05:06 +0000)]
"MDL-16695, fixed yui js files path"

15 years agoFurther fixes to PHPdoc comments.
tjhunt [Mon, 15 Jun 2009 04:03:59 +0000 (04:03 +0000)]
Further fixes to PHPdoc comments.

15 years agoFurther fixes to PHPdoc comments.
tjhunt [Mon, 15 Jun 2009 03:54:00 +0000 (03:54 +0000)]
Further fixes to PHPdoc comments.

15 years agoTry to improve formatting of PHPdoc.
tjhunt [Mon, 15 Jun 2009 02:48:40 +0000 (02:48 +0000)]
Try to improve formatting of PHPdoc.

15 years agoFix package name.
tjhunt [Mon, 15 Jun 2009 02:45:26 +0000 (02:45 +0000)]
Fix package name.

15 years agoUpdated the HEAD build version to 20090615
moodlerobot [Mon, 15 Jun 2009 00:39:07 +0000 (00:39 +0000)]
Updated the HEAD build version to 20090615

15 years agoMDL-19500 improved editor embedding
skodak [Sun, 14 Jun 2009 21:35:07 +0000 (21:35 +0000)]
MDL-19500 improved editor embedding

15 years agoMDL-19331 Changes is table name/comments now flag xmldb as changed
stronk7 [Sun, 14 Jun 2009 16:34:34 +0000 (16:34 +0000)]
MDL-19331 Changes is table name/comments now flag xmldb as changed

15 years agoMDL-19498 importing tinymce 3.2.4.1
skodak [Sun, 14 Jun 2009 16:19:28 +0000 (16:19 +0000)]
MDL-19498 importing tinymce 3.2.4.1

15 years agoMDL-19498 testing keyword expansion changes in exported libs
skodak [Sun, 14 Jun 2009 16:14:45 +0000 (16:14 +0000)]
MDL-19498 testing keyword expansion changes in exported libs

15 years agoUpdated the HEAD build version to 20090614
moodlerobot [Sun, 14 Jun 2009 00:39:29 +0000 (00:39 +0000)]
Updated the HEAD build version to 20090614

15 years agoFixed missing ";" - spotted during upgrade
mudrd8mz [Sat, 13 Jun 2009 20:56:14 +0000 (20:56 +0000)]
Fixed missing ";" - spotted during upgrade

15 years agoMDL-18293 removed obsoleted checking of return values from insert and update_record...
skodak [Sat, 13 Jun 2009 18:34:43 +0000 (18:34 +0000)]
MDL-18293 removed obsoleted checking of return values from insert and update_record + unused strings cleanup

15 years agoMDL-18293 removed obsoleted checking of return values from insert and update_record...
skodak [Sat, 13 Jun 2009 18:16:08 +0000 (18:16 +0000)]
MDL-18293 removed obsoleted checking of return values from insert and update_record + unused strings cleanup

15 years agoMDL-18293 removed obsoleted checking of return values from insert and update_record...
skodak [Sat, 13 Jun 2009 18:04:21 +0000 (18:04 +0000)]
MDL-18293 removed obsoleted checking of return values from insert and update_record + unused strings cleanup

15 years agoMDL-18293 removed obsoleted checking of return values from insert and update_record...
skodak [Sat, 13 Jun 2009 17:55:51 +0000 (17:55 +0000)]
MDL-18293 removed obsoleted checking of return values from insert and update_record + unused strings cleanup

15 years agoMDL-18293 removed obsoleted checking of return values from insert and update_record...
skodak [Sat, 13 Jun 2009 17:47:18 +0000 (17:47 +0000)]
MDL-18293 removed obsoleted checking of return values from insert and update_record + unused strings cleanup

15 years agoMDL-18293 removed obsoleted checking of return values from insert and update_record...
skodak [Sat, 13 Jun 2009 17:35:10 +0000 (17:35 +0000)]
MDL-18293 removed obsoleted checking of return values from insert and update_record + unused strings cleanup

15 years agoMDL-18293 removed obsoleted checking of return values from insert and update_record...
skodak [Sat, 13 Jun 2009 17:17:10 +0000 (17:17 +0000)]
MDL-18293 removed obsoleted checking of return values from insert and update_record + unused strings cleanup

15 years agoMDL-18293 removed obsoleted checking of return values from insert and update_record
skodak [Sat, 13 Jun 2009 16:47:05 +0000 (16:47 +0000)]
MDL-18293 removed obsoleted checking of return values from insert and update_record

15 years agoMDL-14990 pritning of backtrace does not rely on $CFG any more and can be used from...
skodak [Sat, 13 Jun 2009 16:07:14 +0000 (16:07 +0000)]
MDL-14990 pritning of backtrace does not rely on $CFG any more and can be used from destructors

15 years agoMDL-14990 implemented query loggin in new native DML drivers
skodak [Sat, 13 Jun 2009 15:59:55 +0000 (15:59 +0000)]
MDL-14990 implemented query loggin in new native DML drivers

15 years agoMDL-19497 - group selection is broken
agrabs [Sat, 13 Jun 2009 14:17:00 +0000 (14:17 +0000)]
MDL-19497 - group selection is broken

15 years agoMDL-19470, MDL-14990 fixed db transactio nregression + towards query logging support
skodak [Sat, 13 Jun 2009 10:16:29 +0000 (10:16 +0000)]
MDL-19470, MDL-14990 fixed db transactio nregression + towards query logging support

15 years agoMDL-14679 fixing old TODOs and adding more CLI support
skodak [Sat, 13 Jun 2009 09:16:30 +0000 (09:16 +0000)]
MDL-14679 fixing old TODOs and adding more CLI support

15 years agoMDL-19474 adding TODO for removing of obsoleted adodb drivers before branching
skodak [Sat, 13 Jun 2009 09:11:54 +0000 (09:11 +0000)]
MDL-19474 adding TODO for removing of obsoleted adodb drivers before branching

15 years agoMDL-14679 fixing old TODOs
skodak [Sat, 13 Jun 2009 09:09:30 +0000 (09:09 +0000)]
MDL-14679 fixing old TODOs

15 years agoUpdated the HEAD build version to 20090613
moodlerobot [Sat, 13 Jun 2009 00:39:12 +0000 (00:39 +0000)]
Updated the HEAD build version to 20090613

15 years agoMDL-19477 - Issues on check_text access controllers
diml [Fri, 12 Jun 2009 16:18:37 +0000 (16:18 +0000)]
MDL-19477 - Issues on check_text access controllers

15 years agoajaxlib/require_js: MDL-16693 $PAGE->requires->... deprecates require_js etc.
tjhunt [Fri, 12 Jun 2009 12:13:07 +0000 (12:13 +0000)]
ajaxlib/require_js: MDL-16693 $PAGE->requires->... deprecates require_js etc.

There is a new implementation of require_js in lib/deprecatedlib.php,
based on $PAGE->requires.

There were a few other recently introduced functions in lib/weblib.php,
namely print_js_call, print_delayed_js_call, print_js_config and
standard_js_config. These have been removed, since they were never in
a stable branch, and all the places that used them have been changed
to use the newer $PAGE->requires->... methods.

get_require_js_code is also gone, and the evil places that were calling
it, even though it is an internal function, have been fixed.

Also, I made some minor improvements to the code I committed yesterday
for MDL-16695.

All that remains is to update all the places in core code that are
still using require_js.

(This commit also fixes the problem where the admin tree would not
start with the right categories expanded.)

15 years agoFix some fallout from the pagelib changes.
tjhunt [Fri, 12 Jun 2009 12:08:25 +0000 (12:08 +0000)]
Fix some fallout from the pagelib changes.

15 years agoYes the, new, more efficient, variant of the select all checkboxes function.
tjhunt [Fri, 12 Jun 2009 12:07:35 +0000 (12:07 +0000)]
Yes the, new, more efficient, variant of the select all checkboxes function.

15 years agoFix whitespace, and a minor problem, in javascript-static.
tjhunt [Fri, 12 Jun 2009 12:01:16 +0000 (12:01 +0000)]
Fix whitespace, and a minor problem, in javascript-static.
Also, new, more efficient, variant of the select all checkboxes function,
for when they are all in a container with an id.

15 years agoFix whitespace.
tjhunt [Fri, 12 Jun 2009 11:57:15 +0000 (11:57 +0000)]
Fix whitespace.

15 years agoFix some fallout from the pagelib changes.
tjhunt [Fri, 12 Jun 2009 11:56:30 +0000 (11:56 +0000)]
Fix some fallout from the pagelib changes.

15 years agoFix print_footer call, and some fallout from the pagelib changes.
tjhunt [Fri, 12 Jun 2009 11:53:35 +0000 (11:53 +0000)]
Fix print_footer call, and some fallout from the pagelib changes.

15 years agoMDL-19470 detection of unfinished transactions and transactions interrupted by exceptions
skodak [Fri, 12 Jun 2009 10:59:28 +0000 (10:59 +0000)]
MDL-19470 detection of unfinished transactions and transactions interrupted by exceptions

15 years agoFix syntax error.
tjhunt [Fri, 12 Jun 2009 10:13:01 +0000 (10:13 +0000)]
Fix syntax error.

15 years agoKill use of deprecated parameter.
tjhunt [Fri, 12 Jun 2009 10:05:16 +0000 (10:05 +0000)]
Kill use of deprecated parameter.

15 years agoFix whitespace.
tjhunt [Fri, 12 Jun 2009 09:09:28 +0000 (09:09 +0000)]
Fix whitespace.

15 years agoMDL-14679 license header fixes
skodak [Fri, 12 Jun 2009 08:50:50 +0000 (08:50 +0000)]
MDL-14679 license header fixes

15 years agoMDL-14679 license header fixes
skodak [Fri, 12 Jun 2009 08:44:49 +0000 (08:44 +0000)]
MDL-14679 license header fixes

15 years agoMDL-19470 adding missing inline docs
skodak [Fri, 12 Jun 2009 08:27:19 +0000 (08:27 +0000)]
MDL-19470 adding missing inline docs

15 years agoMDL-19470 adding missing inline docs
skodak [Fri, 12 Jun 2009 08:15:53 +0000 (08:15 +0000)]
MDL-19470 adding missing inline docs

15 years agoMDL-19470 fixing DML license headers
skodak [Fri, 12 Jun 2009 08:14:29 +0000 (08:14 +0000)]
MDL-19470 fixing DML license headers

15 years agoMDL-19470 detection of nested transactions, only one level allowed
skodak [Fri, 12 Jun 2009 07:55:44 +0000 (07:55 +0000)]
MDL-19470 detection of nested transactions, only one level allowed

15 years agoXHTML strict.
tjhunt [Fri, 12 Jun 2009 07:30:07 +0000 (07:30 +0000)]
XHTML strict.

15 years ago"MDL-16596, remove inline css from filemanager"
dongsheng [Fri, 12 Jun 2009 05:59:43 +0000 (05:59 +0000)]
"MDL-16596, remove inline css from filemanager"

15 years ago"MDL-19002, implement attachment files limit in file picker"
dongsheng [Fri, 12 Jun 2009 05:57:25 +0000 (05:57 +0000)]
"MDL-19002, implement attachment files limit in file picker"