forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
5687 lines (3235 loc) · 129 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-09-25 Wednesday 15:41 martin
* lang/pt_br/help/: choice/options.html,
forum/allowdiscussions.html, forum/attachment.html,
forum/forumtype.html, forum/ratings.html, forum/subscription.html,
reading/readingtype.html, reading/summary.html:
Unfinished files
2002-09-25 Wednesday 15:40 martin
* version.php:
updated version numbers for beta 1 release
2002-09-25 Wednesday 15:38 martin
* lang/fi/README:
README contains author etc
2002-09-25 Wednesday 15:37 martin
* lang/pt_br/README:
Added README with author
2002-09-25 Wednesday 15:35 martin
* lang/fr/README:
Author stored in README
2002-09-25 Wednesday 15:33 martin
* admin/lang.php:
In compare mode you can now EDIT language files directly. This
should make language development much easier.
Based on code sent to me by Petri Asikainen
2002-09-25 Wednesday 15:31 martin
* lang/en/assignment.php:
Cough typo
2002-09-25 Wednesday 15:30 martin
* lang/en/assignment.php:
Edited using language editor
2002-09-25 Wednesday 15:19 martin
* lang/en/moodle.php:
New string
2002-09-25 Wednesday 12:20 martin
* mod/reading/view.php:
Add last modified dates to some readings
2002-09-24 Tuesday 20:45 martin
* user/view.php:
Fix for ICQ display (they've changed their URLs)
2002-09-24 Tuesday 17:20 martin
* login/signup_form.php:
Hide password during registration
2002-09-24 Tuesday 17:06 martin
* mod/journal/view.php:
Prevent guests even seeing the edit button
2002-09-24 Tuesday 17:02 martin
* mod/: assignment/view.php, choice/view.php:
Prevent guests from submitting choices or assignments
2002-09-24 Tuesday 16:54 martin
* doc/credits.html:
Updated Sebastien's address to [email protected]
2002-09-24 Tuesday 09:28 martin
* login/change_password.php:
Make sure site security is added when logging in via change
password
2002-09-23 Monday 23:42 martin
* theme/: index.php, standard/header.html,
standardblue/header.html, standardgreen/header.html,
standardred/header.html:
Newly formatted header.html files in themes ... still works the
same just might be easier to edit now. index.php uses new
set_config function
2002-09-23 Monday 23:41 martin
* index.php:
Special "navigation" for home page - "home" value sets off
different header in themes
2002-09-23 Monday 23:40 martin
* lib/moodlelib.php:
New set_config() and better use of $CFG->version
2002-09-23 Monday 23:38 martin
* theme/standardlogo/: config.php, favicon.ico, footer.html,
header.html, styles.css:
New standardlogo theme ... like standard but with a logo
2002-09-23 Monday 23:37 martin
* theme/standardlogo/logo.jpg:
Sample logo
2002-09-23 Monday 15:02 martin
* lib/moodlelib.php:
Fixed up default-sized tables again
2002-09-23 Monday 14:49 martin
* mod/forum/lib.php:
Whoops teacher checking was back to front
2002-09-23 Monday 12:04 martin
* doc/credits.html:
Personal mentions
2002-09-23 Monday 10:11 martin
* lang/: en/moodle.php, fr/moodle.php:
Change to name of language
2002-09-23 Monday 10:08 martin
* lang/pt_br/moodle.php:
Updated name of language
2002-09-23 Monday 10:04 martin
* lang/pt_br/: assignment.php, choice.php, forum.php, journal.php,
moodle.php, reading.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/picture.html,
help/questions.html, help/surveys.html, help/teachers.html,
help/text.html:
Added Portuguese (Brazilian) by Fabricio Valadares, Thanks!
2002-09-23 Monday 09:47 martin
* doc/credits.html:
Updated credits
2002-09-23 Monday 00:24 martin
* user/edit.html:
Saner format for editing profile
2002-09-23 Monday 00:19 martin
* user/edit.html:
Bolder title
2002-09-23 Monday 00:17 martin
* user/index.php:
Forgot country display change
2002-09-23 Monday 00:16 martin
* user/index.php:
Better country sorting on user index in a course
2002-09-23 Monday 00:12 martin
* admin/user.php:
Better way of sorting countries
2002-09-23 Monday 00:03 martin
* admin/user.php:
Fixes to country sorting
2002-09-22 Sunday 23:57 martin
* admin/user.php:
Better handling of country sorting
2002-09-22 Sunday 22:42 martin
* admin/user.php:
Don't delete a user if already deleted (reloading page, say)
2002-09-22 Sunday 22:39 martin
* version.php:
Updated version
2002-09-22 Sunday 22:33 martin
* admin/cron.php, course/unenrol.php, lib/moodlelib.php:
Fixes to unenrolling students, and unenrol_student() and
remove_teacher() now remove forum_subscriptions correctly
2002-09-22 Sunday 22:11 martin
* admin/user.php, lib/moodlelib.php, user/index.php:
Fixes to table widths
2002-09-22 Sunday 22:07 martin
* user/index.php:
Arrghh ... foget to remove the debugging thing
2002-09-22 Sunday 22:06 martin
* admin/user.php, course/enrol.php, course/lib.php,
course/teacher.php, course/unenrol.php, lang/en/moodle.php,
lib/moodlelib.php, user/edit.html, user/index.php:
Major cleanup of user administration and display, including
sortable listings, confirmation on deletions, removing deleted user
from all student lists, teacher lists and subscription lists and
freeing up their username and email to be used again.
2002-09-22 Sunday 14:49 martin
* CHANGES:
Changes (getting close to 1.0.5 now)
2002-09-22 Sunday 14:47 martin
* mod/: README, newmodule_template.zip:
Updated module template with module_print_recent_activity()
2002-09-22 Sunday 14:41 martin
* lang/en/assignment.php, mod/assignment/lib.php:
Added assignments under "Recent Activity"
2002-09-22 Sunday 13:33 martin
* index.php:
When redirecting to admin page go direct to index.php just in case
DirectoryIndex hasn't been fixed yet.
2002-09-22 Sunday 12:29 martin
* mod/journal/lib.php:
Some comments to indicate standard and other functions
2002-09-22 Sunday 12:27 martin
* mod/survey/lib.php:
Reaaranged the functions into standard and other
2002-09-22 Sunday 11:58 martin
* mod/survey/lib.php:
Fixed stupidity
2002-09-22 Sunday 11:57 martin
* mod/survey/lib.php:
Error in the SQL - fixed now
2002-09-22 Sunday 11:51 martin
* lang/en/survey.php, mod/survey/lib.php:
New function to show new surveys in recent activity box
2002-09-22 Sunday 11:17 martin
* mod/journal/view.php:
Whoops typo - left in some old stuff
2002-09-22 Sunday 11:16 martin
* lang/en/journal.php, mod/journal/view.php:
SHow number of journal entries in the teacher link to report
2002-09-22 Sunday 11:13 martin
* mod/journal/lib.php:
Use log URL for link to journal
2002-09-22 Sunday 11:11 martin
* lib/: moodlelib.php, db/mysql.sql:
Support for new deleted field in user table
2002-09-22 Sunday 11:05 martin
* mod/forum/lib.php:
Changes to not include deleted users in some things
2002-09-22 Sunday 11:01 martin
* CHANGES, version.php, admin/user.php, lib/moodlelib.php,
user/view.php:
Changes to enable DELETION of user accounts. Accounts aren't
actually deleted, they are just marked with a deleteion flag that
prevents them from logging in, or from being listed anywhere.
2002-09-22 Sunday 01:11 martin
* course/lib.php, lang/en/forum.php, lang/en/journal.php,
lang/en/moodle.php, mod/forum/lib.php, mod/journal/lib.php:
Changes to print_recent_activity in course/lib.php. It is now more
modular (at slight cost to performance) and every modules can now
have a module_print_recent_activity() function. This function
takes a list of logs, searches for things to display and does so.
So far I've done forum and journal functions
2002-09-21 Saturday 16:44 martin
* admin/config.html:
Allow 1-minute delay (mostly good for testing)
2002-09-21 Saturday 16:42 martin
* version.php:
Need more room for language variable (eg pt_br)
2002-09-21 Saturday 16:40 martin
* mod/: assignment/lib.php, forum/lib.php, journal/lib.php:
Make sure user language works OK (it does now)
2002-09-21 Saturday 16:39 martin
* lib/moodlelib.php:
Make mail format explicitly 8bit
2002-09-21 Saturday 15:46 martin
* mod/: assignment/lib.php, forum/lib.php, journal/lib.php:
Make sure mailouts are in the user's chosen language
2002-09-21 Saturday 15:42 martin
* mod/forum/lib.php:
Make sure mailouts are in the chosen language of each user
2002-09-21 Saturday 15:27 martin
* lang/fr/: assignment.php, choice.php, forum.php, journal.php,
moodle.php, reading.php, survey.php, 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/picture.html,
help/questions.html, help/surveys.html, help/text.html,
help/forum/allowdiscussions.html, help/forum/forumtype.html,
help/forum/ratings.html, help/forum/subscription.html,
help/reading/readingtype.html, help/reading/summary.html:
Initial (incomplete) version of French translation by Sebastien
Nameche <[email protected]>
Good start! Thanks, Sebastien.
2002-09-21 Saturday 15:22 martin
* lang/fi/: README, assignment.php, choice.php, forum.php,
journal.php, moodle.php, reading.php, survey.php, testupdate.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/picture.html, help/questions.html, help/surveys.html,
help/teachers.html, help/text.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/reading/readingtype.html,
help/reading/summary.html:
Initial version of Finnish translation, as done by Petri Asikainen
Thanks, Petri!
2002-09-21 Saturday 15:18 martin
* lang/en/: assignment.php, choice.php, forum.php, journal.php,
moodle.php, reading.php, survey.php:
Added single quotes around all the keys ... even though PHP works
without them, it will flag errors when errorlevel is turned up, and
I suspect this slows it all down a bit.
2002-09-21 Saturday 15:07 martin
* lang/en/README:
Added my email address
2002-09-21 Saturday 15:03 martin
* course/view.php:
Don't need to log in to see site-level course
2002-09-21 Saturday 14:45 martin
* admin/config.html:
More options for longtimenosee
2002-09-21 Saturday 14:39 martin
* user/: index.php, lib.php:
Don't print pictures at all for very large lists
2002-09-21 Saturday 14:30 martin
* user/index.php:
Make more room in list
2002-09-21 Saturday 14:27 martin
* user/: index.php, lib.php:
more refinements to sorting display
2002-09-21 Saturday 14:13 martin
* user/index.php:
Fixed typo from testing
2002-09-21 Saturday 14:12 martin
* pix/t/down.gif, pix/t/up.gif, user/index.php:
Much better look for user index
2002-09-21 Saturday 13:43 martin
* lib/moodlelib.php:
Slight additions to print_table
2002-09-21 Saturday 13:43 martin
* lib/db/mysql.sql:
Added lang for users
2002-09-21 Saturday 13:42 martin
* user/: index.php, lib.php:
Better display of users in shortened form, for testing
2002-09-20 Friday 23:42 martin
* user/lib.php:
Tweak
2002-09-20 Friday 23:40 martin
* user/: index.php, lib.php:
First go at an abbreviated user listing
2002-09-19 Thursday 22:59 martin
* admin/config.php:
Put sitename on debugging info (helpful when comparing two sites)
2002-09-19 Thursday 22:51 martin
* course/teachers.php, lang/en/moodle.php,
lang/en/help/teachers.html, lib/weblib.php:
Improved interface for course/teachers.php ... instead of typing
numbers into a box there is now a menu for each user. Much
better!
2002-09-19 Thursday 22:07 martin
* admin/config.html, lib/defaults.php, lib/setup.php:
Got rid of errorlevel configuration - more trouble than it's worth!
Hardcoded it into setup.php now - people who are that keen can
change it there.
2002-09-19 Thursday 22:06 martin
* doc/install.html:
Updated for new configuration page
2002-09-19 Thursday 21:55 martin
* course/edit.php, user/edit.php:
Some consistency in headers on editing forms
2002-09-19 Thursday 20:01 martin
* CHANGES, config-dist.php, version.php, admin/config.html,
admin/config.php, admin/index.php, admin/site.php, course/lib.php,
lang/en/moodle.php, lib/defaults.php, lib/moodlelib.php,
lib/setup.php:
Most of the configuration variables have been moved out of the
config.php file and into a database, where they can be edited using
a new admin form called "Configure variables".
2002-09-17 Tuesday 22:56 martin
* error/index.php:
Slight fix to error page to include site name properly
2002-09-16 Monday 21:03 martin
* index.php:
Login link on home page
2002-09-16 Monday 15:11 martin
* UPGRADING.txt:
eminder about saving themes in upgrades etc
2002-09-16 Monday 15:08 martin
* lib/htaccess:
Typo
2002-09-16 Monday 15:03 martin
* lib/javascript.php:
Fixed name in popup javascript window
2002-09-16 Monday 14:33 martin
* lib/htaccess:
Sample .htaccess file
2002-09-16 Monday 11:23 martin
* doc/install.html:
Fixed Id
2002-09-16 Monday 11:20 martin
* doc/install.html:
Type on phpinfo
2002-09-15 Sunday 14:09 martin
* config-dist.php:
Mentioned there's no need to use a trailing slash on the wwwroot
2002-09-15 Sunday 14:06 martin
* course/enrol.html, lib/moodlelib.php, login/index_form.html:
Fixes to point directly to index.php wherever it was assumed. This
wasn't a problem on most servers, but was causing some problems on
IIS servers
2002-09-14 Saturday 11:43 martin
* version.php, lang/en/moodle.php, lib/moodlelib.php,
user/edit.html:
Can now specify current language on a per-user basis
2002-09-13 Friday 18:33 martin
* mod/reading/view.php:
Consistent display of text
2002-09-13 Friday 18:22 martin
* lang/en/help/html.html:
New help file for editing html
2002-09-13 Friday 18:21 martin
* version.php, lang/en/moodle.php, lang/en/reading.php,
lang/en/help/reading/readingtype.html, mod/reading/details.php,
mod/reading/lib.php, mod/reading/mod.html, mod/reading/view.php:
Added a new reading type "html text". It's similar to "plain text"
except none of the auto-formatting is done, and all HTML code is
accepted.
2002-09-13 Friday 01:08 martin
* lib/weblib.php:
SUrprise icon is a bit wider than 16 pixels
2002-09-12 Thursday 10:42 martin
* course/lib.php:
Fixed bug with category links on front page
2002-09-11 Wednesday 22:02 martin
* login/confirm.php:
One more little buglet when confirming an email (added security
site value)
2002-09-11 Wednesday 13:11 martin
* CHANGES:
CHANGES UP TO 1.0.4 (really, I mean it this time :-) )
2002-09-11 Wednesday 10:26 martin
* course/lib.php:
Include guest user in list of users
2002-09-10 Tuesday 21:47 martin
* index.php, course/lib.php, lang/en/moodle.php:
Changes to course display on front page when there is more than one
category
2002-09-10 Tuesday 21:24 martin
* login/signup.php:
Removed some debugging stuff
2002-09-10 Tuesday 20:54 martin
* version.php, lib/db/mysql.sql, login/confirm.php,
login/signup.php:
More security for email confirmation process ... a 15-character
random "secret" key is stored the user record on account creation,
sent via email and checked again during confirmation.
2002-09-10 Tuesday 11:44 martin
* CHANGES:
CHANGES UP TO 1.0.4
2002-09-10 Tuesday 10:13 martin
* mod/forum/: version.php, db/mysql.sql:
Whoops, left attachment field out of the database schema (affected
new installations of 1.0.2 and later)
2002-09-09 Monday 23:52 martin
* CHANGES:
CHANGES (this is 1.0.4 unless anything comes up very soon)
2002-09-09 Monday 23:50 martin
* course/categories.php:
Tweak to modify interface a bit (changed header and made courses a
link)
2002-09-09 Monday 20:38 martin
* CHANGES:
CHANGES
2002-09-09 Monday 20:37 martin
* course/index.php, course/lib.php, lang/en/moodle.php:
Tweaks to category display
2002-09-09 Monday 19:48 martin
* CHANGES, index.php, version.php, admin/index.php, admin/site.php,
course/categories.php, course/index.php, course/lib.php,
lang/en/moodle.php:
Categories upgrade. Admin can now create/edit/delete categories,
and these are diesplayed wherever courses are listed
2002-09-09 Monday 19:42 martin
* course/social.php:
Layout fixes ... much better now
2002-09-09 Monday 19:31 martin
* course/edit.html:
Changed maximum number of weeks/topics up to 52
2002-09-09 Monday 18:38 martin
* course/teachers.php:
Rearrange code ... accidentally placed table->head in the loop
2002-09-09 Monday 14:23 martin
* 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, readme.htm,
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-informix72.inc.php, drivers/adodb-mssql.inc.php,
drivers/adodb-mysql.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/test4.php, tests/test5.php,
tests/testdatabases.inc.php, tests/testgenid.php,
tests/testmssql.php, tests/testoci8.php, tests/testpaging.php,
tests/testpear.php:
Whoops ... last conversion actully tampered with comment formatting
... I've fixed that now.
2002-09-09 Monday 14:17 martin
* 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,
readme.htm, readme.txt, 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-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/testpaging.php, tests/testpear.php, tests/testsessions.php:
Converted all the DOS format text files to UNIX format, for
consistency with the rest of Moodle and also to prevent possible
mangling of files in case they are FTP'd individually to a server.
2002-09-09 Monday 00:13 martin
* lib/weblib.php:
Added height and width to smiley icons, to make emails look better
in circumstances where external images are blocked (eg some webmail
programs like squirrelmail).
2002-09-09 Monday 00:04 martin
* mod/forum/lib.php:
Added an "unsubscribe" link to emails
2002-09-08 Sunday 23:39 martin
* mod/forum/lib.php:
Fixed a bug. When replying to an email copy, you would be
forwarded to the login screen to login first. However, this was
being saved as the place to go back to after replying.
I added a check for this so now it behaves as you'd expect.
2002-09-08 Sunday 17:47 martin
* mod/choice/mod.html:
Text window a bit bigger
2002-09-08 Sunday 17:42 martin
* lang/en/choice.php, mod/choice/lib.php, mod/choice/mod.html,
mod/choice/report.php, mod/choice/version.php,
mod/choice/view.html, mod/choice/view.php:
Choices now support up to 6 choices. Backward compatible to
2-choice format.
2002-09-08 Sunday 17:41 martin
* course/: social.php, topics.php, weeks.php:
Tip over 'Edit profile' is the user's name
2002-09-08 Sunday 17:22 martin
* lang/en/help/choice/options.html:
Help for choices
2002-09-08 Sunday 13:29 martin
* course/: social.php, topics.php, weeks.php:
Clarified the "participants" link ...
2002-09-08 Sunday 13:23 martin
* course/view.php:
Link at bottom now goes to site home, not this page
2002-09-08 Sunday 13:15 martin
* course/teachers.php, lang/en/help/teachers.html:
Added documentation to the teachers page.
2002-09-08 Sunday 13:15 martin
* lib/moodlelib.php:
Improved print_table() a bit (can now specify column widths)
2002-09-08 Sunday 11:34 martin
* course/teachers.php:
Need this file to go with the previous changes!
2002-09-08 Sunday 11:34 martin
* lang/en/moodle.php, user/index.php, user/lib.php:
Changes to improve display of teachers
2002-09-08 Sunday 11:24 martin
* version.php, course/edit.html, course/edit.php, course/lib.php,
course/social.php, course/topics.php, course/weeks.php,
lang/en/moodle.php, lib/moodlelib.php, lib/db/mysql.sql,
user/index.php:
Changes to allow much better control over what "teachers" are
called in a course. Firstly, the course settings page now allows
the teachers to specify the word they want to use in place of
"teachers" and "students" as well as "teacher" and "student".
Secondly, a new teacher admin tool allows any teacher to modify the
order and displayed role of teachers in that course. This affects
the display on the course listings, the participants page and so
on.
2002-09-07 Saturday 22:57 martin
* admin/lang.php, lang/en/moodle.php, lib/moodlelib.php:
Improvements to the language checker. As well as checking for
missing strings, you can now see the current language compared
side-by-side with English.
2002-09-07 Saturday 22:56 martin
* admin/index.php:
Add a link if a "manage database" directory exists
2002-09-07 Saturday 13:01 martin
* mod/newmodule_template.zip:
Slight update to README
2002-09-07 Saturday 11:54 martin
* mod/newmodule_template.zip:
Added a README that explains the process
2002-09-07 Saturday 11:31 martin
* mod/: README, newmodule_template.zip:
Added a template for new modules that contains the bare
necessities.
2002-09-06 Friday 23:17 martin
* version.php:
Checking in the current release number for CVS users