-
Notifications
You must be signed in to change notification settings - Fork 10
/
diario.txt
4867 lines (3970 loc) · 146 KB
/
diario.txt
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
ADA 2.0 STANDARD
28/06/2013
Giorgio
++++++++++++++++++
fixed bugs preventing node editing
++++++++++++++++++
* include/user_class.inc.php
+ if neither course instance nor session course instance is set, then return null
git ada2.0 master, ftp ada20PDO
11/06/2013
Giorgio
++++++++++++++++++
substituting 'eta' (age) field with 'data di nasicta' (birthdate)
++++++++++++++++++
* /login_required.php
+ added jquery masked input for birthdate
* modules/test/include/root.class.inc.php
+ fixed minor bug in building array for query parameters. removed extra space in array key.
10/06/2013
Giorgio
++++++++++++++++++
substituting 'eta' (age) field with 'data di nasicta' (birthdate)
++++++++++++++++++
* admin/add_user.php
* admin/edit_user.php
* admin/inlcude/htmladmoutput.inc.php
* browsing/edit_user.php
* inlcude/HtmlLibrary/AdminModuleHtmlLib.inc.php
* inlcude/HtmlLibrary/TutorModuleHtmlLib.inc.php
* inlcude/HtmlLibrary/RegistrationModuleHtmlLib.inc.php
* inlcude/Forms/UserRegistrationForm.inc.php (added date validator to proper field)
* inlcude/ama.inc.php
* include/user_class.inc.php
* services/edit_author.php
* switcher/add_user.php
* switcher/edit_switcher.php
* switcher/edit_user.php
* switcher/view_user.php
* switcher/zoom_user.php
* tutor/edit_tutor.php
+ changed from 'eta' to 'birthdate' and from 'age' to 'birthdate' in all above files
* inlcude/HtmlLibrary/FormElementCrator.inc.php
+ added addDateInput method to class FormElementCreator
* include/data_validation.in.php
+ added validate_birthdate to class DataValidator
* browsing/registration.php
+ added jquery masked input for birthdate
* config/config_main.inc.php
+ added JS include for masked input
* js/include/basic.js
+ added date validation to validateContent function
* js/admin/default.js
+ added init function for masked input
svn ada, TODO: ftp ada20 and maybe everywhere else.
TODO: run
ALTER TABLE `utente` CHANGE `eta` `birthdate` INT(11) UNSIGNED NULL DEFAULT NULL;
on all provider's databases. Notice: on existing dbs, this cause loss of existing field (eta)
04/06/2013
Graffio
* browsing/main_index.php
fixed bug: deleted node from needed object
svn ada, ftp ada20, uems, ada_ecm
04/06/2013
Giorgio
++++++++++++++++++
whatsnew feature
++++++++++++++++++
* browsing/user.php
+ added course instance id to the generated link to the updated node, needed for letting the user view the node in view.php
svn ada, ftp ada20
03/06/2013
Graffio
++++++++++++++++++
module main_index forum:
Fixed wrong style class in case ADA_GROUP_TYPE
Added ADA_GROUP_TYPE to "legenda"
++++++++++++++++++
* browsing/include/CourseViewer.inc.php
* browsing/main_index.php
svn ada, ftp ada20, ada_ecm, UEMS
03/06/2013
Giorgio
++++++++++++++++++
module tutor_exercise: sort exercises of single student in different order
added time of when the exercise was taken to the tutor exercise recap table
++++++++++++++++++
* include/user_class.inc.php
+ history_ex_done_FN --> pass id to table
+ added time as a string to the date
* js/tutor/tutor_exercise.js
+ added function dataTablesExec
* tutor/tutor_exercise.php
+ include jquery and dataTable
* js/include/jquery/dataTables/dateSortPlugin.js
+ uncommented code for sorting date and time in (dd/mm/YYYY hh:ii:ss format)
svn ada, ftpada20, ftp ada_icon, ftp csf_icon
03/06/2013
Giorgio
+++++++++++++++
added time of when the exercise was taken to the tutor exercise recap table
+++++++++++++++
* include/user_class.inc.php
svn ada, ftp ada20
01/06/2013
graffio
+++++++++++++++
some changes in module_init in order to prevent user see the node in instance in which he do not be enrolled
* include/module_init.inc.php
* browsing/include/browsing_functions.inc.php
svn ada, ftp ada20, ada_icon
30/05/2013 16:30
Valerio
++++++++++++++++++
changed second parameter of is_a() function as string instead of class name, to don't generate notice errors
++++++++++++++++++
* modules/test/history.php
* modules/test/include/topic.class.inc.php
* modules/test/include/root.class.inc.php
* modules/test/index.php
* modules/test/include/management/tutorManagementTest.inc.php
* modules/test/switcher.php
* modules/test/tutor.php
svn ada
30/05/2013
Graffio
* switcher/list_users.php
+ make table of users sortable and searchable
* js/switcher/list_users.js
+ sort table of users
svn ada, ftp ada20, icon, csf_icon, uems, ada_ecm
29/05/2013
Giorgio
++++++++++++++++++
added student is confirmed in switcher students listing and switcher user editing form
++++++++++++++++++
* switcher/list_users.php
+ added code to add 'confirmed' column in table view
* switcher/edit_user.php
+ passed proper parameters to UserProfileForm constructor
+ added code to save POST passed stato field
* include/Forms/UserProfileForm.inc.php
+ added extra parameter to constructor to allow editing of student confirmed registration
+ added code for html select item generation inside the form
* switcher/view_user.php
+ added code to show user registration status in edited user profile recap
svn ada, ftp ada, ftp icon, ftp csf_icon
27/05/2013
Giorgio
++++++++++++++++++
additional mime-types
++++++++++++++++++
* includes/utilities.inc.php
+ added support for downloading following file types:
xlsx,xltx,docx,dotx,pptx,ppsx,potx
* config/config_install.inc.php
+ added support for uploading following file types:
xlsx,xltx,docx,dotx,pptx,ppsx,potx
svn ada, ftp ada, ftp icon, ftp csf_icon
22/05/2013
graffio
* include/HTML_element_classes.inc.php
+ class table -> added set id
* config/config_main.inc.php
+ added plugin to sort date in dataTables
* js/include/jquery/dataTables/dateSortPlugin.js
new plugin to sort date in dataTables
svn, ftp csf_icon, ada_icon
todo: upload in ada_ecm, ada20, uems
21/05/2013 23:11
Valerio
++++++++++++++++++
module test (beta 0.1): bugfixes based on requests for ada_ecm made by franceso
++++++++++++++++++
* browsing/exercise.php
* browsing/exercise_player.php
* modules/test/include/forms/switcherFormTest.inc.php
* modules/test/include/management/rootManagementTest.inc.php
* modules/test/include/management/switcherManagementTest.inc.php
* modules/test/include/questionLikert.class.inc.php
* modules/test/layout/ada_blu/css/index.css
* modules/test/layout/clear/css/index.css
* modules/test/layout/silver_gray/css/index.css
* modules/test/layout/standard/css/index.css
svn ada, ftp ada, ftp uems, ftp ecm
21/05/2013
Giorgio
++++++++++++++++++
PDF student report generation, with time periods
++++++++++++++++++
* tutor/tutor.php
+ fixed bug in xls export
svn ada, ftp ada, ftp ada_icon, ftp csf_icon
17/05/2013
++++++++++++++++++
PDF student report generation, with time periods
++++++++++++++++++
* tutor/tutor.php
* tutor/include/tutor.inc.php
* include/courses_classes.inc.php
* config/config_class_report.inc.php
+ minor changes to handle unwanted column output in html and pdf separately
svn ada, ftp ada, ftp ada_icon, ftp csf_icon
17/05/2013
++++++++++++++++++
PDF student report generation, with time periods
++++++++++++++++++
* include/history_class.inc.php
+ modified history_nodes_list_filtered_FN method of History class to produce a nicer table title writing when period=all and if no node found
+ modified history_nodes_list_filtered_FN to return both HTML and array
+ modified get_historyFN to return both HTML and array
svn ada, ftp ada
17/05/2013
++++++++++++++++++
PDF student report generation, with time periods
++++++++++++++++++
* tutor/tutor_history_details.php
+ added student information to html and pdf export
* tutor/tutor_history.php
+ minor bug fix
svn ada, ftp ada, ftp ada_icon
16/05/2013
++++++++++++++++++
PDF class and student report generation
++++++++++++++++++
* include/courses_classes.inc.php
+ added class name and id to the class report, html and pdf
* tutor/tutor_history.php
+ added class name and id to the student report, html and pdf
svn ada, ftp ada, ftp ada_icon
16/05/2013
++++++++++++++++++
PDF class and student report generation
++++++++++++++++++
* config/config_class_report.inc.php
+ class report columns configuration
* include/courses_classes.inc.php
+ column inclusion/exclusion logic based from values defined in config_class_report.inc.php
* tutor/tutor.php
+ added inclusion of class report configuration file
svn ada, ftp ada
16/05/2013
Giorgio
++++++++++++++++++
bug fix
++++++++++++++++++
* include/ama.inc.php
+ FIXED: method get_student_visits_for_course_instance of class AMA_DataHandler didn't sort correctly the returned array
16/05/2013
Giorgio
++++++++++++++++++
PDF class and student report generation
++++++++++++++++++
* tutor/tutor.php
+ removed unneeded code
15/05/2013
Giorgio
++++++++++++++++++
whatsnew
++++++++++++++++++
* layout/*/templates/browsing/user.tpl
+ typo corrected
svn ada, ftp ada
15/05/2013
Giorgio
++++++++++++++++++
PDF class and student report generation
++++++++++++++++++
* tutor/tutor.php
+ added menu element to perform action
+ added logic to generate class report pdf file
* tutor/tutor_history.php
+ added logic for pdf report generation
* tutor/include/tutor.inc.php
+ modified get_student_coursesFN function to get type parameter and pass it to Student_class->get_class_reportFN
* browsing/include/graph/jpgraph.php
+ modified constructor to generate a truecolor image that will be correctly inserted into the PDF
* include/courses_classes.inc.php
+ added logic in get_class_reportFN method of Student_class class to return needed array for PDF generation
* include/history_class.inc.php
+ modifed history_last_nodes_FN method of History class to return data instead of html depending on passed parameter
+ modified format_history_dataFN static method of History class to return data instead of html depending on passed parameter
+ modifed history_nodes_visited_FN method of History class to return data instead of html depending on passed parameter
* include/PdfClass.inc.php
+ new class for managing pdf creation
* include/Cezpdf/*
+ nes files: PDF generation library and fonts
svn ada, ftp ada
15/05/2013
Graffio
++++++++++++++++++
subscriptions: set user level = instance start user level
++++++++++++++++++
* switcher/include/Subscription.inc.php
* switcher/subscribe.php
* include/multiport.inc.php
+ modified course_instance_subscribe_to_tester
* info.php
svn, ftp ada20, scf_icon, ada_icon
14/05/2013
Giorgio
++++++++++++++++++
whatsnew
++++++++++++++++++
* browsing/user.php
+ fixed bug in 'Iscritti' generation link
* layout/*/templates/browsing/user.tpl
+ writing modified in the template
svn ada, ftp ada
10/05/2013
Graffio
++++++++++++++++++
Switcher: assignment more tutors to one course instance
++++++++++++++++++
* switcher/assign_more_tutors.php --> new script
* include/Forms/TutorSecondaryAssignmentForm.inc.php --> new form
* comunica/chat.php --> modified to assign moderator permissions to all tutors even if the user is not the proprietary of the chatroom
svn ada, uploaded in ada_icon, csf_icon
09/05/2013 08:39
Valerio
++++++++++++++++++
module test (beta 0): last bugfixes! module test goes beta release!
++++++++++++++++++
* modules/test/include/questionMediumCloze.class.inc.php
* modules/test/include/nodeTest.class.inc.php
* modules/test/include/questionDragDropCloze.class.inc.php
* modules/test/include/questionEraseCloze.class.inc.php
* modules/test/include/questionSlotCloze.class.inc.php
* modules/test/include/questionSelectCloze.class.inc.php
* modules/test/include/questionLikert.class.inc.php
* modules/test/include/questionMultipleCheck.class.inc.php
svn ada, ftp ada, ftp icon, ftp uems
09/05/2013 21:30
Valerio
++++++++++++++++++
module test (alpha 8.1): bugfixed multiple cloze quesion
++++++++++++++++++
* modules/test/include/nodeTest.class.inc.php
* modules/test/include/questionMultipleCloze.class.inc.php
* modules/test/layout/ada_blu/css/index.css
* modules/test/layout/clear/css/index.css
* modules/test/layout/silver_gray/css/index.css
* modules/test/layout/standard/css/index.css
svn ada, ftp ada, ftp icon, ftp uems
09/05/2013 17:40
Giorgio
++++++++++++++++++
bug fix
++++++++++++++++++
* include/ama.inc.php
+ fixed bug in regexp at line 6726, it mached two digits only and gived back no match for the first 9 courses!
svn ada, ftp ada
09/05/2013 08:39
Valerio
++++++++++++++++++
module test (alpha 8.1): finished multiple slot cloze
++++++++++++++++++
* modules/test/include/questionMultipleCheck.class.inc.php
* modules/test/layout/ada_blu/css/index.css
* modules/test/layout/clear/css/index.css
* modules/test/layout/silver_gray/css/index.css
* modules/test/layout/standard/css/index.css
svn ada, ftp ada, ftp icon, ftp uems
08/05/2013 21:45
Valerio
++++++++++++++++++
module test (alpha 8.1): added a check. student score will never be more than max score
++++++++++++++++++
* modules/test/include/questionNormalCloze.class.inc.php
* modules/test/include/question.class.inc.php
* modules/test/layout/silver_gray/css/index.css
* modules/test/include/questionDragDropCloze.class.inc.php
* modules/test/layout/standard/css/index.css
* modules/test/layout/ada_blu/css/index.css
* modules/test/layout/clear/css/index.css
* modules/test/include/questionMultipleCloze.class.inc.php
* modules/test/include/questionSlotCloze.class.inc.php
* modules/test/include/questionOpenAutomatic.class.inc.php
* modules/test/include/questionStandard.class.inc.php
* modules/test/include/questionMediumCloze.class.inc.php
* modules/test/include/nodeTest.class.inc.php
* modules/test/include/questionEraseCloze.class.inc.php
* modules/test/include/questionSelectCloze.class.inc.php
* modules/test/include/questionLikert.class.inc.php
* modules/test/include/questionMultipleCheck.class.inc.php
svn ada, ftp ada, ftp icon, ftp uems
08/05/2013 10:25
Giorgio
++++++++++++++++++
what's new functionality
++++++++++++++++++
* browsing/user.php
+ bug fixed in whatsnew page
svn ada, ftp ada
08/05/2013 10:25
Giorgio
++++++++++++++++++
what's new functionality
++++++++++++++++++
* layout/ada_blu/css/browsing/user.css
+ added css file for whatsnew page rendering
* layout/clear/css/browsing/user.css
+ added css file for whatsnew page rendering
* layout/silver_gray/css/browsing/user.css
+ added css file for whatsnew page rendering
* layout/standard/css/browsing/user.css
+ added css file for whatsnew page rendering
svn ada, ftp ada
08/05/2013 0:20
Valerio
++++++++++++++++++
module test (alpha 8.1): development of last kind of exercise Multiple Cloze is nearly finished! missing student and tutor feedback
++++++++++++++++++
* modules/test/include/questionEraseCloze.class.inc.php
* modules/test/include/questionMultipleCloze.class.inc.php
* modules/test/include/questionSlotCloze.class.inc.php
* modules/test/layout/ada_blu/css/index.css
* modules/test/layout/clear/css/index.css
* modules/test/layout/silver_gray/css/index.css
* modules/test/layout/standard/css/index.css
svn ada, ftp ada, ftp icon, ftp uems
07/05/2013 07:37
Valerio
++++++++++++++++++
module test (alpha 8.1): refactored EraseCloze type edit form
++++++++++++++++++
* modules/test/include/management/questionManagementTest.inc.php
* modules/test/config/config.inc.php
* modules/test/include/forms/questionEraseClozeFormTest.inc.php
* modules/test/include/questionEraseCloze.class.inc.php
* modules/test/include/questionMultipleCloze.class.inc.php
* modules/test/include/forms/questionMultipleClozeFormTest.inc.php
svn ada, ftp ada, ftp icon, ftp uems
07/05/2013 00:01
Valerio
++++++++++++++++++
module test (alpha 8.1): development of last kind of exercise Multiple Cloze
++++++++++++++++++
* modules/test/config/config.inc.php
* modules/test/include/forms/answersMultipleClozeFormTest.inc.php
* modules/test/include/forms/questionMultipleClozeFormTest.inc.php
* modules/test/include/management/questionManagementTest.inc.php
* modules/test/include/questionEraseCloze.class.inc.php
* modules/test/include/questionMultipleCloze.class.inc.php
* modules/test/js/answers_multiple_cloze.js
* modules/test/layout/ada_blu/css/index.css
* modules/test/layout/clear/css/index.css
* modules/test/layout/silver_gray/css/index.css
* modules/test/layout/standard/css/index.css
svn ada, ftp ada, ftp icon, ftp uems
06/05/2013
Giorgio
++++++++++++++++++
what's new functionality
++++++++++++++++++
* browsing/user.php
+ whastnew page displays news from every course. fixed by adding an if condition at line 308
* include/ama.inc.php
+ changed logic and queries of get_new_nodes method of AMA_DataHandler class.
svn ada, ftp ada, svn ecm, ftp uems
06/05/2013 08:30
Valerio
++++++++++++++++++
module test (alpha 8): development of last kind of exercise: author mode is finished!
++++++++++++++++++
* modules/test/include/forms/answersMultipleClozeFormTest.inc.php
* modules/test/include/management/answersManagementTest.inc.php
* modules/test/include/questionMultipleCloze.class.inc.php
* modules/test/js/answers_multiple_cloze.js
* modules/test/js/dragdrop.js
* modules/test/js/jquery.typing.min.js
svn ada, ftp ada, ftp icon, ftp uems
05/05/2013 01:20
Valerio
++++++++++++++++++
module test (alpha 8): fixed bug on answer generation for EraseCloze and SlotCloze questions, development of last kind of exercise: author mode is nearly finished!
++++++++++++++++++
* modules/test/include/management/answersManagementTest.inc.php
* modules/test/include/questionEraseCloze.class.inc.php
* modules/test/include/questionMultipleCloze.class.inc.php
* modules/test/js/answers_cloze.js
* modules/test/js/answers_multiple_cloze.js
* modules/test/js/dragdrop.js
* modules/test/layout/ada_blu/css/index.css
* modules/test/layout/clear/css/index.css
* modules/test/layout/silver_gray/css/index.css
* modules/test/layout/standard/css/index.css
svn ada, ftp ada, ftp icon, ftp uems
04/05/2013 12:20
valerio
++++++++++++++++++
module test (alpha 8): fixed bug for exercise total point in latest cloze type exercise
bugfixed fkceditor media plugin ("OK" button was not working on chrome)
bugfixed missing semicolon on fkceditor clozemarker plugin
++++++++++++++++++
* external/fckeditor/editor/plugins/clozemarker/clozemarker.js
* external/fckeditor/editor/plugins/clozemarker/lang/en.js
* external/fckeditor/editor/plugins/clozemarker/lang/it.js
* external/fckeditor/editor/plugins/media/media.html
* external/fckeditor/editor/plugins/media/media.js
* modules/test/include/forms/controls/answerClozeControlTest.inc.php
* modules/test/include/forms/controls/answerControlTest.inc.php
* modules/test/include/forms/topicFormTest.inc.php
* modules/test/include/question.class.inc.php
svn ada, ftp ada, ftp icon, ftp uems
03/05/2013
graffio
+++++++++++++++++++++
Some fixex
+++++++++++++++++++++
* include/ama.inc.php
+ get_students_for_course_instance --> added ADA_SERVICE_SUBSCRIPTION_STATUS_COMPLETED
* include/Forms/CourseInstancedSubscriptionsForm.inc.php
+ added ADA_SERVICE_SUBSCRIPTION_STATUS_COMPLETED
svn ada, ftp uems
30/04/2013
giorgio
++++++++++++++++++
what's new functionality
++++++++++++++++++
* browsing/class_info.php
added file, copied from icon
* layout/*/templates/browsing/user.tpl
New template for showing what's new
* browsing/user.php
modified to show what's new info if user has subscribed to one course instance only or if a what's new link if user has subscried to multiple course instances.
* include/multiport.inc.php
added static public function count_new_notes(ADALoggableUser $userObj, $courseInstanceId)
added public function update_new_nodes_in_session ($userObj)
added public static function get_new_nodes($userObj, $courseInstanceId) get new nodes as an assoc array
added static public function checkWhatsNew (ADALoggableUser $userObj, $courseInstanceId)
* include/ama.inc.php
added count_new_notes_in_course_instances
added get_new_nodes
added get_updates_nodes
modified _edit_node to force updating of 'data_creazione' if needed
* services/include/NodeEditing.inc.php
added a checkbox in the form to force node to appear in whatsnew page
* services/include/editnode_funcs.inc.php
modified getNodeDataFromPost to read whatsnew checkbox
* include/user_class.inc.php
added protected member whatsnew in ADAUser class, with getter and setter
added updateWhatsNew method in ADAUserclass, to keep whatsnew array in sync with data from db
svn ada, ftp ada, svn ecm, ftp uems
29/04/2013
valerio
++++++++++++++++++
module test (alpha 8): fixed bug for exercise total point (author)
++++++++++++++++++
* modules/test/include/question.class.inc.php
+ it wasn't using the dedicated function getMaxScore().
svn ada, ftp ada, ftp icon, ftp uems
26/04/2013
graffio
++++++++++++++++++
some fixes in test
++++++++++++++++++
* modules/test/include/test_class.inc.php
+ commented part of mail to switcher in case of course completed. To be fixed
+ added parameter $level to course_instance_student_subscribe
+ $this->id_istanza = $sess_id_course_instance
Maybe we have to investigate more
* include/courses_classes.inc.php
+ modified get_class_reportFN in order to include also student with status = ADA_SERVICE_SUBSCRIPTION_STATUS_COMPLETED
* inclued/ama.inc.php
+ course_instance_students_presubscribe_get_list
get also students with status = ADA_SERVICE_SUBSCRIPTION_STATUS_COMPLETED
+ get_course_max_level
changed getValue in getOne
svn, ftp UEMS
24/04/2013
giorgio
++++++++++++++++++
print functionality
++++++++++++++++++
* browsing/view.php
modified print link
* browsing/print.php
new file, sames as view.php with delete unnecessary parts
* include/media_viewing_classes.inc.php
modified getViewer function to wrap returned html around a div element
* layout/*/css/browsing/print.css
new css files for printing
* layout/*/templates/browsing/print.tpl
new tpl files for outputting to the printer
22/04/2013
graffio
++++++++++++++++++
some changes in videoconference
++++++++++++++++++
* comunica/include/videochat_config.inc.php
changed room type
* comunica/include/videoroom_classes.inc.php
fixed in order to give tutor moderation
* comunica/include/videoroom_classes.inc.php
pass id_profile to room_access
ada svn
20/04/2013 21:56
Valerio
++++++++++++++++++
module test (alpha 8.1): advanced developing of last kind of exercise
++++++++++++++++++
* modules/test/include/forms/answersMultipleClozeFormTest.inc.php
* modules/test/layout/standard/css/answers.css
* modules/test/layout/ada_blu/css/answers.css
* modules/test/layout/clear/css/answers.css
* modules/test/js/answers_multiple_cloze.js
* modules/test/layout/silver_gray/css/answers.css
ada svn, ftp ada, ftp icon, ftp UEMS
20/04/2013 14:21
Valerio
++++++++++++++++++
module test (alpha 8): Fixed bug in isAnswerCorrect
++++++++++++++++++
* modules/test/include/questionDragDropCloze.class.inc.php
* modules/test/include/questionSlotCloze.class.inc.php
ada svn, ftp ada, ftp icon, ftp UEMS
18/04/2013
graffio (Valerio)
++++++++++++++++++
Fixed error in exercise correction
++++++++++++++++++
* modules/test/include/questionDragDropCloze.class.inc.php
fixed method exerciseCorrection
* modules/test/include/questionSelectCloze.class.inc.php
fixed method exerciseCorrection
svn, ftp UEMS
17/04/2013 09:10
graffio
++++++++++++++++++
varie modifiche: videochat, navigazione, traduzione registrazione utente
++++++++++++++++++
* comunica/include/comunica_functions.inc.php
+ Changes in order to make it compliant to new API of openmeetings
* comunica/include/videoroom_classes.inc.php
+ Changes in order to make it compliant to new API of openmeetings
* include/Forms/UserRegistrationForm.inc.php
+ added translation of countries
* include/Forms/nationList.inc.php
+ classes and array for countries list
* include/node_classes.inc.php
+ modified isNodeExercise in order to recognize ADA_PERSONAL_EXERCISE_TYPE
* include/exercise_classes.inc.php
+ modified construct in order to check if an exercise is repeatable or not
svn, ftp UEMS
05/04/2013 21:26
Valerio
++++++++++++++++++
updated module test (alpha 8): added ability to specify a minimum level for student
++++++++++++++++++
* include/user_class.inc.php
+ bugfixed: added default value for $dh parameter
* modules/test/include/forms/rootFormTest.inc.php
+ added ability to specify a minimum level for student
* modules/test/include/management/rootManagementTest.inc.php
+ added ability to specify a minimum level for student
* modules/test/include/root.class.inc.php
+ added ability to specify a minimum level for student
* modules/test/include/survey.class.inc.php
+ added ability to specify a minimum level for student
* modules/test/include/test.class.inc.php
+ added ability to specify a minimum level for student
svn ada, ftp ada, ftp icon, ftp uems
05/04/2013 21:26
Valerio
++++++++++++++++++
updated module test (alpha 8): changed global $dh; with $dh = $GLOBALS['dh'];
++++++++++++++++++
* modules/test/include/forms/questionFormTest.inc.php
* modules/test/include/forms/topicFormTest.inc.php
* modules/test/include/root.class.inc.php
* modules/test/include/management/switcherManagementTest.inc.php
* modules/test/include/management/managementTest.inc.php
* modules/test/include/management/rootManagementTest.inc.php
* modules/test/include/forms/switcherFormTest.inc.php
* modules/test/include/management/topicManagementTest.inc.php
* modules/test/include/management/questionManagementTest.inc.php
* modules/test/include/nodeTest.class.inc.php
* modules/test/include/questionCloze.class.inc.php
* modules/test/include/forms/answersMultipleClozeFormTest.inc.php
* modules/test/include/questionEraseCloze.class.inc.php
* modules/test/include/management/answersManagementTest.inc.php
* modules/test/include/forms/answersClozeFormTest.inc.php
* modules/test/include/test.class.inc.php
* modules/test/include/management/tutorManagementTest.inc.php
svn ada, ftp ada, ftp icon, ftp uems
>>>>>>> .r719
05/04/2013 09:10
Valerio
++++++++++++++++++
updated module test (alpha 8): added integration with ada custom exercise and module test
++++++++++++++++++
* browsing/exercise.php
* browsing/exercise_player.php
* modules/test/config/config.inc.php
* modules/test/include/forms/rootFormTest.inc.php
* modules/test/include/management/rootManagementTest.inc.php
* modules/test/include/root.class.inc.php
* modules/test/layout/ada_blu/css/index.css
* modules/test/layout/ada_blu/templates/index.tpl
* modules/test/layout/clear/css/index.css
* modules/test/layout/clear/templates/index.tpl
* modules/test/layout/silver_gray/css/index.css
* modules/test/layout/silver_gray/templates/index.tpl
* modules/test/layout/standard/css/index.css
* modules/test/layout/standard/templates/index.tpl
svn ada, ftp ada, ftp icon, ftp uems
04/04/2013
Graffio
++++++++++++++++++
Improve navigation panel
++++++++++++++++++
* include/node_classes.inc.php
--> get_mediaFN: added css class to the table
--> parseInternalLinkMedia: commented query_filter temporarily
* include/media_viewing_classes.inc.php
--> link: truncate file name in case length > 15
svn, uems. Va riportato nelle altre installazioni
02/04/2013
Graffio
++++++++++++++++++
Improve navigation panel
++++++++++++++++++
* include/node_classes.inc.php
--> get_linksFN: added css class to the table
svn, standard, uems. Va riportato nelle altre installazioni
29/03/2013 18:30
Valerio
++++++++++++++++++
updated module test (alpha 7.9): bugfixing
++++++++++++++++++
* layout/ada_blu/templates/header.tpl
* modules/test/ada_test_module.sql
* modules/test/include/forms/answersClozeFormTest.inc.php
* modules/test/include/forms/answersMultipleClozeFormTest.inc.php
* modules/test/include/forms/rootFormTest.inc.php
* modules/test/include/forms/topicFormTest.inc.php
* modules/test/include/management/rootManagementTest.inc.php
* modules/test/include/root.class.inc.php
* modules/test/js/answers_multiple_cloze.js
* modules/test/js/index.js
* modules/test/layout/ada_blu/img/add.png
* modules/test/layout/ada_blu/img/delete.png
* modules/test/layout/clear/img/add.png
* modules/test/layout/clear/img/delete.png
* modules/test/layout/silver_gray/img/add.png
* modules/test/layout/silver_gray/img/delete.png
* modules/test/layout/standard/img/add.png
* modules/test/layout/standard/img/delete.png
svn ada, ftp ada, ftp icon, ftp uems
29/03/2013 11:00
Valerio
++++++++++++++++++
updated module test (alpha 7.9): refactored some cloze functions, added file for "multiple" cloze execise (still to be implemented)
++++++++++++++++++
* modules/test/ada_test_module.sql
* modules/test/include/questionMultipleCloze.class.inc.php
* modules/test/include/forms/answersMultipleClozeFormTest.inc.php
* modules/test/include/questionSlotCloze.class.inc.php
* modules/test/include/questionEraseCloze.class.inc.php
* modules/test/include/management/answersManagementTest.inc.php
* modules/test/include/management/questionManagementTest.inc.php
* modules/test/include/questionCloze.class.inc.php
svn ada, ftp ada, ftp icon, ftp uems
29/03/2013 08:51
Valerio
++++++++++++++++++
moved media icon inside each layout folder
added user template variable to PHPjavascript.php
++++++++++++++++++
* external/fckeditor/editor/filemanager/connectors/php/config.php
* external/fckeditor/editor/plugins/media/media.js
* include/PHPjavascript.php
* layout/ada_blu/img/_exe.png
* layout/ada_blu/img/media_audio.png
* layout/ada_blu/img/media_doc.png
* layout/ada_blu/img/media_exe.png
* layout/ada_blu/img/media_img.png
* layout/ada_blu/img/media_linka.png
* layout/ada_blu/img/media_video.png
* layout/clear/img/_exe.png
* layout/clear/img/media_audio.png
* layout/clear/img/media_doc.png
* layout/clear/img/media_exe.png
* layout/clear/img/media_img.png
* layout/clear/img/media_linka.png
* layout/clear/img/media_video.png
* layout/silver_gray/img/_exe.png
* layout/silver_gray/img/media_audio.png
* layout/silver_gray/img/media_doc.png
* layout/silver_gray/img/media_exe.png
* layout/silver_gray/img/media_img.png
* layout/silver_gray/img/media_linka.png
* layout/silver_gray/img/media_video.png
* layout/standard/img/media_audio.png
* layout/standard/img/media_doc.png
* layout/standard/img/media_exe.png
* layout/standard/img/media_img.png
* layout/standard/img/media_linka.png
* layout/standard/img/media_video.png
removed files
* layout/img
* layout/img/_audio.png
* layout/img/_doc.png
* layout/img/_exe.png
* layout/img/_img.png
* layout/img/_linka.png
* layout/img/_video.png
svn ada, ftp ada
28/03/2013 16:35
Valerio
++++++++++++++++++
updated module test (alpha 7.9): last bug fixing
++++++++++++++++++
* modules/test/config/config.inc.php
* modules/test/include/forms/answersClozeFormTest.inc.php
* modules/test/include/forms/controls/answerControlTest.inc.php
* modules/test/include/forms/controls/answerHeaderControlTest.inc.php
* modules/test/include/forms/questionFormTest.inc.php
* modules/test/include/forms/topicFormTest.inc.php
* modules/test/include/management/questionManagementTest.inc.php
* modules/test/js/questionForm.js
svn ada, ftp ada, ftp icon, ftp uems
28/03/2013 15:46
Valerio
++++++++++++++++++
updated module test (alpha 7.9): bug fixing