forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
10000 lines (5748 loc) · 231 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-10 Tuesday 01:08 moodler
* version.php:
Increment
2002-12-10 Tuesday 00:21 moodler
* theme/standardblue/config.php:
Fixed blue a little
2002-12-10 Tuesday 00:10 moodler
* theme/: index.php, standard/config.php, standard/gradient.jpg,
standard/header.html, standard/styles.css, standard/styles.php,
standardblue/config.php, standardblue/gradient.jpg,
standardblue/header.html, standardblue/styles.css,
standardblue/styles.php, standardgreen/config.php,
standardgreen/gradient.jpg, standardgreen/header.html,
standardgreen/styles.css, standardgreen/styles.php,
standardlogo/config.php, standardlogo/gradient.jpg,
standardlogo/header.html, standardlogo/styles.css,
standardlogo/styles.php, standardred/config.php,
standardred/gradient.jpg, standardred/header.html,
standardred/styles.css, standardred/styles.php:
Changes for new styles and scheme
2002-12-09 Monday 22:07 moodler
* course/: social.php, weeks.php:
More fixes for course formats
2002-12-09 Monday 21:53 moodler
* lang/ja/: assignment.php, auth.php, choice.php, forum.php,
journal.php, moodle.php, quiz.php, resource.php, survey.php,
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:
Latest Japanese files from Mits. This is now a COMPLETE
TRANSLATION!
Well done, Mits. That's LOTS of work.
2002-12-09 Monday 21:48 moodler
* lib/moodlelib.php:
Tweak to etxt in box
2002-12-09 Monday 21:45 moodler
* course/topics.php:
Fix typo
2002-12-09 Monday 21:40 moodler
* course/: topics.php, weeks.php:
Font size tweaks
2002-12-09 Monday 21:36 moodler
* lib/moodlelib.php, course/lib.php, course/topics.php,
course/weeks.php:
More styles
2002-12-09 Monday 20:12 moodler
* lib/moodlelib.php:
testing wrong thing
2002-12-09 Monday 20:09 moodler
* index.php, lib/moodlelib.php, lib/setup.php, course/lib.php,
course/weeks.php, login/index_form.html, login/signup_form.php:
More style and layout tweaking
2002-12-09 Monday 18:49 moodler
* mod/forum/lib.php:
Slight alteration of colouring on printed posts
2002-12-09 Monday 18:48 moodler
* lang/en_us/quiz.php:
New string readytosend
2002-12-09 Monday 17:03 moodler
* course/topics.php:
Finish off topics display
2002-12-09 Monday 16:53 moodler
* course/lib.php:
Slight changes
2002-12-09 Monday 16:20 moodler
* lang/en/quiz.php, mod/quiz/lib.php:
Add a javascript confirmation when submitting a quiz attempt
2002-12-09 Monday 15:52 moodler
* course/lib.php:
Allow print_all_courses to have width
2002-12-09 Monday 15:51 moodler
* index.php:
Allow course listing to have specified width
2002-12-09 Monday 15:48 moodler
* index.php:
Slightly adjust column width
2002-12-09 Monday 15:45 moodler
* index.php, doc/release.html, theme/standard/config.php:
Slight changes
2002-12-09 Monday 15:36 moodler
* version.php:
Updated version
2002-12-09 Monday 15:35 moodler
* index.php, course/index.php, course/lib.php, course/social.php,
course/topics.php, course/weeks.php, mod/forum/lib.php,
theme/standard/config.php:
Various little tweaks to improve the display of course home pages
and front page ... still have some work to do though
2002-12-09 Monday 14:35 moodler
* course/edit.php:
Default with showrecent ON
2002-12-09 Monday 11:25 moodler
* lang/en_us/help/: enrolmentkey.html, guestaccess.html:
Fixed US spelling
2002-12-09 Monday 11:10 moodler
* lang/: es_es/moodle.php, fr/moodle.php:
Restored "locale" string
2002-12-09 Monday 11:00 moodler
* lang/fr/: README, assignment.php, auth.php, choice.php,
forum.php, journal.php, moodle.php, quiz.php, resource.php,
survey.php, help/coursecategory.html, help/courseformats.html,
help/guestaccess.html, help/questions.html,
help/assignment/assignmenttype.html,
help/forum/allowdiscussions.html, help/forum/attachment.html,
help/forum/forumtype.html, help/forum/subscription.html,
help/resource/resourcetype.html, help/resource/summary.html:
Latest changes in French, from Sebastien Namèche
2002-12-09 Monday 10:39 moodler
* lang/es_es/: README.txt, assignment.php, auth.php, forum.php,
moodle.php, survey.php:
CHanges from Antonio Navarro
2002-12-09 Monday 10:12 moodler
* lib/: makeclass.php, setup.php:
Changes to make makeClassFromFile() in makeclass.php work better
2002-12-09 Monday 01:32 moodler
* lang/: es_mx/moodle.php, id/moodle.php:
Fixed some names
2002-12-09 Monday 01:26 moodler
* lib/setup.php:
New code to use locale information from language packs if necessary
2002-12-09 Monday 01:21 moodler
* user/edit.php:
Use language string for "changes saved"
2002-12-09 Monday 01:16 moodler
* lang/en_us/moodle.php:
Fixed name
2002-12-09 Monday 01:01 moodler
* lang/: ar/moodle.php, ca/moodle.php, de/moodle.php,
en/moodle.php, es_es/moodle.php, es_mx/moodle.php, fi/moodle.php,
fr/moodle.php, id/moodle.php, it/moodle.php, ja/moodle.php,
no/moodle.php, pt_br/moodle.php:
Added locale codes to all languages
2002-12-09 Monday 00:49 moodler
* lang/en_us/: 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:
US flavor of English to keep the yanks happy. ;-)
2002-12-08 Sunday 19:28 moodler
* doc/credits.html:
Added Mitsuhiro's credit for Japanese
2002-12-08 Sunday 11:45 moodler
* doc/release.html:
Updates for 1.0.7 and better-looking throughout
2002-12-08 Sunday 00:19 moodler
* lang/ja/: assignment.php, auth.php, choice.php, forum.php,
journal.php, moodle.php, quiz.php, resource.php, survey.php:
More changes from Mits.
2002-12-07 Saturday 16:53 moodler
* version.php:
Going back to simpler version numbers!
2002-12-07 Saturday 16:44 moodler
* lib/moodlelib.php:
Small changes to help display of Japanese and on Netscape
2002-12-07 Saturday 16:39 moodler
* mod/quiz/category.php, mod/quiz/lib.php, course/categories.php:
Small changes to tables to make them display better with Japanese
2002-12-07 Saturday 15:27 moodler
* lib/setup.php:
If the database doesn't work then just die before anything else
2002-12-07 Saturday 15:27 moodler
* index.php:
get rid of short_open_tags
2002-12-07 Saturday 15:19 moodler
* doc/install.html:
Some info about forcetables
2002-12-07 Saturday 12:37 moodler
* lib/makeclass.php:
Updated the dox
2002-12-07 Saturday 12:31 moodler
* lib/: makeclass.php, class.moodlelib.php:
General purpose function to produce a class based on a library of
simple functions. Can be used to provide a class interface to
Moodle functions.
Thanks to Greg Barnett!
2002-12-07 Saturday 12:24 moodler
* files/mimetypes.php:
Added php mime type
2002-12-07 Saturday 12:20 moodler
* mod/assignment/mod.html:
Removed the "zero" value altogether
2002-12-07 Saturday 12:00 moodler
* mod/assignment/mod.html:
Better checking of existing value, in case it's not in the list
2002-12-06 Friday 20:22 moodler
* lang/ja/: README, auth.php, moodle.php, quiz.php:
More changes from Mits!
2002-12-06 Friday 19:36 moodler
* lib/class.moodlelib.php:
Fixed up CVS Id tag
2002-12-06 Friday 19:23 moodler
* lib/class.moodlelib.php:
Wrapper file to make moodlelib.php functions accessible as a class
called moodlelib. Based on idea from Greg Barnett:
http://moodle.com/mod/forum/discuss.php?d=356
2002-12-05 Thursday 21:50 moodler
* lang/ja/: 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:
First version of Japanese translation by Mitsuhiro Yoshida !
Still missing quiz.php, survey.php, auth.php and the help files
Helpers wanted!
2002-12-02 Monday 09:35 moodler
* lib/moodlelib.php:
Improved removal of leading zeroes, but with some efficiency lost
2002-12-02 Monday 09:13 moodler
* course/weeks.php, lib/moodlelib.php:
Slight change to get rid of leading zeroes in dates
2002-12-02 Monday 09:12 moodler
* index.php:
These includes are actually required
2002-11-30 Saturday 21:23 moodler
* lib/adodb/: adodb-cryptsession.php, adodb-csvlib.inc.php,
adodb-errorhandler.inc.php, adodb-errorpear.inc.php,
adodb-lib.inc.php, adodb-pager.inc.php, adodb-pear.inc.php,
adodb-session.php, adodb.inc.php, crypt.inc.php, license.txt,
pivottable.inc.php, readme.htm, readme.txt, rsfilter.inc.php,
server.php, tips_portable_sql.htm, toexport.inc.php,
tohtml.inc.php, tute.htm, drivers/adodb-access.inc.php,
drivers/adodb-ado.inc.php, drivers/adodb-ado_access.inc.php,
drivers/adodb-ado_mssql.inc.php,
drivers/adodb-borland_ibase.inc.php, drivers/adodb-csv.inc.php,
drivers/adodb-db2.inc.php, drivers/adodb-fbsql.inc.php,
drivers/adodb-firebird.inc.php, drivers/adodb-ibase.inc.php,
drivers/adodb-informix.inc.php, drivers/adodb-informix72.inc.php,
drivers/adodb-mssql.inc.php, drivers/adodb-mssqlpo.inc.php,
drivers/adodb-mysql.inc.php, drivers/adodb-mysqlt.inc.php,
drivers/adodb-oci8.inc.php, drivers/adodb-oci805.inc.php,
drivers/adodb-oci8po.inc.php, drivers/adodb-odbc.inc.php,
drivers/adodb-odbc_mssql.inc.php,
drivers/adodb-odbc_oracle.inc.php, drivers/adodb-oracle.inc.php,
drivers/adodb-postgres.inc.php, drivers/adodb-postgres64.inc.php,
drivers/adodb-postgres7.inc.php, drivers/adodb-proxy.inc.php,
drivers/adodb-sqlanywhere.inc.php, drivers/adodb-sybase.inc.php,
drivers/adodb-vfp.inc.php, tests/benchmark.php, tests/client.php,
tests/test.php, tests/test2.php, tests/test3.php, tests/test4.php,
tests/test5.php, tests/testcache.php, tests/testdatabases.inc.php,
tests/testgenid.php, tests/testmssql.php, tests/testoci8.php,
tests/testoci8cursor.php, tests/testpaging.php, tests/testpear.php,
tests/testsessions.php:
Upgraded ADOdb to 2.50 because it fixes some bugs with PHP 4.3.0
2002-11-30 Saturday 20:04 moodler
* doc/future.html:
IMS/SCORM
2002-11-30 Saturday 20:00 moodler
* doc/future.html:
Revised
2002-11-29 Friday 23:17 moodler
* lang/it/: LEGGIMI, assignment.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/courseshortname.html, help/coursestartdate.html,
help/enrolmentkey.html, help/guestaccess.html, help/html.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/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 version of Italian translation - compatible with 1.0.6.3
2002-11-29 Friday 22:22 moodler
* course/lib.php:
Some colour difference for my courses .... I'm not sure about it
...
2002-11-29 Friday 22:17 moodler
* course/lib.php:
Some improvements to the layout of courses when there are
categories and they are on the front page
2002-11-29 Friday 13:12 moodler
* doc/cvs.html:
Slight fix
2002-11-29 Friday 13:02 moodler
* doc/credits.html:
Added credit for Indonesian - Arfan Hidayat
2002-11-29 Friday 12:58 moodler
* lang/id/: 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:
Complete new Indonesian translation!
Thanks to Arfan Hidayat, http://www.kursusmaya.com,
2002-11-28 Thursday 22:39 moodler
* version.php:
Update version
2002-11-28 Thursday 20:31 moodler
* lang/en/auth.php, user/view.php:
With external authentication, the change password button on the
user page now does the same thing as the one on the login page. It
takes you to the specified URL is it exists, and just doesn't
appear if there is no URL
2002-11-28 Thursday 17:10 moodler
* mod/forum/search.php:
Highlight matches in post subject and discussion name too
2002-11-28 Thursday 17:04 moodler
* mod/forum/search.php:
Add searching of subjects as well as messages
2002-11-28 Thursday 11:05 moodler
* doc/cvs.html:
First quick version of help on CVS
2002-11-28 Thursday 10:53 moodler
* doc/features.html:
Fixed heading
2002-11-28 Thursday 10:47 moodler
* doc/: developer.html, features.html:
Updates
2002-11-28 Thursday 10:41 moodler
* lib/moodlelib.php, mod/assignment/mod.html:
Fixes to increase the number of options available to limit
assignment upload size, and also to limit the list based on PHP
limits
2002-11-27 Wednesday 21:11 moodler
* theme/: standard/footer.html, standardblue/footer.html,
standardgreen/footer.html, standardlogo/footer.html,
standardred/footer.html:
Added missing </BODY> and </HTML> tags
2002-11-26 Tuesday 18:10 carlesbellver
* lang/ca/: assignment.php, moodle.php:
[no log message]
2002-11-26 Tuesday 11:19 moodler
* doc/install.html:
More info about database user
2002-11-26 Tuesday 11:07 moodler
* doc/install.html:
Additions and clean ups
2002-11-26 Tuesday 10:36 moodler
* course/grades.php:
Fix display of grades when there aren't any grades
2002-11-26 Tuesday 10:29 moodler
* mod/journal/lib.php:
For the case when there are forums using ratings, but no ratings,
and the teacher is looking at grades, don't try and loop on an
empty array
2002-11-26 Tuesday 10:11 moodler
* lib/moodlelib.php:
Strip slashes from filenames
2002-11-25 Monday 14:45 compuproggy
* lang/de/: auth.php, moodle.php:
[no log message]
2002-11-24 Sunday 23:59 moodler
* doc/release.html:
More fixes
2002-11-24 Sunday 23:44 moodler
* doc/release.html:
More tweaks
2002-11-24 Sunday 23:40 moodler
* doc/release.html:
Yet more details
2002-11-24 Sunday 23:30 moodler
* version.php:
Updated versionm, ready for 1.0.6.4
2002-11-24 Sunday 23:22 moodler
* doc/release.html:
More tweaks
2002-11-24 Sunday 23:20 moodler
* doc/release.html:
More fixes
2002-11-24 Sunday 23:16 moodler
* doc/release.html:
More details
2002-11-23 Saturday 01:28 moodler
* lang/en/moodle.php, user/index.php:
New message about users being automatically unenrolled
2002-11-23 Saturday 01:27 moodler
* admin/lang.php:
ALL LANGUAGE EDITORS PLEASE NOTICE THIS CHECKIN
I've changed htmlentities to htmlspecialchars in this file, to fix
bugs with editing multibyte languages (ie Japanese). Please be
cautious and let me know if this causes any problems when editing
your language (it shouldn't, but I don't want to spoil your day!)
2002-11-22 Friday 18:00 moodler
* version.php:
Update for kicks
2002-11-22 Friday 17:59 moodler
* user/view.php:
Hide password and unenrolment buttons from guest users
2002-11-22 Friday 17:38 moodler
* lib/moodlelib.php:
Tidy up some of the dox
2002-11-22 Friday 16:43 moodler
* admin/auth.php, auth/imap/config.html, auth/pop3/config.html,
doc/release.html, lang/en/auth.php, lang/en/moodle.php,
lib/moodlelib.php, login/index_form.html:
Changes to allow admin to control the "forgot password" function
and a bug fix for set_config
2002-11-22 Friday 15:39 compuproggy
* lang/de/auth.php:
Suche noch Lernwillige und Tutoren für http://www.selaction.de
Auch Mithelfer sind gerne gesehen wie Übersetzer oder Moderatoren.
2002-11-22 Friday 15:37 compuproggy
* lang/de/moodle.php:
Suche noch Lernwillige und Tutoren für http://www.selaction.de
2002-11-22 Friday 02:40 paca70
* auth/ldap/lib.php:
Fixed some typos
2002-11-22 Friday 00:59 moodler
* version.php:
Updated version
2002-11-22 Friday 00:58 moodler
* CHANGES:
Moodle CVS is exactly 1 year old. :-)
2002-11-22 Friday 00:19 moodler
* course/loggraph.php:
For long courses reduce the text printed on x axis
2002-11-22 Friday 00:07 moodler
* course/loggraph.php:
Reduce errorlevel reporting
2002-11-22 Friday 00:00 moodler
* README.txt:
COnverted it to DOS format to make it easier for Windows users
2002-11-21 Thursday 23:30 moodler
* doc/: install.html, release.html:
Updates
2002-11-21 Thursday 22:57 moodler
* course/loggraph.php, lang/en/moodle.php:
Fixes to allow graphs to be translated
2002-11-21 Thursday 20:39 moodler
* lib/moodlelib.php:
Allow admin user to always get in, no matter what the
authentication method
2002-11-21 Thursday 20:17 paca70
* lang/fi/help/: courserecent.html, langedit.html, mods.html,
richtext.html, textformat.html, assignment/assignmenttype.html,
assignment/resubmit.html, quiz/attempts.html, quiz/categories.html,
quiz/correctanswers.html, quiz/feedback.html,
quiz/grademethod.html, quiz/maxgrade.html, quiz/multichoice.html,
quiz/questiontypes.html, quiz/random.html, quiz/shortanswer.html,
quiz/timeopen.html, quiz/truefalse.html:
New files for translation
2002-11-21 Thursday 19:28 moodler
* lib/moodlelib.php:
No longer need the getuserinfo parameter
2002-11-21 Thursday 19:27 moodler
* auth/ldap/README-LDAP, auth/ldap/config.html, auth/ldap/lib.php,
doc/release.html, lang/en/auth.php:
Added full configuration to LDAP (ie transferrable fields etc)
2002-11-21 Thursday 19:12 moodler
* auth/db/config.html:
Bug fix for dbtype menu
2002-11-21 Thursday 18:33 moodler
* CHANGES:
Daily changes
2002-11-21 Thursday 18:26 moodler
* mod/assignment/submissions.php:
Fixed a bug from reusing newsubmission variable
2002-11-21 Thursday 18:23 moodler
* user/lib.php:
Error checking on image writes
2002-11-21 Thursday 18:17 moodler
* user/: edit.php, lib.php:
Small bugfix with uploading new user images
2002-11-21 Thursday 16:26 paca70
* lang/fi/: assignment.php, auth.php, choice.php, moodle.php,
quiz.php, resource.php, survey.php:
some updates
2002-11-21 Thursday 15:53 moodler
* version.php, admin/auth.php, lang/en/auth.php:
Updated version (authentication tweaks)
2002-11-21 Thursday 15:37 moodler
* admin/auth.php, auth/db/config.html, auth/db/lib.php,
auth/imap/config.html, auth/ldap/config.html,
auth/nntp/config.html, auth/pop3/config.html, lang/en/auth.php,
lang/en/moodle.php, lib/moodlelib.php:
Tweaks to authentication system. Database method now allows other
fields to be specified so that things like email, names etc can be
pulled in from external database when new Moodle accounts are
created
2002-11-21 Thursday 10:51 moodler
* lib/weblib.php, user/pix.php:
Slight improvements to file security (scan for more bad characters)
2002-11-20 Wednesday 23:24 moodler
* course/: social.php, topics.php, weeks.php:
Fixed background colours of recent activity and news
2002-11-20 Wednesday 23:17 moodler
* version.php, doc/release.html:
Update version slightly
2002-11-20 Wednesday 23:16 moodler
* lib/defaults.php:
Forgot a comma
2002-11-20 Wednesday 23:04 moodler
* lib/defaults.php:
Added guestloginbutton as default
2002-11-20 Wednesday 23:03 moodler
* lib/db/mysql.php:
Make sure guestloginbutton is set to 1 as a default
2002-11-20 Wednesday 23:01 moodler
* lang/en/moodle.php:
New string for general form errors
2002-11-20 Wednesday 22:58 moodler
* lib/moodlelib.php, user/view.php:
User pictures no longer are links on main view page
2002-11-20 Wednesday 22:52 moodler
* user/: edit.html, edit.php, lib.php:
Made the user profile a little more robust.
Uploaded images are now saved even if the rest of the form has
errors.
If errors are found in the form then a message is printed up the
top to make it clearer that they need to fix something.
2002-11-20 Wednesday 17:41 moodler
* course/lib.php:
Er.. aligned center works better ;-)
2002-11-20 Wednesday 15:18 moodler
* course/lib.php:
Fixed alignment on category boxes in some circumstances
2002-11-20 Wednesday 00:16 moodler
* doc/release.html:
Spacing
2002-11-20 Wednesday 00:15 moodler
* version.php:
New version before release
2002-11-20 Wednesday 00:14 moodler
* doc/release.html:
New features and fixes
2002-11-19 Tuesday 23:54 moodler
* lang/pt_br/help/: courserecent.html, assignment/resubmit.html:
New files (not translated yet)
2002-11-19 Tuesday 23:52 moodler
* lang/pt_br/: assignment.php, forum.php, journal.php, moodle.php,
quiz.php, survey.php: