forked from kanemura1206/maspen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
4826 lines (2735 loc) · 109 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-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
2002-09-06 Friday 23:10 martin
* user/view.php:
Don't try and print the last access date if it doesn't exist
2002-09-06 Friday 22:06 martin
* version.php, admin/index.php, lib/moodlelib.php:
Added a new $release variable that shows the user-friendly version
number
2002-09-06 Friday 22:05 martin
* lib/setup.php:
Cleaned up a bit
2002-09-06 Friday 01:31 martin
* user/edit.php:
Fixed bug in password checking for new admin user ...
2002-09-05 Thursday 20:29 martin
* UPGRADING.txt:
Updated the info to mention that the upgrading only works if you
are logged in as the *administrator* and visit the site home page.
2002-09-05 Thursday 20:25 martin
* CHANGES:
CHANGES UP TO 1.0.3.1
2002-09-05 Thursday 20:24 martin
* version.php:
Updated version
2002-09-05 Thursday 19:56 martin
* file.php, user/pix.php:
Better error message when invalid arguments are supplied.
2002-09-05 Thursday 19:53 martin
* lib/weblib.php:
BUG FIX! - fixes error that could allow ANY file on the system to
be read!
2002-09-05 Thursday 19:28 martin
* course/loginas.php:
Whoops ... little bug that stopped loginas from working ... need to
create $USER->site ...
2002-09-05 Thursday 10:29 martin
* version.php:
Updated version number
2002-09-05 Thursday 10:28 martin
* CHANGES:
CHANGES UP TO MOODLE 1.0.3
2002-09-05 Thursday 10:17 martin
* lang/en/moodle.php, user/edit.php:
New error when the admin user is (still) set to the default
"admin".
2002-09-05 Thursday 10:04 martin
* admin/user.php:
BUG FIX: In the last version I introduced a new security feature
(keeping the site URL stored in the USER session object) but forgot
to add this to the brand new admin user - causing it to fail.
Fixed.
2002-09-04 Wednesday 21:38 martin
* lang/en/README:
Updated README .. pages dir no longer exists - now "help" and
"docs"
2002-09-04 Wednesday 17:39 martin
* lib/moodlelib.php:
Using different logo file to avoid caching problems on changeover
2002-09-04 Wednesday 17:38 martin
* pix/: madewithmoodle.gif, madewithmoodle1.gif,
madewithmoodle2.gif, madewithmoodle3.gif:
Sorted out moodle logos
2002-09-04 Wednesday 14:32 martin
* lib/moodlelib.php, pix/madewithmoodle.gif:
Tweaked the new icon
2002-09-04 Wednesday 13:07 martin
* user/: edit.html, edit.php:
Better handling of user-entered URLs (add http:// if missing)
2002-09-04 Wednesday 00:58 martin
* lib/moodlelib.php, pix/madewithmoodle.gif:
New logo that should work on more themes
2002-09-03 Tuesday 23:16 martin
* pix/: madewithmoodle.gif, madewithmoodle2.gif:
Switched these around and edited a little
2002-09-03 Tuesday 22:29 martin
* admin/index.php, admin/lang.php, course/lib.php,
lang/en/moodle.php, lib/moodlelib.php:
Added a new administration page that can check the current language
pack against the English language pack. It prints any missing
strings or files. This should help language pack developers.
2002-09-03 Tuesday 21:11 martin
* index.php, admin/site.php, course/lib.php, course/teacher.php,
lang/en/forum.php, lang/en/moodle.php,
login/forgot_password_form.html, login/index.php,
mod/forum/lib.php, mod/forum/post.php, mod/reading/details.php:
Language fixes, added english strings etc
2002-09-03 Tuesday 00:35 martin
* course/loggraph.php:
More efficient use of database in userday as well, plus the day
graph now always shows the whole current day
2002-09-03 Tuesday 00:03 martin
* course/loggraph.php:
usercourse bar --> line graph for better display when lots of data
2002-09-02 Monday 23:53 martin
* course/loggraph.php:
Alternate method of calculating usercourse logs .... is it faster?
2002-09-02 Monday 17:06 martin
* file.php, user/pix.php:
Added Content-disposition header to help some browsers suggest the
right filename when saving pictures and files.
2002-09-02 Monday 15:41 martin
* lib/weblib.php:
Fixed over-zealous removal of returns from text ...
2002-09-02 Monday 15:18 martin
* lib/ipatlas/plot.php:
Print the user's stated city/country as well
2002-09-02 Monday 14:51 martin
* CHANGES:
CHANGES UP TO MOODLE 1.0.2
2002-09-02 Monday 14:34 martin
* config-dist.php:
Added ability to define proxy machine (eg a firewall) so that
Moodle is able to get to the Internet if it needs to
2002-09-02 Monday 14:30 martin
* lib/ipatlas/plotconf.inc:
Add Moodle support for proxies
2002-09-02 Monday 14:25 martin
* mod/forum/post.php:
[no log message]
2002-09-02 Monday 13:03 martin
* mod/forum/discuss.php:
Fix the display when USER display mode is flat, and a parent is
selected. In this case, the display is temporarily changed to
nested
2002-09-02 Monday 11:48 martin
* mod/forum/lib.php:
Default forum display mode is actually used now
2002-09-02 Monday 10:17 martin
* course/editsection.html:
Removed the 255 character limit ... now they have a gun, I hope
people don't shoot themseves with it. ;-)
2002-09-01 Sunday 22:47 martin
* course/lib.php:
Hide no-authority teachers from course listings too
2002-09-01 Sunday 22:35 martin
* lang/en/help/forum/attachment.html:
New documenttaion about attachments
2002-09-01 Sunday 22:34 martin
* mod/forum/: lib.php, post.html, post.php, version.php:
Attachments can now be added to postings. They are stored in the
course moddata area. They appear as links within the message,
including mailed-out messages. They are deleted when the post is
deleted.
2002-09-01 Sunday 22:32 martin
* lang/en/: forum.php, moodle.php, help/picture.html:
Updates and changes
2002-09-01 Sunday 22:31 martin
* user/lib.php:
Moved valid_uploaded_file out to lib/moodlelib.php
2002-09-01 Sunday 22:31 martin
* user/: edit.html, edit.php:
Documentation on file sizes
2002-09-01 Sunday 22:30 martin
* user/index.php:
DOn't print teachers with no authority
2002-09-01 Sunday 22:29 martin
* lib/moodlelib.php:
Functions moved here from files/index.php (related to file
handling)
2002-09-01 Sunday 22:28 martin
* files/index.php:
Moved some functions out to lib/moodlelib.php
2002-09-01 Sunday 22:24 martin
* version.php, lib/db/mysql.sql:
Increased size of section summaries from 255 chars to 65000 chars.
2002-08-31 Saturday 10:44 martin
* doc/install.html:
Mentioned that config.php needs to be edited using a *text editor*
:-)
2002-08-31 Saturday 00:02 martin
* theme/index.php:
Prints an error message if theme can't be set
2002-08-30 Friday 21:28 martin
* lang/en/moodle.php:
New strings for file management stuff
2002-08-30 Friday 21:18 martin
* files/index.php:
Improved header now contains directory trail, and I
internationalised all the texts (buttons etc)
2002-08-28 Wednesday 23:53 martin
* index.php:
Added slash after login to fix obscure problems on some servers
2002-08-28 Wednesday 23:28 martin
* lib/moodlelib.php:
Added slash after login link ... some servers have problems without
it
2002-08-28 Wednesday 23:07 martin
* lib/moodlelib.php, login/index.php:
Security fix for:
Internet Explorer bug that allows sends cookies to different
sites if
they have the same ending. eg moodle.com cookie is sent to
smec.moodle.com!!
Also fixes case where multiple moodle installations may be in
different
directories on the same server. When you go from one to the
other the
first session will be destroyed now (you can't be logged in the
two
at the same time). It's just a lot safer this way, for now.
Basically this works by storing the wwwroot variable in the session
and checking it for every page.
2002-08-28 Wednesday 21:41 martin
* files/index.php:
slasharguments wasn't being found (CFG not declared global)
2002-08-28 Wednesday 21:36 martin
* files/mimetypes.php:
Added powerpoint
2002-08-28 Wednesday 21:36 martin
* files/pix/powerpoint.gif:
New icon
2002-08-28 Wednesday 21:20 martin
* lang/en/docs/module_files.txt, mod/assignment/version.php:
Slight improvements to documentation
2002-08-28 Wednesday 21:07 martin
* lang/en/moodle.php, lang/en/docs/module_files.txt,
lib/moodlelib.php, lib/setup.php, mod/assignment/lib.php,
mod/assignment/version.php, mod/reading/details.php:
Moved uploaded assignment files into a subdirectory called moddata,
where data from other modules can also live later on.
Also added a README for that directory to warn teachers not to mess
with it, version code to perform the upgrade, tweaks to
assignment/lib.php and a tweak to reading module so that assignment
files aren't listed in the list of possible readings (could get
messy).
2002-08-28 Wednesday 11:45 martin
* doc/future.html:
More details about Moodle futures
2002-08-27 Tuesday 04:45 martin
* index.php, course/lib.php:
Tweak to side boxes
2002-08-27 Tuesday 04:41 martin
* index.php:
Further little tweak to front-page spacing
2002-08-27 Tuesday 04:38 martin
* index.php, course/lib.php:
Fix for front page case when no left column
2002-08-26 Monday 19:04 martin
* lib/ipatlas/plot.php:
Doesn't matter if user isn't provided
2002-08-26 Monday 18:07 martin
* CHANGES:
MOODLE 1.0.1 RELEASED
2002-08-26 Monday 18:06 martin
* version.php:
Upgraded version number to today, in anticipation of 1.0.1
2002-08-26 Monday 18:01 martin
* mod/forum/mod.html:
Choose "general" forum now as a default
2002-08-26 Monday 17:51 martin
* CHANGES:
New changes
2002-08-26 Monday 17:48 martin
* CHANGES, config-dist.php, file.php, index.php, files/index.php,
lib/moodlelib.php, mod/assignment/lib.php, mod/reading/view.php:
Changes to use a new configuration variable: CFG->slasharguments
If true, then display of user pictures or filenames will use the
method of providing arguments as "slash" arguments - this is much
better for caching, proxies, search engines etc. Unfortunately it
doesn't seem to work on some PHP installations.
If false (the default), then a more compatible method is used (ie
usual way of passing parameters to scripts)
2002-08-26 Monday 17:28 martin
* course/lib.php:
Slightly bigger window
2002-08-26 Monday 17:25 martin
* course/lib.php, lib/ipatlas/plot.php:
Nicer display of earth plot now contains user's name as well
2002-08-26 Monday 17:16 martin
* lib/ipatlas/: MOODLECHANGES, plot.php:
Fixes to use Moodle background colour
2002-08-26 Monday 17:05 martin
* doc/credits.html:
Added IP-Atlas to credits
2002-08-26 Monday 17:00 martin
* course/lib.php:
Added popup links for IP addresses in logs (display IP location on
world map)
2002-08-26 Monday 16:59 martin
* lib/ipatlas/: COPYING, README, countries.txt, earth_620.jpg,
footer.inc, hr.gif, ip-atlas.css, ip-atlas_prefs.php, plot.inc,
plot.php, plotconf.inc, plotimage.php, plotlog.txt, reddot.gif,
translate.inc, yellowdot.gif, languages/messages.blank.inc,
languages/messages.it.inc:
Adding IP-Atlas 1.0 to this distribution. I use it to provide maps
for IP addresses (in the logs).
2002-08-26 Monday 16:35 martin
* mod/forum/lib.php:
Forums with many discussions (> 10) become abbreviated to a shorter
display
2002-08-26 Monday 10:49 martin
* admin/site.php:
More direct link to index.php just in case they don't have
index.php set as a default page
2002-08-23 Friday 11:55 martin
* index.php, course/lib.php, course/weeks.php, lib/moodlelib.php,
mod/forum/lib.php:
Changes to improve layout and formatting on old Netscape (eg
version 4)
2002-08-23 Friday 10:14 martin
* lib/: moodlelib.php, setup.php:
Check that PHP is a recent enough version (ie 4.1.0 or later)
2002-08-22 Thursday 16:31 martin
* lib/weblib.php:
New space-removal works better if done before adding link tags :-)
2002-08-22 Thursday 16:01 martin
* mod/forum/lib.php:
If a post is updated that is also a discussion definition, then the
discussion name is updated with the post subject.
2002-08-22 Thursday 15:53 martin
* lib/weblib.php:
Experimental filters to remove returns from before and after tags,
which should mean neater formatting of lists and so on. Needs
testing.
2002-08-22 Thursday 14:41 martin
* admin/: index.php, user.php:
Tweaks to creation of user account while searching for the login
problem some people are having ...
2002-08-22 Thursday 14:40 martin
* lib/db/mysql.sql:
Added recent upgrades (course->guest, and user->maildisplay)
2002-08-22 Thursday 10:24 martin
* doc/install.html, lang/en/moodle.php, login/index_form.html:
Notes about the necessity of cookies being allowed
2002-08-22 Thursday 10:23 martin
* course/teacher.php:
Handy link to course page, after assigning teachers
2002-08-22 Thursday 09:24 martin
* index.php:
Whoops! comment out of place
2002-08-21 Wednesday 22:08 martin
* index.php, lib/moodlelib.php:
Just some comments about not removing the Moodle logo from the
front page.
2002-08-21 Wednesday 21:55 martin
* lib/moodlelib.php:
Fixed dates when no-one is logged in (uses server time now, not
GMT)
2002-08-21 Wednesday 21:29 martin
* version.php, lang/en/moodle.php, user/edit.html, user/lib.php,
user/view.php:
Users can now choose to hide their email address. In this initial
version there are three options:
0) Hide the email address from everyone (except the teacher of
their course) 1) Allow everyone to see the email address, all the
time. 2) Allow only participants in the same course to see the
email address
Note, new field maildisplay in 'user'
2002-08-21 Wednesday 20:54 martin
* version.php, course/edit.html, lang/en/moodle.php,
lang/en/help/enrolmentkey.html, lang/en/help/guestaccess.html,
lib/moodlelib.php:
Fixed up guest access PROPERLY - it's now more obvious and simple
for teachers to set it how they want. Guest access now has THREE
states (off, on, on with key).
2002-08-21 Wednesday 19:11 martin
* lang/en/help/: enrolmentkey.html, guestaccess.html:
Improved explanations
2002-08-21 Wednesday 18:56 martin
* lang/en/help/: enrolmentkey.html, guestaccess.html:
Clarified the documentation here
2002-08-21 Wednesday 10:05 martin
* doc/install.html:
Anchor name fix
2002-08-21 Wednesday 09:57 martin
* doc/install.html:
Improvements to install documentation
2002-08-20 Tuesday 17:39 martin
* admin/cron.php:
Bugfix for unenrolling old users
2002-08-20 Tuesday 10:15 martin
* doc/developer.html:
Slight formatting fix on list
2002-08-19 Monday 22:53 martin
* CHANGES:
Moodle 1.0 is released! :-)
2002-08-19 Monday 21:25 martin
* doc/: contents.html, developer.html, licence.html:
Format fixes
2002-08-19 Monday 21:19 martin
* doc/: background.html, contents.html, credits.html,
developer.html, features.html, future.html, intro.html:
Significant improvements to distributed documentation
2002-08-19 Monday 00:39 martin
* version.php, mod/assignment/version.php, mod/choice/version.php,
mod/forum/version.php, mod/journal/version.php,
mod/reading/version.php, mod/survey/version.php:
Updated versions in preparation for 1.0 release tomorrow
2002-08-19 Monday 00:33 martin
* doc/view.php:
Double footer looked funny.
2002-08-19 Monday 00:31 martin
* course/lib.php, doc/teacher.html, doc/view.php:
Make the Help link in the course look like a seamless part of the
course.
2002-08-19 Monday 00:16 martin
* course/lib.php, course/social.php, course/topics.php,
course/weeks.php, lang/en/moodle.php:
Added help link to course pages (for teachers) and tidied up the
course admin links in general (new fucntion and reorder)
2002-08-18 Sunday 23:57 martin
* lang/en/help/reading/: readingtype.html, summary.html:
New help files for readings
2002-08-18 Sunday 23:56 martin
* lang/en/reading.php, mod/reading/details.php,
mod/reading/mod.html, mod/reading/view.php:
Improvements to reading definition - help buttons and language
fixes
2002-08-18 Sunday 23:31 martin
* doc/teacher.html:
SLight edits
2002-08-18 Sunday 23:26 martin
* config-dist.php, files/index.php:
New CFG->zip and CFG->unzip valiables which specify programs to use
when zipping and unzipping files. Unix only at this stage. (Zip
interfaces for Windows are much less standardised)
2002-08-18 Sunday 23:24 martin
* help.php:
Better error (don't need a link)
2002-08-18 Sunday 23:23 martin
* doc/pix/: files.jpg, social.jpg, topics.jpg, weekly.jpg:
New pictures for documentation.
2002-08-18 Sunday 23:23 martin
* doc/teacher.html:
Finally sat down and wrote this page. SHould do for now as a
starter.
2002-08-18 Sunday 22:40 martin
* lang/en/help/waysofknowing.html,
lang/en/help/forum/allowdiscussions.html,
lang/en/help/forum/forumtype.html, lang/en/help/forum/ratings.html,
lang/en/help/forum/subscription.html, mod/forum/lib.php,
mod/forum/mod.html:
Improved help buttons for forums
2002-08-18 Sunday 18:00 martin
* doc/teacher.html:
Placeholder
2002-08-18 Sunday 17:52 martin
* lang/en/choice.php, mod/choice/view.php:
Preview how many responses have been made (for teacher)
2002-08-18 Sunday 17:47 martin
* mod/choice/report.php:
Sort names by firstname, and include even columns with no answers
2002-08-18 Sunday 17:43 martin
* doc/teacher.html, lang/en/choice.php:
new strings
2002-08-18 Sunday 17:43 martin
* mod/choice/: lib.php, report.php:
Cleaned up the Choice report - it's easier to make sense of now
2002-08-17 Saturday 23:10 martin
* CHANGES:
Changes
2002-08-17 Saturday 22:44 martin
* course/edit.html, lang/en/help/coursecategory.html,
lang/en/help/coursefullname.html,
lang/en/help/coursenewsitems.html,
lang/en/help/coursenumsections.html,
lang/en/help/courseshortname.html,
lang/en/help/coursestartdate.html, lang/en/help/enrolmentkey.html,
lang/en/help/guestaccess.html:
Added more popup help for course settings page
2002-08-17 Saturday 21:01 martin
* config-dist.php, admin/index.php, course/lib.php,
lang/en/moodle.php, lib/moodlelib.php, lib/setup.php,
theme/index.php:
Changes related to new way of setting and recalling themes.
The CFG->theme variable is now obsolete in config.php - use the
admin page to set themes interactively.
2002-08-17 Saturday 19:32 martin
* mod/assignment/index.php:
Fixed some missing language strings
2002-08-17 Saturday 19:32 martin
* lang/en/assignment.php:
Additions for index.php
2002-08-17 Saturday 16:59 martin
* lang/en/assignment.php, mod/assignment/mod.html,
mod/journal/mod.html: