forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
11696 lines (6732 loc) · 270 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2002-12-30 Monday 01:32 moodler
* CHANGES, index.php, version.php, admin/config.php,
admin/index.php, admin/lang.php, course/grades.php, course/lib.php,
course/user.php, course/view.php, course/weeks.php,
lang/en/docs/README.txt, lang/en/docs/release.html,
lib/defaults.php, lib/moodlelib.php, lib/setup.php, lib/weblib.php,
login/index.php, mod/assignment/index.php, mod/forum/discuss.php,
mod/forum/lib.php, mod/forum/post.php, mod/journal/index.php,
mod/quiz/index.php, mod/quiz/lib.php, mod/survey/index.php,
user/edit.html, user/edit.php:
Various little fixes to remove warnings (usually about empty
variables) when error_reporting is turned up to 15 or so ... more
of these to come ...
2002-12-30 Monday 00:28 moodler
* doc/: index.php, top.php:
It's now possible to choose a documentation language on the fly!
2002-12-30 Monday 00:28 moodler
* lib/datalib.php:
New get_record_select function (for completeness) and a completely
revamped update_user_in_db() function
2002-12-30 Monday 00:26 moodler
* lib/moodlelib.php:
Use session-specified language if possible
2002-12-30 Monday 00:23 moodler
* lang/ca/: assignment.php, choice.php, forum.php, journal.php,
moodle.php, quiz.php, resource.php, survey.php:
Cleaned up files using new admin/lang.php
2002-12-30 Monday 00:15 moodler
* lang/ca/moodle.php:
Cleaned up some strings without quotes
2002-12-29 Sunday 23:33 coolbit
* lang/zh_cn/docs/: COPYRIGHT.txt, background.html, contents.html,
contents.php, module_files.txt, credits.html, cvs.html,
developer.html, features.html, future.html, index.html, index.php,
install.html, intro.html, licence.html, release.html, teacher.html,
top.php, upgrade.html, view.php:
remove them and wait for new translations
2002-12-29 Sunday 23:12 moodler
* README.txt:
Clearer info
2002-12-29 Sunday 23:06 moodler
* doc/install.html:
Adding this back again to help brand-new installations and to keep
some old links alive.
2002-12-29 Sunday 22:43 moodler
* doc/index.php:
Better way to include initial intro.html
2002-12-29 Sunday 22:41 moodler
* lib/moodlelib.php:
New function document_file() for fetching documentation from
language packs, and a few cleanups to reduce warnings
2002-12-29 Sunday 22:39 moodler
* doc/: background.html, contents.html, contents.php, credits.html,
cvs.html, developer.html, features.html, future.html, index.html,
index.php, install.html, intro.html, licence.html, release.html,
teacher.html, upgrade.html, view.php:
Changes to how documentation works. A thin PHP interface now
fetches files from the language packs. If a file isn't available
in the current language, then English is used.
2002-12-29 Sunday 22:37 moodler
* lang/en/docs/: README.txt, background.html, credits.html,
cvs.html, developer.html, features.html, future.html, install.html,
intro.html, licence.html, release.html, teacher.html, upgrade.html:
Added document files to English translation
2002-12-29 Sunday 17:13 mits
* lang/ja/: README, resource.php:
New translation added.
2002-12-29 Sunday 12:18 moodler
* lib/setup.php:
Accidentally left debugging on
2002-12-29 Sunday 12:17 moodler
* lib/: datalib.php, setup.php, weblib.php, db/mysql.php:
More little fixes
2002-12-29 Sunday 12:02 moodler
* lib/datalib.php:
Some changes to remove warnings about empty variables and cleanup
2002-12-29 Sunday 05:14 compuproggy
* lang/de/: moodle.php, resource.php:
[no log message]
2002-12-28 Saturday 22:45 moodler
* lib/moodlelib.php:
Fixes to allow the GD detection to work on PHP 4.3.0 (with bundled
GD)
2002-12-28 Saturday 21:05 moodler
* mod/forum/post.html:
fixed user --> userid
2002-12-27 Friday 01:02 moodler
* lib/db/mysql.php:
Er, unfinished code while upgrading log_display
2002-12-27 Friday 01:01 coolbit
* lang/zh_cn/docs/: COPYRIGHT.txt, background.html, contents.html,
contents.php, credits.html, cvs.html, developer.html,
features.html, future.html, index.html, index.php, install.html,
intro.html, licence.html, release.html, teacher.html, top.php,
upgrade.html, view.php:
new docs
2002-12-27 Friday 00:37 coolbit
* lang/zh_cn/docs/module_files.txt:
new docs
2002-12-27 Friday 00:27 moodler
* mod/assignment/mod.html:
Added "source" mode in richtext editor
2002-12-27 Friday 00:26 moodler
* files/index.php:
Use HTML editor for editing HTML files
2002-12-25 Wednesday 21:56 ahmed_nabil
* lang/ar/survey.php:
no message
2002-12-25 Wednesday 21:35 set_lo
* lang/sv/quiz.php:
spelling error vilkor substituted with villkor
2002-12-25 Wednesday 21:34 set_lo
* lang/sv/moodle.php:
action substituted with swedish aktion
2002-12-24 Tuesday 21:29 ahmed_nabil
* lang/ar/: assignment.php, auth.php, choice.php, forum.php,
journal.php, moodle.php, quiz.php, resource.php:
no message
2002-12-24 Tuesday 18:08 moodler
* lib/moodlelib.php:
Er... on the cookies I meant.
2002-12-24 Tuesday 18:07 moodler
* lib/moodlelib.php:
Use table prefixes on database too :-)
2002-12-24 Tuesday 17:34 moodler
* doc/release.html:
Updates
2002-12-24 Tuesday 15:29 moodler
* doc/release.html:
Updated release notes
2002-12-24 Tuesday 15:01 moodler
* mod/resource/: details.php, lib.php, view.php:
Added new "Program" resource type, which allows Moodle to cooperate
with external web applications by passing info about the current
session to them.
Code contributed by Mark Kimes.
2002-12-24 Tuesday 14:59 moodler
* lang/: en/resource.php, en/help/resource/resourcetype.html,
en_us/resource.php, en_us/help/resource/resourcetype.html:
New documentation for Moodle - new resource type called "Program"
2002-12-24 Tuesday 13:39 moodler
* admin/: forcetables.php, index.php:
No need for forcetables hack any more. Moodle can now detect
whether it has already been installed in the current database (by
looking for all the main tables) and do the right thing. It
doesn't matter now if there are other tables in the database or
not.
2002-12-24 Tuesday 00:16 moodler
* doc/release.html:
Forgot Turkish
2002-12-24 Tuesday 00:12 moodler
* doc/install.html:
Tweak
2002-12-24 Tuesday 00:10 moodler
* doc/install.html:
Tweak!
2002-12-24 Tuesday 00:07 moodler
* doc/install.html:
More up-to-date-info
2002-12-23 Monday 23:52 moodler
* doc/: credits.html, release.html:
More details ...
2002-12-23 Monday 23:33 moodler
* admin/user.php, lib/datalib.php, mod/forum/discuss.php,
mod/forum/index.php, mod/forum/lib.php, mod/forum/search.php,
mod/forum/view.php:
More database tweaks and improved access to forum search engine
2002-12-23 Monday 23:08 coolbit
* lang/zh_cn/help/quiz/: maxgrade.html, questiontypes.html,
random.html:
no message
2002-12-23 Monday 22:44 moodler
* config-dist.php:
Clearer directions.
2002-12-23 Monday 22:19 moodler
* admin/index.php, admin/site.html, admin/user.php,
lib/datalib.php, lib/weblib.php:
This version installs smoothly for me on PostgreSQL
2002-12-23 Monday 21:48 moodler
* lib/datalib.php, mod/quiz/db/postgres7.sql:
More database tweaking ... looking pretty good with PostgreSQL now
2002-12-23 Monday 19:47 moodler
* version.php, lib/db/mysql.php, lib/db/mysql.sql,
lib/db/postgres7.sql, mod/assignment/db/postgres7.sql,
mod/choice/db/postgres7.sql, mod/forum/db/postgres7.sql,
mod/journal/db/postgres7.sql, mod/quiz/db/postgres7.sql,
mod/resource/db/postgres7.sql, mod/survey/db/postgres7.sql:
More fixes for postgreSQL etc
2002-12-23 Monday 18:27 moodler
* course/: lib.php, log.php:
Fixes for log display
2002-12-23 Monday 18:18 moodler
* mod/survey/report.php:
Slight fixes to headings
2002-12-23 Monday 17:39 moodler
* version.php, admin/admin.php, admin/user.php, course/lib.php,
course/teacher.php, course/teachers.php, lib/datalib.php,
lib/moodlelib.php, lib/db/mysql.php, lib/db/mysql.sql,
lib/db/postgres7.sql, mod/assignment/lib.php,
mod/assignment/submissions.php, mod/assignment/upload.php,
mod/assignment/version.php, mod/assignment/db/mysql.php,
mod/assignment/db/mysql.sql, mod/assignment/db/postgres7.sql,
mod/choice/index.php, mod/choice/lib.php, mod/choice/report.php,
mod/choice/version.php, mod/choice/view.php,
mod/choice/db/mysql.php, mod/choice/db/mysql.sql,
mod/choice/db/postgres7.php, mod/choice/db/postgres7.sql,
mod/forum/lib.php, mod/forum/post.html, mod/forum/post.php,
mod/forum/rate.php, mod/forum/report.php, mod/forum/search.php,
mod/forum/version.php, mod/forum/db/mysql.php,
mod/forum/db/mysql.sql, mod/forum/db/postgres7.php,
mod/forum/db/postgres7.sql, mod/journal/edit.php,
mod/journal/index.php, mod/journal/lib.php, mod/journal/report.php,
mod/journal/version.php, mod/journal/view.php,
mod/journal/db/mysql.php, mod/journal/db/mysql.sql,
mod/journal/db/postgres7.php, mod/journal/db/postgres7.sql,
mod/quiz/lib.php, mod/quiz/report.php, mod/quiz/version.php,
mod/quiz/db/mysql.php, mod/quiz/db/mysql.sql,
mod/quiz/db/postgres7.php, mod/quiz/db/postgres7.sql,
mod/resource/lib.php, mod/resource/version.php,
mod/survey/download.php, mod/survey/graph.php, mod/survey/lib.php,
mod/survey/report.php, mod/survey/save.php, mod/survey/version.php,
mod/survey/db/mysql.php, mod/survey/db/mysql.sql,
mod/survey/db/postgres7.php, mod/survey/db/postgres7.sql,
user/view.php:
Changes throughout Moodle to remove any reserved words from the
Moodle tables.
ie user -> userid in many tables, plus in user_students start ->
starttime and end -> endtime
I've just done all this as carefully as I could ... I don't think I
missed anything but it's pretty intensive work and I'd be fooling
myself if I didn't think I'd missed a couple.
Note that this version should pretty much be able to bootstrap
itself using PostgreSQL now ... but this is untested
2002-12-23 Monday 15:01 moodler
* mod/forum/: lib.php, post.php:
Further SQL cleanups
2002-12-23 Monday 14:50 mits
* lang/ja/README:
Modified
2002-12-23 Monday 14:49 mits
* lang/ja/moodle.php:
New translation added.
2002-12-23 Monday 13:57 moodler
* mod/survey/: details.php, download.php, graph.php, lib.php,
mod.html, report.php, save.php, view.php:
Changes to use new database stuff
2002-12-23 Monday 11:07 moodler
* lang/en/moodle.php, lang/en_us/moodle.php, lib/moodlelib.php,
login/confirm.php, login/forgot_password.php, login/index.php,
login/signup.php:
More moving functions around and removal of hardcoded SQL
2002-12-22 Sunday 23:30 mits
* lang/ja/moodle.php:
Polished
2002-12-22 Sunday 21:55 moodler
* mod/quiz/: category.php, lib.php, question.php:
CHanges for new database table commands
2002-12-22 Sunday 21:32 moodler
* lang/sv/: README, assignment.php, auth.php, choice.php,
forum.php, journal.php, moodle.php, quiz.php, resource.php,
survey.php, docs/module_files.txt, help/coursecategory.html,
help/courseformats.html, help/coursefullname.html,
help/coursenewsitems.html, help/coursenumsections.html,
help/courserecent.html, help/courseshortname.html,
help/coursestartdate.html, help/enrolmentkey.html,
help/guestaccess.html, help/html.html, help/langedit.html,
help/mods.html, help/picture.html, help/questions.html,
help/richtext.html, help/surveys.html, help/teachers.html,
help/text.html, help/textformat.html,
help/assignment/assignmenttype.html, help/assignment/resubmit.html,
help/choice/options.html, help/forum/allowdiscussions.html,
help/forum/attachment.html, help/forum/forumtype.html,
help/forum/ratings.html, help/forum/subscription.html,
help/quiz/attempts.html, help/quiz/categories.html,
help/quiz/correctanswers.html, help/quiz/feedback.html,
help/quiz/grademethod.html, help/quiz/maxgrade.html,
help/quiz/multichoice.html, help/quiz/questiontypes.html,
help/quiz/random.html, help/quiz/shortanswer.html,
help/quiz/timeopen.html, help/quiz/truefalse.html,
help/resource/resourcetype.html, help/resource/summary.html:
New Swedish translation by Set Lonnert
2002-12-22 Sunday 21:26 moodler
* lang/: ar/survey.php, de/survey.php, en/survey.php,
en_us/survey.php, es_es/survey.php, fi/survey.php, id/survey.php,
it/survey.php, ja/survey.php, no/survey.php, pt_br/survey.php,
tr/survey.php, zh_cn/survey.php:
Fixed an error in survey.php in all languages ... colles18hort
should be colles18short
2002-12-22 Sunday 14:45 moodler
* course/: topics.php, view.php, weeks.php:
More little fixups for week 0
2002-12-22 Sunday 14:33 moodler
* lib/datalib.php:
Changes to get a more reliable insert ID for any table
2002-12-22 Sunday 14:15 moodler
* course/lib.php, lib/datalib.php, mod/forum/lib.php:
Changes to make things work again :-)
2002-12-21 Saturday 20:48 coolbit
* lang/zh_cn/help/quiz/truefalse.html:
no message
2002-12-21 Saturday 20:29 coolbit
* lang/zh_cn/help/quiz/multichoice.html:
no message
2002-12-21 Saturday 20:03 coolbit
* lang/zh_cn/help/quiz/: attempts.html, grademethod.html:
no message
2002-12-21 Saturday 19:39 coolbit
* lang/zh_cn/help/quiz/: correctanswers.html, feedback.html:
no message
2002-12-21 Saturday 19:14 coolbit
* lang/zh_cn/help/quiz/categories.html:
no message
2002-12-20 Friday 22:43 moodler
* config-dist.php, index.php, admin/admin.php, admin/cron.php,
admin/index.php, admin/user.php, course/categories.php,
course/delete.php, course/edit.php, course/index.php,
course/lib.php, course/loggraph.php, course/teacher.php,
course/teachers.php, course/view.php, lang/en/moodle.php,
lib/database.php, lib/datalib.php, lib/moodlelib.php,
lib/setup.php, lib/weblib.php, lib/db/mysql.sql,
mod/assignment/lib.php, mod/assignment/view.php,
mod/assignment/db/mysql.sql, mod/choice/index.php,
mod/choice/lib.php, mod/choice/view.php, mod/choice/db/mysql.sql,
mod/forum/lib.php, mod/forum/post.php, mod/forum/rate.php,
mod/forum/report.php, mod/forum/search.php, mod/forum/db/mysql.sql,
mod/journal/edit.php, mod/journal/index.php, mod/journal/lib.php,
mod/journal/report.php, mod/journal/view.php,
mod/journal/db/mysql.sql, mod/quiz/db/mysql.sql,
mod/resource/db/mysql.sql, mod/survey/db/mysql.sql:
Many many changes lumped in here ... not finished yet either.
Basically all the Database functions are in lib/datalib.php and the
web functions are all in lib/weblib.php, so moodlelib.php is much
thinner than it was.
Data functions have been extended ... most old calls will still
work, but now many more SQL commands can be performed using the
datalib functions rather than using SQL. I'm currently moving
through the whole tree replacing SQL calls or at least
concentrating them in one section of mod/xxx/lib.php
Still working on forums, quizzes, surveys, resources.
The tree is currently not full working ... some things are
half-completed ... will resume tomorrow.
2002-12-20 Friday 20:48 coolbit
* lang/zh_cn/help/quiz/shortanswer.html:
no message
2002-12-20 Friday 20:30 coolbit
* lang/zh_cn/help/quiz/timeopen.html:
no message
2002-12-20 Friday 15:21 moodler
* mod/newmodule_template.zip:
Slight updates such as removing old functions
2002-12-20 Friday 12:16 gregb_cc
* contrib/crown_college/phproof/runtests.php:
phproof is benchmarking its own self test again.
2002-12-20 Friday 11:59 gregb_cc
* contrib/crown_college/phproof/: README.txt,
moodle/lib/test.insert_record.php:
moved the warning about running the test to README
added a test that catches (sometimes) the intermittent problem with
getting incorrect insert id from insert_record
2002-12-20 Friday 09:59 gregb_cc
* contrib/crown_college/phproof/: phproof.inc.php, runtests.php,
moodle/lib/test.insert_record.php, moodle/lib/test.moodlelib.php:
refactored phproof class and added tests for insert_record and
delete_records
2002-12-19 Thursday 23:54 mits
* lang/ja/: README, help/questions.html:
Polished
2002-12-19 Thursday 04:13 gregb_cc
* contrib/crown_college/backup/backup.php:
Now checks to make sure that the config variable it is grepping is
on the beginning of a line (otherwise it would pull in extra
variables if one of the variables we wanted was listed in a
comment, or another variable was based on a variable we wanted).
Made tar not be verbose.
2002-12-18 Wednesday 22:19 mits
* lang/ja/help/surveys.html:
Polished
2002-12-18 Wednesday 21:58 coolbit
* lang/zh_cn/moodle.php:
Removed lots of "^M", hu! Where do they come from?
2002-12-18 Wednesday 16:08 moodler
* admin/cron.php:
Preset the FULLME variable
2002-12-18 Wednesday 14:34 mits
* lang/ja/: README, help/teachers.html, help/textformat.html:
Polished
2002-12-18 Wednesday 11:34 gregb_cc
* contrib/crown_college/backup/backup.php:
This is the backup script that I am using to archive moodle. It
understands how to backup mysql databases. It pulls in certain
variables from config.php without actually including it.
2002-12-18 Wednesday 11:08 mits
* lang/ja/help/picture.html:
Polished
2002-12-17 Tuesday 23:46 coolbit
* lang/zh_cn/: moodle.php, survey.php, help/richtext.html,
help/text.html:
no message
2002-12-17 Tuesday 21:21 carlesbellver
* lang/ca/: moodle.php, help/questions.html:
[no log message]
2002-12-17 Tuesday 15:00 compuproggy
* lang/de/: help/reading.html, help/writing.html, moodle.php:
[no log message]
2002-12-17 Tuesday 12:41 moodler
* lib/database.php:
Contains database functions split-off from moodlelib, just so you
can see what I'm doing ...
Some functions have been extended and cleaned up ...
I need to do more testing on it all before checking in all the
other changed files like moodlelib.php and setup.php
2002-12-17 Tuesday 11:04 gregb_cc
* lib/moodlelib.php:
Since the reimplementation of check_php_version will probably never
be used, I have removed it.
2002-12-17 Tuesday 11:02 gregb_cc
* lib/moodlelib.php:
added in a commented out reimplementation of check_php_version,
that will most likely never be used.
2002-12-17 Tuesday 09:50 gregb_cc
* contrib/crown_college/phproof/moodle/lib/test.moodlelib.php:
Added a benchmark test for requiring moodlib.php
Added a comment letting others know that the check_gd_version test
will fail if they are not using gd version 1.
2002-12-17 Tuesday 09:49 gregb_cc
* contrib/crown_college/phproof/runtests.php:
Now doTests knows to ignore CVS directories
2002-12-17 Tuesday 03:20 rwwood
*
contrib/rwwood/new_assigment_view/moodle/theme/bluegray/header.html
:
[no log message]
2002-12-17 Tuesday 01:30 rwwood
* contrib/rwwood/new_assigment_view/: Readme.txt, moodle/index.php,
moodle/course/weeks.php, moodle/mod/assignment/lib.php,
moodle/mod/assignment/view.php, moodle/mod/forum/lib.php,
moodle/theme/bluegray/config.php,
moodle/theme/bluegray/favicon.ico,
moodle/theme/bluegray/footer.html,
moodle/theme/bluegray/header.html, moodle/theme/bluegray/logo.jpg,
moodle/theme/bluegray/styles.css, moodle/theme/bluegray/styles.php:
RW Wood [email protected] All files necessary for
assignment/view.php "improved look"
2002-12-16 Monday 23:16 ahmed_nabil
* lang/ar/moodle.php:
This files is updated after testing phase 1. and After final
testing I will update this files again
2002-12-16 Monday 23:10 ahmed_nabil
* lang/ar/: survey.php, quiz.php, auth.php, assignment.php:
This files is updated after testing phase 1. and After final
testing I will update this files again
2002-12-16 Monday 14:06 mits
* lang/ja/help/mods.html:
Polished
2002-12-16 Monday 01:59 moodler
* lib/rte/richedit.html:
Moved the view source button to solve problems with other languages
pushing it off the screen
2002-12-16 Monday 01:09 mits
* lang/ja/survey.php:
Polished
2002-12-15 Sunday 23:31 mits
* lang/ja/help/: reading.html, writing.html:
New Translation
2002-12-15 Sunday 22:49 moodler
* lang/ar/moodle.php:
Fixes (they were causing errors)
2002-12-15 Sunday 18:53 moodler
* lang/en_us/help/questions.html:
Minor editing ;-)
2002-12-15 Sunday 18:51 moodler
* lang/en/help/questions.html:
Minor editing ;-)
2002-12-15 Sunday 18:41 moodler
* lang/en_us/help/: questions.html, reading.html, writing.html:
New files
2002-12-15 Sunday 18:31 moodler
* lang/en/help/: questions.html, reading.html, writing.html:
Revised the text on these three pages.
These are ready to translate now. If you have translated them
before, you may want to compare your translation because there are
some changes throughout.
Sorry if this causes any inconvenience - I try not to rewrite the
help files too much.
2002-12-15 Sunday 18:13 coolbit
* lang/zh_cn/help/: mods.html, picture.html, reading.html,
text.html:
New Chinese help files!
2002-12-15 Sunday 17:30 mits
* lang/ja/help/reading.html:
Modified
2002-12-15 Sunday 17:23 mits
* lang/ja/help/: reading.html, writing.html:
Added
2002-12-15 Sunday 16:49 mits
* lang/ja/help/: html.html, langedit.html, mods.html,
assignment/assignmenttype.html:
Polished
2002-12-15 Sunday 16:42 mits
* lang/ja/moodle.php:
Polished
2002-12-15 Sunday 15:58 mits
* lang/ja/help/: courseshortname.html, coursestartdate.html,
enrolmentkey.html:
Polished :^)
2002-12-15 Sunday 15:42 mits
* lang/ja/help/: coursecategory.html, courseformats.html,
coursenewsitems.html, coursenumsections.html, courserecent.html:
Polished :^)
2002-12-15 Sunday 14:56 ahmed_nabil
* lang/ar/: assignment.php, auth.php, forum.php, moodle.php,
quiz.php, survey.php:
This files is updated without testing. After testing I will update
this files again
2002-12-15 Sunday 14:00 moodler
* course/lib.php:
Improved course listing display when no courses
2002-12-15 Sunday 13:00 mits
* lang/ja/README:
Lastmodify updated
2002-12-15 Sunday 12:58 mits
* lang/ja/help/resource/: resourcetype.html, summary.html:
Polished
2002-12-15 Sunday 12:50 mits
* lang/ja/help/quiz/questiontypes.html:
Polished
2002-12-15 Sunday 12:45 mits
* lang/ja/help/quiz/multichoice.html:
Polished
2002-12-15 Sunday 12:42 mits
* lang/ja/help/quiz/maxgrade.html:
Polished
2002-12-15 Sunday 12:38 mits
* lang/ja/help/quiz/grademethod.html:
Polished
2002-12-15 Sunday 12:34 mits
* lang/ja/help/quiz/feedback.html:
Polished
2002-12-15 Sunday 12:32 mits
* lang/ja/help/quiz/categories.html:
Polished :^)
2002-12-15 Sunday 12:27 moodler
* mod/forum/post.html:
Put a space under the colon
2002-12-15 Sunday 12:26 moodler
* mod/forum/post.html:
Moved a colon (there's a joke about farts in there somewhere)
2002-12-15 Sunday 10:41 moodler
* lib/db/postgres7.sql, mod/assignment/db/postgres7.php,
mod/assignment/db/postgres7.sql, mod/choice/db/postgres7.php,
mod/choice/db/postgres7.sql, mod/forum/db/postgres7.php,
mod/forum/db/postgres7.sql, mod/journal/db/postgres7.php,
mod/journal/db/postgres7.sql, mod/quiz/db/postgres7.php,
mod/quiz/db/postgres7.sql, mod/resource/db/postgres7.php,
mod/resource/db/postgres7.sql, mod/survey/db/postgres7.php,
mod/survey/db/postgres7.sql:
Database and upgrade files for PostgreSQL 7 support!
2002-12-15 Sunday 10:40 moodler
* lib/moodlelib.php:
performance improvement when checking gd version
2002-12-15 Sunday 02:33 moodler
* admin/index.php:
Turn off time limits with big SQL commands ... some databases are
really slow.
2002-12-14 Saturday 22:30 coolbit
* lang/zh_cn/help/: reading.html, writing.html:
add new help files
2002-12-14 Saturday 22:26 coolbit
* lang/zh_cn/: assignment.php, forum.php, moodle.php, resource.php,
help/courserecent.html:
some modify
2002-12-14 Saturday 17:04 coolbit
* lang/zh_cn/: assignment.php, forum.php, journal.php, moodle.php,
help/guestaccess.html, help/html.html, help/langedit.html,
help/mods.html:
New Chinese help files and update php files.
2002-12-14 Saturday 16:29 moodler
* contrib/crown_college/: README.txt, phproof/README.txt,
phproof/phproof.inc.php, phproof/runtests.php,
phproof/fileColumn/fileColumn.php, phproof/fileColumn/sample.txt,
phproof/moodle/lib/test.moodlelib.php:
Checking in files from Greg Barnett
2002-12-14 Saturday 16:24 moodler
* login/signup.php:
Much cooler way to set the form focus after an error. Sent in by
Greg Barnett.
2002-12-14 Saturday 16:18 moodler
* admin/config.html, admin/config.php, lang/en/moodle.php,
lang/en_us/moodle.php, lib/defaults.php, login/index_form.html,
login/signup.php, login/signup_form.php, user/edit.html:
Added new configuration setting "country" to set a default country