forked from trampgeek/moodle-qtype_coderunner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
junk.txt
8253 lines (5602 loc) · 276 KB
/
junk.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
commit f6e18d680e2e0944daa6d6d24aac38b6c740860c
Author: Richard Lobb <[email protected]>
Date: Mon Sep 30 19:20:16 2019 +1300
Various refinements to ajax question loading capabilities.
commit e902839fb752500cc86b95005902bd6e37d381a5
Author: Richard Lobb <[email protected]>
Date: Sat Sep 28 22:06:17 2019 +1200
Bug fix - in debugging mode, a validation error when using a
combinator grader gives an error message.
commit fa51fddce9fdfd82f40749f310b5e928bb1643a3
Author: Richard Lobb <[email protected]>
Date: Fri Sep 27 10:41:49 2019 +1200
Disable previous and next buttons when not applicable.
commit 99e5678f3e8bb9c637ceed05efa9fe0dd0c17245
Author: Richard Lobb <[email protected]>
Date: Fri Sep 27 10:29:12 2019 +1200
Tidy up icpc contest question hack to use template parameter.
commit f73eef04586706949dc01262c8220eebcdd0112b
Merge: b55737f f94e2ae
Author: Richard Lobb <[email protected]>
Date: Thu Sep 26 14:18:00 2019 +1200
Pull in https update.
commit f94e2ae6ddbdbafe8442c54302536e9e1402feb0
Merge: 8b4a28e b4793e7
Author: Richard Lobb <[email protected]>
Date: Thu Sep 26 14:16:35 2019 +1200
Incorporate changes to accommodate https to Jobe (if it's behind a reverse proxy
to terminate the SSL connection)
commit b55737fe3ab0adb3e29bd7bc3b8e3adcc06c69fc
Author: Richard Lobb <[email protected]>
Date: Thu Sep 26 13:04:46 2019 +1200
Update Twig to the latest version of the 1.n branch. Delete various
rendundant 'require' statements from test code.
commit f52aa21f522dc01e783d16e87fdacef42320b59f
Author: Richard Lobb <[email protected]>
Date: Thu Sep 26 13:03:11 2019 +1200
Bug fix in renderer hack that switches to program contest mode.
commit b4793e746a1f06c54c8db1c92057971ad8f9f653
Merge: 75de237 6708335
Author: Richard Lobb <[email protected]>
Date: Thu Sep 26 10:41:12 2019 +1200
Merge pull request #83 from eviweb/fix-jobe-https
Allow CodeRunner to connect to Jobe using https, provided that Jobe is put behind a reverse proxy that can act as an SSL termination.
commit 6708335298264fd387fc7abe74141e723c88dbd5
Author: Eric Villard <[email protected]>
Date: Wed Sep 25 15:41:18 2019 +0200
fix: allow Jobe sandbox HTTPS protocol
By default the HTTP protocol of the Jobe sandbox was hardcoded.
In case the sandbox is deployed behind a reverse proxy, it's worth
letting admins the possibility to specify the HTTPS protocol.
This fix answers this issue.
Please note that the default behaviour remains unchanged.
Signed-off-by: Eric Villard <[email protected]>
commit f9655ec80b75f9b36ac297879eda8908365dcb81
Author: Richard Lobb <[email protected]>
Date: Wed Sep 25 17:49:56 2019 +1200
Remove clumsy-looking result-table appearance when using test0 to supply the gap-filler code.
commit bba78208b6a71b1d6266076253ef889e1e09f398
Author: Richard Lobb <[email protected]>
Date: Sun Sep 22 22:45:25 2019 +1200
Alpha version of enhancements to support domjudge problem-zip based
questions in which there is a single .zip support file containing a
problem.pdf file and Ajax is used to load that to show to the user.
commit 9ebfbb40a36ae0e22937ab17278c7103547c13a4
Author: Richard Lobb <[email protected]>
Date: Fri Sep 20 15:33:11 2019 +1200
Add the modified files
commit d8d004fa2515c4978bb70e490a7b8a37ea5d1cd1
Author: Richard Lobb <[email protected]>
Date: Fri Sep 20 15:32:20 2019 +1200
Experimenting with a web service for access to problem description
commit f0c09abd0e0de1752a2030f97b1ab0c6a020a536
Author: Richard Lobb <[email protected]>
Date: Fri Sep 20 15:30:00 2019 +1200
Style tweaks to ui_gapfiller and re-grunting.
commit 8b4a28e1e6ceae8ed6654afc396e7f8d70091b7a
Merge: 4c5e564 75de237
Author: Richard Lobb <[email protected]>
Date: Sun Sep 15 21:59:35 2019 +1200
Merge branch 'master' of https://github.com/trampgeek/moodle-qtype_coderunner
(bringing in pull request from Eric Villard to fix missing hideIf call in
Moodle versions prior to 3.4).
commit 75de23766fa6c2517c4642d115c9fe3815e11604
Merge: 3e24eb8 f0da28a
Author: Richard Lobb <[email protected]>
Date: Sun Sep 15 21:58:48 2019 +1200
Merge pull request #82 from eviweb/fix-mdl32-mform
Fix missing `MoodleQuickForm::hideIf` method for Moodle versions < 3.4
commit ce3f4977d51ca862b71fc417e2ab70a9c0ae1ae2
Author: Richard Lobb <[email protected]>
Date: Sun Sep 15 21:19:16 2019 +1200
Bug fix: when a prototype question is deleted, any children of that prototype
must be notified. They're probably broken anyway but at least this
ensures behaviour consistent with the state of the database, and is
required to prevent spurious errors when a duplicated prototype is
deleted.
commit 57c81d6052165ade15ebc3834ff305138aa4613a
Author: Richard Lobb <[email protected]>
Date: Sun Sep 15 21:15:45 2019 +1200
Improve documentation of bulkquestiontester script.
commit f0da28a7dcdf20c8f4a8506ed36c5506bc01d924
Author: Eric Villard <[email protected]>
Date: Thu Sep 12 14:46:31 2019 +0200
Fix missing MoodleQuickForm::hideIf method for Moodle versions < 3.4
MoodleQuickForm does not provide any hideIf method for Moodle versions < 3.4.
This fix uses the disabledIf method in replacement for these versions.
It does not alter the default behaviour for Moodle versions >= 3.4.
Signed-off-by: Eric Villard <[email protected]>
commit 5d7e9ffd092752b4a00bb9b7a5f28de21868d71f
Author: Richard Lobb <[email protected]>
Date: Wed Aug 21 22:22:14 2019 +1200
Fix broken nodejs prototype (which worked only by falling back to
per-test testing).
commit dc1a1c38bc15a692f9cebd9f89555deea98fa18a
Author: Richard Lobb <[email protected]>
Date: Wed Aug 21 15:53:24 2019 +1200
Various extensions to gapfiller-ui, including the ability to optionally
take the HTML source from the first testcase's test code.
commit bed60e6a93efa87d29f9b6e4b5d38076dd21eeec
Author: Richard Lobb <[email protected]>
Date: Sun Aug 18 22:31:07 2019 +1200
Alpha version of ui_gapfiller.
commit 5f37a8fe75810f5f4e7aeb6339adcc7b49b51bdd
Author: Richard Lobb <[email protected]>
Date: Sat Aug 17 23:00:22 2019 +1200
Update minimised authorform.js.
commit 38ce4be25aede7b20ff1a843da0bf90c5ad78241
Author: Richard Lobb <[email protected]>
Date: Sat Aug 17 22:59:54 2019 +1200
Refactor how Twig expansion is applied in order to make use of
Twig macros.
commit df26755de7db55e153e1fca3d77db468f65a8a7e
Author: Richard Lobb <[email protected]>
Date: Sat Aug 17 22:59:10 2019 +1200
Define a set of Twig macros for use with the HTML UI.
commit 8f2fc7d21e2c66c24046cb3c8cf9ea62496e81a1
Author: Richard Lobb <[email protected]>
Date: Sat Aug 17 22:57:53 2019 +1200
If HTML UI plugin is in use, don't use it in the question authoring form.
commit b14361764b79b4fbf3df3491cfba204c699ada20
Author: Richard Lobb <[email protected]>
Date: Sat Aug 17 22:57:01 2019 +1200
First draft of documentation of HTML UI plugin.
commit 10c181dba05faed882fc923fb17f56f85c1af644
Author: Richard Lobb <[email protected]>
Date: Sat Aug 17 13:22:14 2019 +1200
First draft of documentation of HTML UI plugin.
commit c7d3a2b053b568addfe3bb51d8fb3159c2fed4a2
Author: Richard Lobb <[email protected]>
Date: Thu Aug 15 17:56:33 2019 +1200
Improve documentation of template parameters.
commit 15abc801122e9680bcec5c2577471cab14075d61
Author: Richard Lobb <[email protected]>
Date: Wed Aug 14 15:07:57 2019 +1200
Lots of minor tweaks to satisfy the codechecker.
commit 4c5e564ea49fa9a0ee31abdb7b39144103281e65
Author: Richard Lobb <[email protected]>
Date: Wed Aug 14 14:15:45 2019 +1200
Update version number and change history.
commit 871b655fa9402149df53e99c6ed4748ed921ba75
Author: Richard Lobb <[email protected]>
Date: Wed Aug 14 14:08:30 2019 +1200
Update documentation on Table UI. Rebuild TOC
commit 9f5b0451cdb6a8172b5c52e9f0e8ca14f4e30c12
Author: Richard Lobb <[email protected]>
Date: Mon Aug 12 21:29:21 2019 +1200
Add minimised versions of UI plugins
commit ec0698b383ecb545c905e42418e6e1f8fd515ac4
Author: Richard Lobb <[email protected]>
Date: Mon Aug 12 17:12:56 2019 +1200
Bug fix: UI plugins that depended on the template parameters, such
as the table UI, broke if Twig code was inserted into the template
parameters.
commit 4c5aac4e47c6bae98384934e1c4bd4cc9b7be092
Author: Richard Lobb <[email protected]>
Date: Mon Aug 12 17:02:20 2019 +1200
Code tidying: provide a static render method in the Twig class.
commit 02eedeb7b28b438b9596c83fdb362cc9c0a38c59
Author: Richard Lobb <[email protected]>
Date: Mon Aug 12 17:01:49 2019 +1200
Don't try merging template and prototype template parameters if
the prototype template parameter field is empty. This allows
Twigged template parameters to pass through the merge unscathed.
commit d4f339cb89a2eaa490f40af4c09447ecc35d507f
Author: Richard Lobb <[email protected]>
Date: Mon Aug 5 21:54:10 2019 +1200
Add data-globalextra attribute to all answer fields in order to
pass data into UI via the globalextra field (if desired).
Update ui_html to get answer-box HTML from the globalextra field.
commit e7554a53347f565a613f026d4be3aac2b1ffb9dc
Author: Richard Lobb <[email protected]>
Date: Mon Aug 5 19:57:30 2019 +1200
Add globalextra field for general purpose use by template editors.
commit e7c78a2b97470d7da5f2bd8880fc9c3074d007db
Author: Richard Lobb <[email protected]>
Date: Mon Aug 5 17:36:29 2019 +1200
Refactor table_ui.
commit 9317f309ddfe07093ae385761264c3576f684478
Author: Richard Lobb <[email protected]>
Date: Mon Aug 5 17:36:11 2019 +1200
Document new table_ui features.
commit 491882b5b15401036a00a2b7dbbccc5012284393
Author: Richard Lobb <[email protected]>
Date: Sat Aug 3 11:46:30 2019 +1200
Add row-label option to table UI
commit 3e24eb8df6a87c7da006a6c9864631818e5b1868
Author: Richard Lobb <[email protected]>
Date: Sun Jul 28 21:57:42 2019 +1200
Update change history and version date.
commit 7f8806e8f80571d242701a4cf7f00665f17a8d98
Author: Richard Lobb <[email protected]>
Date: Sun Jul 28 20:47:40 2019 +1200
Bug fix: attaching files after submitting a question without attachments gave a runtime error
commit c99f07f388f7b5897f93a4702621d6b5c8007ebb
Author: Richard Lobb <[email protected]>
Date: Sat Jul 27 10:02:49 2019 +1200
Document QUESTION.answerpreload and correct the documentation of the
ANSWER_LANGUAGE variable.
commit 0ad90948e2b77fcd93cdf9351a7a6203da527724
Author: Richard Lobb <[email protected]>
Date: Sat Jul 27 09:27:41 2019 +1200
Add table_locked_cells template parameter to Table UI.
commit 25ad36a83e8792458957ab0d2518a33a6f4210d1
Author: Richard Lobb <[email protected]>
Date: Thu Jul 25 11:35:09 2019 +1200
Bug fix: student file attachments don't work in conjunction with
author-supplied support files .
commit 1a8ffd6ba0c16b7a288a3cb0848ccd698e6578ff
Author: Richard Lobb <[email protected]>
Date: Mon Jul 22 22:10:11 2019 +1200
Typo in documentation.
commit 12d285e20b64fded971c785958c8120c887c9de0
Author: Richard Lobb <[email protected]>
Date: Mon Jul 22 20:39:44 2019 +1200
Update documentation to version 3.6.1.
commit d5dc1de1f3f405931386f5eee033ed8390a56ce0
Author: Richard Lobb <[email protected]>
Date: Mon Jul 22 20:38:30 2019 +1200
Bug fix: ensure child copy of a file overrides prototype file with
the same name.
commit cfaa77f45a9672e3b6d08b048c1a430f92332df1
Merge: 41d6003 9a8e80e
Author: Richard Lobb <[email protected]>
Date: Sun Jul 21 23:06:07 2019 +1200
Merge branch 'master' into development
commit 9a8e80e639db674af8d5259dc35e60538e906127
Author: Richard Lobb <[email protected]>
Date: Sun Jul 21 20:41:44 2019 +1200
Remove two dangerous scripts from repo.
commit 64654218cb4f75cce7d9b2a2c2f3590d60d19cb8
Author: Richard Lobb <[email protected]>
Date: Sat Jul 20 11:34:27 2019 +1200
Update change history and version number.
commit 41d60034a45acfdb1f8c2631438d2ebfe537cfb8
Author: Richard Lobb <[email protected]>
Date: Sat Jul 20 11:34:27 2019 +1200
Update change history.
commit e7cfc2b35fea6ed4a4647a432d5999af12103fe0
Author: Richard Lobb <[email protected]>
Date: Sat Jul 20 11:16:48 2019 +1200
Add behat tests for table UI
commit 052c87f5af4ae263129c322695d8e8c241918b8c
Author: Richard Lobb <[email protected]>
Date: Sat Jul 20 11:07:56 2019 +1200
Add behat test for table UI
commit c35932f0b3a8954b29021864c588791cc72d69e7
Merge: f8877f2 b050d13
Author: Richard Lobb <[email protected]>
Date: Fri Jun 21 21:46:28 2019 +1200
Merge branch 'master' into development
commit b050d13358e532692152704ccfdfce44230dd029
Merge: 4fbc65c 13016ee
Author: Richard Lobb <[email protected]>
Date: Fri Jun 21 21:41:17 2019 +1200
Merge branch 'master' of https://github.com/trampgeek/moodle-qtype_coderunner
commit 13016eee92203b8d195af54bd57c98d4b1cb1d57
Merge: e333b29 be39296
Author: Richard Lobb <[email protected]>
Date: Fri Jun 21 21:38:49 2019 +1200
Merge pull request #77 from mkassaei/XMLDB-default
Coderunner: Inconsistent database defaults (XMLDB Check defaults)
commit be39296f1f02b09303730fd83ce3e5a9947e733a
Author: M Kassaei <[email protected]>
Date: Thu May 16 17:18:14 2019 +0100
Coderunner: Inconsistent database defaults (XMLDB Check defaults)
commit f8877f24101c5cf3a61088a4da5ba10632648996
Author: Richard Lobb <[email protected]>
Date: Mon May 13 19:41:57 2019 +1200
Update documentation of graph questions
commit b5f74308502f69d32ea00e53e5e94152b1ee5cd7
Author: Richard Lobb <[email protected]>
Date: Mon May 13 16:14:40 2019 +1200
Add "locknodes" and "lockedges" template params to GraphUI
commit 0574a784a649b45753bf9da6d3fbc886148f1a60
Merge: 85a60ea 4fbc65c
Author: Richard Lobb <[email protected]>
Date: Wed May 1 22:09:40 2019 +1200
Merge branch 'master' into development
commit 4fbc65c2f4b0f1198742f194a434025891555695
Merge: fed05b4 e333b29
Author: Richard Lobb <[email protected]>
Date: Wed May 1 22:09:18 2019 +1200
Merge branch 'master' of https://github.com/trampgeek/moodle-qtype_coderunner
commit 85a60eaf775f765b5f0e70c45042873597a8ad55
Author: Richard Lobb <[email protected]>
Date: Wed May 1 22:08:55 2019 +1200
Commit minified JavaScript files.
commit e333b29f1a46be633d9f52d372c35326b7db5a8a
Merge: fa66e8a b47ab6f
Author: Richard Lobb <[email protected]>
Date: Wed May 1 22:03:48 2019 +1200
Merge pull request #75 from lszeremeta/patch-1
Small fixes in language file
commit fa66e8a726bca3563f61bc66e50cabbfc8f3f473
Merge: 519b054 e5616a5
Author: Richard Lobb <[email protected]>
Date: Wed May 1 21:59:46 2019 +1200
Merge pull request #76 from imarichev/master
Fix snip method for propper multibyte string support #73
commit 037d7fd963dac6739b05547d89c1e97f5b057d52
Author: Richard Lobb <[email protected]>
Date: Fri Apr 26 14:37:10 2019 +1200
Code tidying - remove redundant variable and fix comments.
commit af8285ae62e459af236d0c0f754e62c905d5eb6c
Author: Richard Lobb <[email protected]>
Date: Fri Apr 26 14:33:55 2019 +1200
Disable accept state unless isfsm is true.
commit e5616a59c26b8e2cea1a9fce476876d91d193bf1
Author: Ivan Marichev <[email protected]>
Date: Wed Apr 24 16:19:32 2019 +0300
Fix snip method for propper multibyte string support #73
commit b47ab6fe71fccd62d9e5f1710a8ad71a9ebd9cce
Author: Łukasz Szeremeta <[email protected]>
Date: Sun Apr 21 18:15:25 2019 +0200
Add missing </p> in qtype_java_method
commit b0a868f191ba8f07b15f834c2152516d9700802a
Author: Łukasz Szeremeta <[email protected]>
Date: Sun Apr 21 17:30:39 2019 +0200
Missing </p> in qtype_c_function
commit 330bf83be2f40342e6318e5978957a8c6852b7ba
Author: Łukasz Szeremeta <[email protected]>
Date: Sun Apr 21 16:36:02 2019 +0200
"more than *one* language" in languages_help
commit ffcab47b6163ec34fd7079e6d6066118484d8bf1
Author: Richard Lobb <[email protected]>
Date: Tue Apr 16 16:18:13 2019 +1200
Tweak a couple of constants to position edge labels closer to their
edges.
commit 186906491b80ab30349a49fe4f593523bfb64091
Author: Richard Lobb <[email protected]>
Date: Wed Apr 10 22:25:27 2019 +1200
More refactoring to pass template parameters via textarea data- attributes
rather than as JavaScript parameters.
commit 79d5c234d40efe831936d2ff37ecdc4f6035e273
Merge: d123d58 fed05b4
Author: Richard Lobb <[email protected]>
Date: Sun Apr 7 07:59:07 2019 +1200
Merge branch 'master' into development
commit d123d5883d58f67c044f72cd80beebb9115dfb6f
Author: Richard Lobb <[email protected]>
Date: Sun Apr 7 07:58:41 2019 +1200
Refactoring to pass template parameters via textarea data- attributes
rather than as JavaScript parameters (on-going).
commit 75846581805a3eaf77ded5bfcbb4a6522229c244
Author: Richard Lobb <[email protected]>
Date: Sat Apr 6 15:37:42 2019 +1300
Extend graphui tool to allow dragging of entire connected (sub)graphs
by holding down ALT during drag.
commit 519b054bafb4e913ccc64ae1fe88e9c2128d935a
Merge: bedf276 a8f297b
Author: Richard Lobb <[email protected]>
Date: Sat Apr 6 13:21:27 2019 +1300
Merge pull request #72 from timhunt/master
Just updating install instructions
commit fed05b4327f103c320bfd600bdc4e31b872ed7c0
Author: Richard Lobb <[email protected]>
Date: Sat Apr 6 10:56:43 2019 +1300
Add test for (not-yet-implemented) triple-quoted string extension to
template-parameter JSON.
commit 798c2adbe9892fd77dd423fb3f585f2477caf9f4
Author: Richard Lobb <[email protected]>
Date: Sat Apr 6 10:53:45 2019 +1300
Stub implementation of normalise_json method. Does nothing.
commit 0d96f810e7b7606806d36a09a2fb121528547a28
Author: Richard Lobb <[email protected]>
Date: Sat Apr 6 10:50:02 2019 +1300
Add actual question text to download (so can determine what form
of randomised question a student received).
commit a8f297b5fce0b22b58a6e13f4d56e6ea800894bd
Author: Tim Hunt <[email protected]>
Date: Thu Apr 4 11:41:27 2019 +0100
Just updating install instructions
commit bf529cce81994674250d95fd9b52d9e1bc7155f4
Merge: 04ff973 7390467
Author: Richard Lobb <[email protected]>
Date: Fri Mar 29 18:22:25 2019 +1300
Merge branch 'master' into development
commit 7390467fbbe4cb76584fad0656578aab31bc8288
Author: Richard Lobb <[email protected]>
Date: Sun Mar 10 22:28:24 2019 +1300
Suppress result summary on precheck.
commit bedf276f2c4bef2c5eebc3dda3a30061290174ca
Author: Richard Lobb <[email protected]>
Date: Tue Feb 26 15:58:05 2019 +1300
Bug fix (regression): the 'Reset answer' button was not working
correctly with the TableUI.
commit d28c7b221e55e1dea64d18cfcc289fa06f799785
Author: Richard Lobb <[email protected]>
Date: Sun Feb 24 09:46:39 2019 +1300
Fix regression from last commit: a single comma separator in the penalty
regime without a following space was not being accepted.
commit bd2220aa64f0bab1c9aaf7932bab9a834e3f6ba0
Author: Richard Lobb <[email protected]>
Date: Sat Feb 23 19:16:33 2019 +1300
Improve detection of syntax errors in penalty regime and extend syntax to
allow space separators instead of commas.
commit a04fa5cd5a92f396e6a2e15e7dab99bbddff4ba0
Merge: f4f9a51 1a9e997
Author: Richard Lobb <[email protected]>
Date: Sat Feb 23 18:49:57 2019 +1300
Merge branch 'master' of https://github.com/trampgeek/moodle-qtype_coderunner
commit f4f9a5145d1f122dd468086e1c9e79c6d9784d35
Author: Richard Lobb <[email protected]>
Date: Sat Feb 23 14:19:23 2019 +1300
Improve detection of syntax errors in penalty regime and extend syntax to
allow space separators instead of commas.
commit 1a9e99707041a060f6e8050b47458759e16bca95
Author: Richard Lobb <[email protected]>
Date: Thu Feb 21 16:59:13 2019 +1300
Update Readme.md
Fix bug in randomisation code example within Readme.md
commit 758c9495e406ec978eac70b0bef50198eaea3905
Author: Richard Lobb <[email protected]>
Date: Wed Feb 20 22:04:21 2019 +1300
Update change history.
commit 1e10a9cc48ff0870dc97d613ff0fb42c10b71f36
Merge: 26070c5 fbb06b5
Author: Richard Lobb <[email protected]>
Date: Wed Feb 20 22:01:14 2019 +1300
Merge updated documentation from github.
commit fbb06b512a89018d9227a4936b6074d5baf32bd4
Author: Richard Lobb <[email protected]>
Date: Wed Feb 20 22:00:08 2019 +1300
Add a couple of links to youtube videos.
commit 26070c5b00d7696b8924cf854ae4ea6ede108b49
Author: Richard Lobb <[email protected]>
Date: Fri Feb 15 15:41:47 2019 +1300
Document how to set linkargs in c_program question type.
commit c4cd9795f308c9278154036518509c73064f46a2
Author: Richard Lobb <[email protected]>
Date: Fri Feb 15 13:34:25 2019 +1300
Fix grunt errors; make minimised versions of modified .js files.
commit a85064a07bcc309b0b437f8e14621ce90a89ae39
Author: Richard Lobb <[email protected]>
Date: Fri Feb 15 13:10:53 2019 +1300
Correct version number date.
commit ddd0a5dd3a8776d45a2d67a1dd4de2437d2cd3eb
Author: Richard Lobb <[email protected]>
Date: Fri Feb 15 13:04:10 2019 +1300
Stop the annoying flashing of the GraphUI help screen.
commit 3baba3f97b9486fd22289f2ce0baaf2c5bbce331
Merge: b9d4e65 392035e
Author: Richard Lobb <[email protected]>
Date: Thu Feb 14 22:13:28 2019 +1300
Merge branch 'master' of https://github.com/trampgeek/moodle-qtype_coderunner
(adds Tim's CSS updates for codebox sizing).
commit 392035ea45b04f2969b0aa8c620858a1ff6302ad
Merge: 6c68f3b 12f05dd
Author: Richard Lobb <[email protected]>
Date: Thu Feb 14 22:11:00 2019 +1300
Merge pull request #70 from timhunt/master
Styling improvements for input areas
commit 12f05ddbfae0bc80b4df394b10393ebd1f7d54e9
Author: Tim Hunt <[email protected]>
Date: Wed Feb 13 13:50:45 2019 +0000
Styling improvements for input areas
It turns out that width 100% does not do exactly what one wants (make
the input as big as possible, but fit) because CSS box model. Adding
box-sizing: border-box; makes it work as expected.
commit b9d4e65fff068a28707c510328b89b67c9bea5a0
Author: Richard Lobb <[email protected]>
Date: Sat Feb 2 11:29:17 2019 +1300
Minor documentation tweaks.
commit 6c68f3b47383cc53dee2787c703265913a706827
Author: Richard Lobb <[email protected]>
Date: Sat Feb 2 11:19:42 2019 +1300
Fix broken table-of-contents link
commit 2212d6c958801860d8008486c6337f65a2a57226
Author: Richard Lobb <[email protected]>
Date: Sat Feb 2 11:14:07 2019 +1300
Documentation tweak.
commit 410f8a06ef1f33fa52b7656049e8e0bd613eed3e
Author: Richard Lobb <[email protected]>
Date: Wed Jan 30 21:22:29 2019 +1300
Update change history to reflect recent changes in v3.6.0 prior to
push.
commit 2c55fc28ecdcb41dd6d5630d45e88c38f001f79b
Author: Richard Lobb <[email protected]>
Date: Wed Jan 30 20:37:40 2019 +1300
Update timestamp to date when v3.6.0 pushed.
commit 04ff97304788ebd66384d1422dbb7e7b7339c505
Author: Richard Lobb <[email protected]>
Date: Wed Jan 30 19:52:33 2019 +1300
Delete unwanted junk.log file
commit f835c93b2ea460982a42d6d17fc916d690d2745c
Merge: b4e5b7f 8040108
Author: Richard Lobb <[email protected]>
Date: Wed Jan 30 19:50:03 2019 +1300
Merge branch 'master' of https://github.com/trampgeek/moodle-qtype_coderunner
commit b4e5b7f62468146294ae951516e8427be876d885
Author: Richard Lobb <[email protected]>
Date: Wed Jan 30 19:41:12 2019 +1300
Remove unwanted file
commit f5179dcf9ed705f228439ddc0d156afa6667f2e5
Author: Richard Lobb <[email protected]>
Date: Sat Jan 26 19:52:23 2019 +1300
Delete unwanted old copy of version.php
commit 34399c7e463b331f6a750ff52d29037efab8d0d2
Merge: cfe82ee 24fde19
Author: Richard Lobb <[email protected]>
Date: Sat Jan 26 19:46:12 2019 +1300
Merge branch 'development'
commit 24fde195e0248cc6437d89296b3f015c40c9c8a3
Author: Richard Lobb <[email protected]>
Date: Sat Jan 26 19:40:20 2019 +1300
Deleting unwanted file
commit f8a2a0993d72a7459b27655a9c49ba45f23586be
Author: Richard Lobb <[email protected]>
Date: Sat Jan 26 19:26:02 2019 +1300
Fix bug in Missing Prototype error message.
commit 8040108f9adcf156f1aa3a3f50d856ab8c817c78
Merge: 032b718 6137b17
Author: Richard Lobb <[email protected]>
Date: Fri Jan 18 09:27:55 2019 +1300
Merge pull request #69 from timhunt/master
Remove file that shoudl not be there
commit 6137b17b66a75a7da0125c4f9d54f70f94f45c41
Author: Tim Hunt <[email protected]>
Date: Thu Jan 17 12:54:28 2019 +0000
Remove file that should not be there
commit 4258eaf5c6987599f1c41285c52e51b5b12560e0
Author: Richard Lobb <[email protected]>
Date: Tue Jan 15 20:27:56 2019 +1300
Change version number and update change history for version 3.6.0.
commit 2c7adae26940280ef0867a060d5580acced5e263
Author: Richard Lobb <[email protected]>
Date: Tue Jan 15 20:27:22 2019 +1300
Improve display of the instructions from the question author to
the student as to what files can/should be attached.
commit 3b8b49e83e3e12728585b37bd7e7782cb7dd42de
Author: Richard Lobb <[email protected]>
Date: Mon Jan 14 20:47:17 2019 +1300
Document {{ ATTACHMENTS }} Twig variable and strengthen the file-space
warning on attachments.
commit 8dcee2745eca8863c093e6cc46a8d97f35ce448a
Author: Richard Lobb <[email protected]>
Date: Mon Jan 14 20:41:20 2019 +1300
Correct bug in handling of attachments so that if a student changes
only the contents of their attachments they still get regraded.
commit fabc4b5f411aa0a89741d0d014a993a63549cf7f
Author: Richard Lobb <[email protected]>
Date: Mon Jan 14 20:40:46 2019 +1300
Tag Attachment Options as "Experimental"
commit 68bd73f4a7e00693e9df9191e1d83e1ebdb8fde5
Author: Richard Lobb <[email protected]>
Date: Sun Jan 13 22:05:02 2019 +1300
Add tests for displayfeedback settings in question.
commit a614570473ce812a2ad91d0d7bde4044e7bf286c
Author: Richard Lobb <[email protected]>
Date: Sun Jan 13 22:04:30 2019 +1300
Minor polishing.
commit 877eb18b85ed099b79318d8794ec40e75642a707
Author: Richard Lobb <[email protected]>
Date: Sun Jan 13 13:33:22 2019 +1300
Fix two minor test failures.
commit f0046314c1793872fc349ec49dd74be989cfa704
Author: Richard Lobb <[email protected]>
Date: Sun Jan 13 11:52:57 2019 +1300
Minor tweaks to attachment and feedback settings and documentation.
commit 73b95e537c1ff3976bc2cd1766af839244c9f9af
Author: Richard Lobb <[email protected]>
Date: Sun Jan 13 10:58:42 2019 +1300
Change name, description and value for FEEDBACK_USE_DEFAULT to reflect
that the setting is determined by the quiz.
commit 2c2f35c2d47d4425eb535e082e84ad17e1265d99
Author: Richard Lobb <[email protected]>
Date: Fri Jan 11 21:40:15 2019 +1300
Various bug fixes to ensure all PHP unit and behat tests pass.
commit d6f3f65f6641a20324a2a3f08e0be993318160a2
Author: Richard Lobb <[email protected]>
Date: Mon Jan 7 20:25:26 2019 +1300
Update version date.
commit e40ccab7754be1dd044b76fbd99d705d804972d9
Author: Richard Lobb <[email protected]>
Date: Mon Jan 7 17:36:00 2019 +1300
Tweak multilanguage question type so Java's memory requirements are
reduced from utterly insane to merely insane.
commit 1835196430ee85a32373e089105a98d5c8cc3f42
Author: Richard Lobb <[email protected]>
Date: Mon Jan 7 14:38:45 2019 +1300
Fix more typos introduced in last commit.
commit 33c2d0ccd6437a9ab6945e5cd8f4adde5cbaf694
Author: Richard Lobb <[email protected]>
Date: Mon Jan 7 14:14:21 2019 +1300
Refine filename checking on student attachments to avoid name conflicts
with support files. Also prohibit filenames starting with double
underscore.
commit 12b3217959b38ab147b7f533e3be9fcd69a2f778
Author: Richard Lobb <[email protected]>
Date: Mon Jan 7 14:11:59 2019 +1300
Deduce java class and source file name here rather than leaving it to
the Jobe server (which requires the legacy name prog.java).
commit 7d7cb210779756f78039df087f4e03d2cd1c10f0
Author: Richard Lobb <[email protected]>
Date: Mon Jan 7 14:10:31 2019 +1300
Fix syntax error in Java method test, typo introduced in last commit.
commit 9dec5a032c3178eb1ceb57afa7f96ee78dddf6f5
Author: Richard Lobb <[email protected]>
Date: Mon Jan 7 12:24:48 2019 +1300
Change default menu entry for Feedback Display field.
commit b71b5e4d58e70467571523d4631db30e0d2361ed
Author: Richard Lobb <[email protected]>
Date: Mon Jan 7 12:16:09 2019 +1300
Update documentation on allowed attachment filenames.
commit 0ac6a06c081a3c7240ffb05e66a71f7803105bcc
Author: Richard Lobb <[email protected]>
Date: Mon Jan 7 12:15:30 2019 +1300
Change various question types to conform to the new convention
that question test files should all start with double underscore.
commit f28be3385fce86f999717239cb0a33df83a4b906
Author: Richard Lobb <[email protected]>
Date: Sun Jan 6 20:32:59 2019 +1300
Change task filename from prog to __tester__ for clarity and to
reserve filenames starting with double underscores for question
test files.
commit 68ad0348f3c31bcbbfd16fd219b7740a1c5048f0
Author: Richard Lobb <[email protected]>
Date: Fri Jan 4 20:53:06 2019 +1300
Add section documentating multilanguage questions.
commit 8b0b476b6343f47f668ea3fc294c900f94f8f1d2
Author: Richard Lobb <[email protected]>
Date: Fri Jan 4 20:52:42 2019 +1300
Fix broken documentation of multilanguage questions.
commit 490397d72b1abefc89c6f8b38341f3c7ef0f19d3
Author: Richard Lobb <[email protected]>
Date: Fri Jan 4 20:40:13 2019 +1300
Fix typo in name of BUILT_IN_PROTOTYPE_multilanguage
commit 1ec244f72a8519eda8ac22a6954d6e56cd1aa31d
Author: Richard Lobb <[email protected]>
Date: Fri Jan 4 19:58:28 2019 +1300
Document missing functionality (can't bulk test questions with
sample answer attachments).
commit 6e95cd11fab43860baac0de4bb5fbd2e6f3cbbdd
Author: Richard Lobb <[email protected]>
Date: Fri Jan 4 19:57:12 2019 +1300
Add fixtures for behat testing of attachment mechanism.
commit 8efdd9249bb480b98be1fcd77f351e54a0cb769d
Author: Richard Lobb <[email protected]>
Date: Fri Jan 4 19:56:16 2019 +1300
Extend question import/export to handle questions with sample answer
attachments.
commit 642f59db42866d635a78d0c5f3ee6579e0f7b8fd
Author: Richard Lobb <[email protected]>
Date: Fri Jan 4 19:55:33 2019 +1300
Bug fixes for new attachment mechanism.
commit f36587bc00da50b618fb45474a22c19d4fcdbded
Author: Richard Lobb <[email protected]>
Date: Fri Jan 4 19:54:08 2019 +1300
Tweak renderer so Behat can correctly identify filemanager element.
commit 71296ac11a596252820ebfcb2786110f297e5b11
Author: Richard Lobb <[email protected]>
Date: Fri Jan 4 19:53:12 2019 +1300
Tests for new student attachment capability.
commit 74d8d473e8182b014ac885d39731aaca4df55409
Author: Richard Lobb <[email protected]>
Date: Fri Jan 4 19:52:27 2019 +1300
Update tests to latest version of Moodle/behat test framework.
commit d3b6146bddca2f7dd595d15e9cf148addf4d0355
Author: Richard Lobb <[email protected]>
Date: Thu Jan 3 19:42:36 2019 +1300
Fix spurious references to the Stack plugin.
commit 0404333971064f84d8a3c07e3525654e5273d7d5
Author: Richard Lobb <[email protected]>
Date: Mon Dec 10 18:09:00 2018 +1300
Add per-question control of result table display.
commit 3771f01dc207bd865d3ad756dee86b3773beaf7e
Author: Richard Lobb <[email protected]>
Date: Wed Dec 5 22:11:15 2018 +1300