1735 Commits

Author SHA1 Message Date
skodak
029735054a MDL-11859 student rank and showing of hidden grade items are now configurable + fixed some incorrect include_once 2007-10-21 12:56:19 +00:00
skodak
89a5f82768 MDL-11278 improved forced category settings - refactoring + regrading forced + new setting to hide forced settings in UI 2007-10-20 15:00:31 +00:00
mudrd8mz
a8d0a37a27 Fixed tabindex feature 2007-10-20 01:03:06 +00:00
mudrd8mz
cc8d91fa5f Added tabindex so you can jump to another missing string field by pressing a TAB key. 2007-10-20 00:45:51 +00:00
stronk7
df7cb97973 Adding support to course/formats from within the editor. MDL-11842
Merged from MOODLE_19_STABLE
2007-10-19 16:52:34 +00:00
skodak
d297269d79 2007-10-19 08:51:52 +00:00
toyomoyo
deb2988f39 MDL-11167, admin blocks page should not show blocks not placed on course pages 2007-10-19 07:54:30 +00:00
toyomoyo
cb8cb8bf88 MDL-11241, adding logs for roles management 2007-10-18 05:53:14 +00:00
tjhunt
93b2ed94a8 MDL-11061 - admin notifications about $CFG->wwwroot, which sometimes lead to obscure errors. Merged from MOODLE_19_STABLE. 2007-10-17 20:21:16 +00:00
toyomoyo
74204b6188 MDL-11687, the string 'capability' should not be translated in the links to capabilties docs page 2007-10-17 05:37:12 +00:00
toyomoyo
08eb5c4605 MDL-11687, the string 'capability' should not be translated in the links to capabilities docs page 2007-10-17 05:30:57 +00:00
toyomoyo
e8f78c916d MDL-11553, reducing the number of bulk user selection buttons and lang changes 2007-10-17 04:30:22 +00:00
donal72
4275772978 Display a breakdown of certificate credentials information to assist in debugging. MDL-11020, MDL-10326 2007-10-16 13:30:13 +00:00
donal72
3e2dd3f6af Label for wwwroot field 2007-10-16 10:20:26 +00:00
nicolasconnault
ed818bbdbf MDL-10905 iterating correctly with readdir (as shown in php doc) 2007-10-15 05:18:58 +00:00
skodak
03cedd6283 MDL-11432 eliminated majority of RecordCount uses, added several missing rs_close() - this should help improve perf on some platforms - Eloy says ;-) 2007-10-10 12:19:27 +00:00
skodak
8a4d32d8a3 MDL-11688 makes sure all course and user contexts exist during upgrade (all contexts when going from in 1.6) - this is needed for grade_letter upgrade; other minor tweaks - the USER->access is now loaded automatically, feedback parameters added 2007-10-10 08:33:06 +00:00
toyomoyo
864d1f8c2c MDL-11667, adding 2 global variables to set default export decimal point and display format. During export there are 2 new settings for decimal points and display format, default to site setting. Removed letter option because it is a format that you can choose now. 2007-10-10 06:43:23 +00:00
nicolasconnault
b7064779f5 Updated copyright notice in header 2007-10-10 05:25:14 +00:00
skodak
128f098418 MDL-11640
* improved handling of dirty contexts in general - caching, switching in cron, marking, loading, etc.
* role_assing() and role_unassign() now marks dirty contexts because we use has_capability() in this function - we can not do it later outside to speedup bulk operations
* fixed some inline docs
* fixed notice from rs closing
* removed cached $CONTEXT from has_capability() - $context is now required parameter; this was hiding serious bugs when context did not exist or ppl passed false as parameter
* removed some ===, we can not use these on function parameters - we must support ints, strings, '', nulls, etc. - this could be a source of really dangerous bugs in future
* some other improvements and fixes - documented inline
2007-10-09 12:49:54 +00:00
skodak
e072450699 MDL-11578 , MDL-11578 , MDL-11573 :
* renamed Preferences to "My report preferences"
* renamed Site defaults to "Report defaults"
* rename Change site defaults to "Change report defaults"
* reintroduced Inherit option to Grader preferences - Nicolas was right, it is not possible to implement preference overrides without it with our current get_pref inplementation
* new separate option in plugin selector "Course settings"
* moved displaytype, decimals and aggregation position to "Course settings"
* created new table grade_settings + related functions grade_get/set_preference()
* user report now uses grade_seq class instead of grade_item::fetch_all(); added preloading of grade items into grade_grade instances
* other minor bugfixing/cleanup/improvements

Please note that the Grader report preferences and its defaults must be resaved again - sorry.
2007-10-08 23:09:10 +00:00
skodak
d622930b39 MDL-11618 removed the inherit override from decimals and gradetype used on grader report preferences + several bug fixes + settings improvements 2007-10-07 18:15:57 +00:00
stronk7
f1dc7614b5 Adding some traces here and there 2007-10-07 17:28:46 +00:00
moodler
63a11f3c95 Added some hooks to increase debugging in admin/cron.php
$CFG->showcronsql
$CFG->showcrondebugging
2007-10-07 14:52:29 +00:00
skodak
1bc8aab1c5 fixed defaults and hardcoded lang strings in performance settings 2007-10-07 14:01:36 +00:00
stronk7
d9420631b8 ORPHAN_USER_LASTACCESS_PROBLEM . MDL-11604 2007-10-05 22:27:55 +00:00
skodak
7d0c81b3ba MDL-11521 fixed problems when creating contexts and aprents does not exist yet
MDL-11527 fixed warning from $CFG->defaultuserroleid when installing and upgrading
+ removed reusing of previous contexts in has_capability() and get_context_instance()  because it was hiding critical errors when context was false, not specified, etc.
+ tweaked roles defaults - faster and defaults are applied when roles exist
+ SYSCONTEXTID may be specified in config.php to eliminate 1 db query
+ static context cache is now reset after rebuilding of context paths
+ path field in context table is now nullable - pg compatibility requirement
+ other minor fixes
2007-10-05 15:06:38 +00:00
stronk7
44853b8182 Reset possible changes by blocks to time_limit. MDL-11597 2007-10-04 17:55:59 +00:00
stronk7
5e867b23b9 Reset possible changes by modules to time_limit. MDL-11597 2007-10-04 17:42:30 +00:00
stronk7
fce3ef94e8 Moving some uses of deprecated functions to recordsets
in cron. MDL-11571 and MDL-11487.
Fixed wrong call to cleanup_dirty_contexts() and changed
to gc_cache_flags(). Please review. MDL-11347
2007-10-03 18:39:38 +00:00
moodler
1afb11e70b Fixed longtimenosee unenrolments. user_lastaccess and role_assignments were growing with uneccessary entries, to the point where memory limits were reached and in the end NO unenrolments were happening at all.
See  MDL-11571
2007-10-03 12:24:06 +00:00
skodak
c626c2f460 MDL-11566 site summary now optional 2007-10-03 10:35:34 +00:00
toyomoyo
af5c201302 MDL-11553, bulk user actions selection buttons do not work as expected 2007-10-03 08:26:13 +00:00
moodler
997436fa36 Fixed the list of role names (order and filters) MDL-11143 2007-10-03 03:31:31 +00:00
skodak
9d9c5f15b5 only whitespace beautification 2007-10-02 21:45:49 +00:00
skodak
0b7a912035 MDL-11143 unimportant change 2007-10-02 21:45:02 +00:00
skodak
8e5da17a44 MDL-11562 supportname and supportemail are are now initialized after admin user setup
MDL-11566 only site shortname, fullname and desc are required/displayed during installation
MDL-11567 fixed upgradesettings redirects if error in settings
MDL-11143 defaultfrontpageroleid moved to Frontpage settings page (easier to find), speedup
2007-10-02 21:38:53 +00:00
donal72
fcf24328ca New files for config of MNet roaming themes 2007-10-02 16:10:19 +00:00
donal72
d53b8d4bbb Display new tabs for the 'Themes' config page in mnet 2007-10-02 16:09:17 +00:00
donal72
2aa1f9bdd9 Instantiate some new strings for roaming themes 2007-10-02 16:08:46 +00:00
tjhunt
325898c61e MDL-11552 - Oops, I missed one bit when merging from OU Moodle. 2007-10-02 13:32:51 +00:00
tjhunt
aad9f920b1 MDL-11552 - Look for the name of an admin report inside the plugin's own lang dir before falling back to the main admin.php lang file. 2007-10-02 13:30:51 +00:00
skodak
284abb0925 MDL-11495 grade letter setting improvements:
* in_null for decimals defaults checks
* store letter settings only in database - no cfg settings
* separate configuration page for letters only - pluginselector+admin tree
* new capability to manage grade letters - similar to scales and outcomes
* added grade_letters db index
* grade letters related minor bugfixing
2007-09-28 20:12:43 +00:00
toyomoyo
667e08ef42 minor fixes for bulk user actions, adding ?>, using delete_user() function to delete users, etc 2007-09-28 03:07:03 +00:00
toyomoyo
4e1fe7d109 MDL-11143, adding a new setting "defaultfrontpageroleid" where you choose a role for all users on the front page 2007-09-26 07:12:38 +00:00
stronk7
e4a2d75456 group/db isn't a source of xml files anymore. MDL-11431 2007-09-24 22:32:31 +00:00
stronk7
964170c69c One more default and useless comment deleted. MDL-11385 2007-09-24 19:36:24 +00:00
stronk7
4a78d22fc3 Deleting some default comments that the XMLDB editor was
generating here and there. Only the table one remains. MDL-11385
2007-09-24 18:40:49 +00:00
stronk7
d3bf058b69 Deleting the Db migrate to UTF-8 button. It isn't there anymore. 2007-09-22 09:52:35 +00:00
stronk7
29c5c63e42 Adding new setting to control XML headers. MDL-11216 2007-09-21 17:27:14 +00:00