-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
12823 lines (9614 loc) · 695 KB
/
ChangeLog
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
------------------------------------------------------------------------
r3468 | andlov | 2018-01-04 05:13:47 +0100 (Thu, 04 Jan 2018) | 1 line
Replaced proprietary license with GPL2. Preparing for release 2.2.0 of openexam-online.
------------------------------------------------------------------------
r3467 | andlov | 2018-01-04 02:02:51 +0100 (Thu, 04 Jan 2018) | 1 line
Bumped project version.
------------------------------------------------------------------------
r3466 | andlov | 2018-01-04 01:42:24 +0100 (Thu, 04 Jan 2018) | 1 line
Renamed project openexam-php -> openexam-online to better reflect its function and purpose.
------------------------------------------------------------------------
r3465 | andlov | 2018-01-04 01:29:41 +0100 (Thu, 04 Jan 2018) | 1 line
Adding docs about importing SVN to GIT and keeping trunk -> master in sync.
------------------------------------------------------------------------
r3464 | andlov | 2018-01-04 00:56:58 +0100 (Thu, 04 Jan 2018) | 1 line
Removed legacy code.
------------------------------------------------------------------------
r3463 | andlov | 2017-12-31 05:15:48 +0100 (Sun, 31 Dec 2017) | 1 line
Renamed openexam-php -> openexam-online.
------------------------------------------------------------------------
r3462 | andlov | 2017-12-21 01:19:23 +0100 (Thu, 21 Dec 2017) | 1 line
Highest and lowest grade detection should be done in advance.
------------------------------------------------------------------------
r3461 | andlov | 2017-12-20 01:16:49 +0100 (Wed, 20 Dec 2017) | 1 line
Cleanup by removing system load simulation application.
------------------------------------------------------------------------
r3459 | andlov | 2017-12-19 02:14:44 +0100 (Tue, 19 Dec 2017) | 1 line
Prepared for next release 2.1.2 of openexam online.
------------------------------------------------------------------------
r3458 | andlov | 2017-12-19 00:36:26 +0100 (Tue, 19 Dec 2017) | 1 line
Fixed download of exam archive being exam creator, decoder or corrector.
------------------------------------------------------------------------
r3457 | andlov | 2017-12-18 19:42:03 +0100 (Mon, 18 Dec 2017) | 1 line
Implementing download of exam archive as custom compressed archive with filter capabilities on client side. This is work in progress and new some click handler on hidden link for actual download.
------------------------------------------------------------------------
r3456 | andlov | 2017-12-18 10:00:05 +0100 (Mon, 18 Dec 2017) | 1 line
Implementing result download for decoder/creator. Uses render queue for rendering and download.
------------------------------------------------------------------------
r3455 | andlov | 2017-12-17 15:18:00 +0100 (Sun, 17 Dec 2017) | 1 line
Split admin/boot into sub system directories. Adding setup script that copies files to /usr/local/bin and installs boot time scripts.
------------------------------------------------------------------------
r3454 | andlov | 2017-12-17 14:50:28 +0100 (Sun, 17 Dec 2017) | 1 line
Consistent variable names in bin scripts.
------------------------------------------------------------------------
r3453 | andlov | 2017-12-17 14:46:40 +0100 (Sun, 17 Dec 2017) | 1 line
Adding boot script for OpenRC.
------------------------------------------------------------------------
r3452 | andlov | 2017-12-17 14:43:10 +0100 (Sun, 17 Dec 2017) | 1 line
Trap exception rendering job.
------------------------------------------------------------------------
r3451 | andlov | 2017-12-17 14:29:37 +0100 (Sun, 17 Dec 2017) | 1 line
Don't use jQuery click() on element, don't work in Android. Display direct link for download.
------------------------------------------------------------------------
r3450 | andlov | 2017-12-15 18:07:38 +0100 (Fri, 15 Dec 2017) | 1 line
Created bin directory containing scripts. Moved code from boot script to standard shell script under bin. Adding openrc boot time script.
------------------------------------------------------------------------
r3449 | andlov | 2017-12-15 13:25:15 +0100 (Fri, 15 Dec 2017) | 1 line
Show error message in exam render dialog (for student and decoder actions). The old exam rendering is deprecated, so remove hidden div.
------------------------------------------------------------------------
r3448 | andlov | 2017-12-15 13:23:39 +0100 (Fri, 15 Dec 2017) | 1 line
Make access to result are non-public by default.
------------------------------------------------------------------------
r3447 | andlov | 2017-12-15 12:53:24 +0100 (Fri, 15 Dec 2017) | 1 line
Fix for footer appearing in middle of questions in manager on small devices.
------------------------------------------------------------------------
r3446 | andlov | 2017-12-15 12:04:40 +0100 (Fri, 15 Dec 2017) | 1 line
Clear active timer on close button press and when initialize render job check.
------------------------------------------------------------------------
r3445 | andlov | 2017-12-15 11:21:53 +0100 (Fri, 15 Dec 2017) | 1 line
Improved messages on result file rendering.
------------------------------------------------------------------------
r3444 | andlov | 2017-12-15 10:52:14 +0100 (Fri, 15 Dec 2017) | 1 line
Use i bit darker/blue color on the cog icon in left meny. The lightgrey was interpret as disabled by many users.
------------------------------------------------------------------------
r3443 | andlov | 2017-12-14 18:47:21 +0100 (Thu, 14 Dec 2017) | 1 line
Fixing download of PDF when not being a student.
------------------------------------------------------------------------
r3442 | andlov | 2017-12-14 18:35:03 +0100 (Thu, 14 Dec 2017) | 1 line
Check if render target directory is writable.
------------------------------------------------------------------------
r3441 | andlov | 2017-12-14 18:34:01 +0100 (Thu, 14 Dec 2017) | 1 line
Always use common database format on datetime strings.
------------------------------------------------------------------------
r3440 | andlov | 2017-12-14 08:35:08 +0100 (Thu, 14 Dec 2017) | 1 line
Use web root as the process is started with sudo and might run as a user without access to start directory.
------------------------------------------------------------------------
r3439 | andlov | 2017-12-14 08:32:22 +0100 (Thu, 14 Dec 2017) | 1 line
Student must have read-mode on exam students at the moment for result generation to work.
------------------------------------------------------------------------
r3438 | andlov | 2017-12-14 06:47:50 +0100 (Thu, 14 Dec 2017) | 1 line
Adding latest changes in access.def to config protected file.
------------------------------------------------------------------------
r3437 | andlov | 2017-12-14 06:27:27 +0100 (Thu, 14 Dec 2017) | 1 line
Adding relations between the render and exam model.
------------------------------------------------------------------------
r3436 | andlov | 2017-12-14 06:08:45 +0100 (Thu, 14 Dec 2017) | 1 line
Adding boot time script for running render queue worker process(es).
------------------------------------------------------------------------
r3435 | andlov | 2017-12-14 05:28:25 +0100 (Thu, 14 Dec 2017) | 1 line
Add enquiry on student. This flag prevents student from accessing result while being under investigation.
------------------------------------------------------------------------
r3434 | andlov | 2017-12-14 03:51:38 +0100 (Thu, 14 Dec 2017) | 1 line
Using jQuery dialog will actually populate HTML in target div. Use display none to prevent HTML from being shown when cancel button is clicked.
------------------------------------------------------------------------
r3433 | andlov | 2017-12-14 03:48:06 +0100 (Thu, 14 Dec 2017) | 1 line
Keep top scroll in sync with real scroll bar in correction view.
------------------------------------------------------------------------
r3432 | andlov | 2017-12-14 03:38:16 +0100 (Thu, 14 Dec 2017) | 1 line
Commiting missing changes in render controller.
------------------------------------------------------------------------
r3431 | andlov | 2017-12-14 03:36:03 +0100 (Thu, 14 Dec 2017) | 1 line
Use correct path to cache directory for results.
------------------------------------------------------------------------
r3430 | andlov | 2017-12-14 03:31:00 +0100 (Thu, 14 Dec 2017) | 1 line
Adding render queue task and worker. Download of student result is complete.
------------------------------------------------------------------------
r3429 | andlov | 2017-12-14 03:13:49 +0100 (Thu, 14 Dec 2017) | 1 line
Use standard dependency injector for task, but replace with some CLI special services (i.e. router).
------------------------------------------------------------------------
r3428 | andlov | 2017-12-14 02:16:01 +0100 (Thu, 14 Dec 2017) | 1 line
Student need access to result model because PDF is rendered impersonated as student user.
------------------------------------------------------------------------
r3427 | andlov | 2017-12-14 01:41:20 +0100 (Thu, 14 Dec 2017) | 1 line
Reading own role should always be permitted in model access listener security plugin.
------------------------------------------------------------------------
r3426 | andlov | 2017-12-14 01:17:30 +0100 (Thu, 14 Dec 2017) | 1 line
Adding render table, enquiry on exam and student model and join between questions and results.
------------------------------------------------------------------------
r3425 | andlov | 2017-12-13 12:16:01 +0100 (Wed, 13 Dec 2017) | 1 line
Adding revision number on all internal JS/CSS and version number on all external JS/CSS.
------------------------------------------------------------------------
r3424 | andlov | 2017-12-11 20:41:16 +0100 (Mon, 11 Dec 2017) | 1 line
Don't display add question icon unless exam is contributable.
------------------------------------------------------------------------
r3423 | andlov | 2017-12-11 20:38:15 +0100 (Mon, 11 Dec 2017) | 1 line
Don't display edit buttons if exam is checked read-only.
------------------------------------------------------------------------
r3422 | andlov | 2017-12-11 19:29:02 +0100 (Mon, 11 Dec 2017) | 1 line
Translate -> ' '. This is useful if field value is assigned an empty string encoded as HTML.
------------------------------------------------------------------------
r3421 | andlov | 2017-12-11 19:24:46 +0100 (Mon, 11 Dec 2017) | 1 line
Adding ?rev=xxx cache override on CSS-files too.
------------------------------------------------------------------------
r3420 | andlov | 2017-12-11 19:15:35 +0100 (Mon, 11 Dec 2017) | 1 line
Unified appearance of exam access pending and error messages.
------------------------------------------------------------------------
r3419 | andlov | 2017-12-11 18:47:53 +0100 (Mon, 11 Dec 2017) | 1 line
Use trim on all string fields in selected models.
------------------------------------------------------------------------
r3418 | andlov | 2017-12-11 17:36:47 +0100 (Mon, 11 Dec 2017) | 1 line
Moved 'save all answers' box to bottom of page.
------------------------------------------------------------------------
r3417 | andlov | 2017-12-11 16:51:01 +0100 (Mon, 11 Dec 2017) | 1 line
Adding revision number on javascript includes.
------------------------------------------------------------------------
r3416 | andlov | 2017-12-11 14:40:13 +0100 (Mon, 11 Dec 2017) | 1 line
Changed warning message for unsupported web browsers. Due to polyfill everything seems to work OK, even with IE11.
------------------------------------------------------------------------
r3415 | andlov | 2017-12-11 14:29:31 +0100 (Mon, 11 Dec 2017) | 1 line
Moved polyfill to bottom of index.phtml top-level layout.
------------------------------------------------------------------------
r3414 | andlov | 2017-12-11 14:10:10 +0100 (Mon, 11 Dec 2017) | 1 line
Fix logotype spanning entire width using IE11.
------------------------------------------------------------------------
r3413 | andlov | 2017-12-11 13:10:18 +0100 (Mon, 11 Dec 2017) | 1 line
Keep user agent string in top comment of polyfill.
------------------------------------------------------------------------
r3412 | andlov | 2017-12-11 13:00:14 +0100 (Mon, 11 Dec 2017) | 1 line
Ignore *.js in polyfill directory.
------------------------------------------------------------------------
r3411 | andlov | 2017-12-11 12:58:51 +0100 (Mon, 11 Dec 2017) | 1 line
Removing polyfill for IE11 (should be downloaded automatic).
------------------------------------------------------------------------
r3410 | andlov | 2017-12-11 12:57:23 +0100 (Mon, 11 Dec 2017) | 1 line
Prevent extra space before answers when correcting using safari.
------------------------------------------------------------------------
r3409 | andlov | 2017-12-10 03:37:51 +0100 (Sun, 10 Dec 2017) | 1 line
Actions are now camelized same way as controllers (i.e. controllerx/action-with-this-name).
------------------------------------------------------------------------
r3408 | andlov | 2017-12-10 02:27:35 +0100 (Sun, 10 Dec 2017) | 1 line
Mobile friendly login form (2 column on medium or larger devices).
------------------------------------------------------------------------
r3407 | andlov | 2017-12-10 01:24:55 +0100 (Sun, 10 Dec 2017) | 1 line
Add public/js/polyfill to writable directories list.
------------------------------------------------------------------------
r3406 | andlov | 2017-12-10 00:31:46 +0100 (Sun, 10 Dec 2017) | 1 line
Add polyfill service. Automatic download and cache polyfill for missing browser features (i.e. ES6 support).
------------------------------------------------------------------------
r3405 | andlov | 2017-12-08 13:35:10 +0100 (Fri, 08 Dec 2017) | 1 line
An exan not yet decoded or flagged as enquiry should be writable.
------------------------------------------------------------------------
r3404 | andlov | 2017-12-07 23:07:00 +0100 (Thu, 07 Dec 2017) | 1 line
Display exam grades in exam details section.
------------------------------------------------------------------------
r3403 | andlov | 2017-12-07 22:22:07 +0100 (Thu, 07 Dec 2017) | 1 line
Experiment catalog.
------------------------------------------------------------------------
r3402 | andlov | 2017-12-07 16:16:25 +0100 (Thu, 07 Dec 2017) | 1 line
Replace task specific services in default dependency injector.
------------------------------------------------------------------------
r3401 | andlov | 2017-12-07 00:19:11 +0100 (Thu, 07 Dec 2017) | 1 line
Require corrector or decoder for exporting score board.
------------------------------------------------------------------------
r3400 | andlov | 2017-12-07 00:17:05 +0100 (Thu, 07 Dec 2017) | 1 line
Split access rules depending on if exam result is accessed as student (requires decoded) or decoder/creator (at least enquired).
------------------------------------------------------------------------
r3399 | andlov | 2017-12-07 00:15:03 +0100 (Thu, 07 Dec 2017) | 1 line
Fixed grammatics on correction page.
------------------------------------------------------------------------
r3398 | andlov | 2017-12-06 22:47:54 +0100 (Wed, 06 Dec 2017) | 1 line
Use short name for score board export.
------------------------------------------------------------------------
r3397 | andlov | 2017-12-06 22:47:10 +0100 (Wed, 06 Dec 2017) | 1 line
Adding exam/decode action to ACL.
------------------------------------------------------------------------
r3396 | andlov | 2017-12-06 22:46:35 +0100 (Wed, 06 Dec 2017) | 1 line
Fix SQL upgrade script. Should obviosly be add, not modify.
------------------------------------------------------------------------
r3395 | andlov | 2017-12-06 20:10:17 +0100 (Wed, 06 Dec 2017) | 1 line
Use h2 instead of h1 in popup page headers.
------------------------------------------------------------------------
r3394 | andlov | 2017-12-06 20:00:41 +0100 (Wed, 06 Dec 2017) | 1 line
Must use 0 or 1 for boolean enum when posting form. Better description on wizard pages and link.
------------------------------------------------------------------------
r3393 | andlov | 2017-12-06 19:18:06 +0100 (Wed, 06 Dec 2017) | 1 line
Adding encuiry state on exam. Correction is closed in this state and students are revealed, but students can't download results as the exam is not yet decoded.
------------------------------------------------------------------------
r3392 | andlov | 2017-12-06 19:12:20 +0100 (Wed, 06 Dec 2017) | 1 line
Adding enquiry enum field and commit previous modifications.
------------------------------------------------------------------------
r3391 | andlov | 2017-12-06 10:05:34 +0100 (Wed, 06 Dec 2017) | 1 line
Adding HTML template for question tab.
------------------------------------------------------------------------
r3390 | andlov | 2017-12-06 10:02:24 +0100 (Wed, 06 Dec 2017) | 1 line
Fixed bug in selecting input options for question. Affected multiple choice and spellcheck/word count in textarea.
------------------------------------------------------------------------
r3389 | andlov | 2017-12-06 07:53:48 +0100 (Wed, 06 Dec 2017) | 1 line
Be more precise when finding target form for library resource insertion in list (canvas background and question resource files).
------------------------------------------------------------------------
r3388 | andlov | 2017-12-06 06:58:06 +0100 (Wed, 06 Dec 2017) | 1 line
Adding scrollbar at top of correction table.
------------------------------------------------------------------------
r3387 | andlov | 2017-12-06 05:39:55 +0100 (Wed, 06 Dec 2017) | 1 line
Display result in full color on decode exam.
------------------------------------------------------------------------
r3386 | andlov | 2017-12-06 05:28:25 +0100 (Wed, 06 Dec 2017) | 1 line
Don't wrap the grade cell content in correction view.
------------------------------------------------------------------------
r3385 | andlov | 2017-12-06 05:25:28 +0100 (Wed, 06 Dec 2017) | 1 line
Use percent in greyscale filter value.
------------------------------------------------------------------------
r3384 | andlov | 2017-12-06 05:06:14 +0100 (Wed, 06 Dec 2017) | 1 line
Parse result ID to number to correct detect if result need to be saved.
------------------------------------------------------------------------
r3383 | andlov | 2017-12-06 04:48:43 +0100 (Wed, 06 Dec 2017) | 1 line
Pass question ID when saving results thru AJAX.
------------------------------------------------------------------------
r3382 | andlov | 2017-12-06 04:48:09 +0100 (Wed, 06 Dec 2017) | 1 line
Adding relation between question and result model. Speedup loading data for correction board.
------------------------------------------------------------------------
r3381 | andlov | 2017-12-06 02:16:34 +0100 (Wed, 06 Dec 2017) | 1 line
Don't display rows in correction table where student has no answers.
------------------------------------------------------------------------
r3380 | andlov | 2017-12-06 01:05:53 +0100 (Wed, 06 Dec 2017) | 1 line
Forward action to instruction requires eid as name of exam ID parameter.
------------------------------------------------------------------------
r3379 | andlov | 2017-12-06 00:35:13 +0100 (Wed, 06 Dec 2017) | 1 line
Add close icon on bootstrap error alert.
------------------------------------------------------------------------
r3378 | andlov | 2017-12-06 00:18:06 +0100 (Wed, 06 Dec 2017) | 1 line
Add 60 seconds grace period on datetime in past validation.
------------------------------------------------------------------------
r3377 | andlov | 2017-12-06 00:14:02 +0100 (Wed, 06 Dec 2017) | 1 line
Adding answer correction setting for hiding uncorractable answers (questions corrected by others). Give a greyscale tone on these and hide save all button.
------------------------------------------------------------------------
r3376 | andlov | 2017-12-05 23:03:50 +0100 (Tue, 05 Dec 2017) | 1 line
Adding support for resetting results for question, student or single answer in correction popup.
------------------------------------------------------------------------
r3375 | andlov | 2017-12-05 20:57:24 +0100 (Tue, 05 Dec 2017) | 1 line
The student link (on right hand side) should have ID of student.
------------------------------------------------------------------------
r3374 | andlov | 2017-12-05 20:50:09 +0100 (Tue, 05 Dec 2017) | 1 line
Adding exam grade class. Supports exam grade based on percent or points. Provides conversion between point and percent. Maps scores to grades.
------------------------------------------------------------------------
r3373 | andlov | 2017-12-05 20:39:08 +0100 (Tue, 05 Dec 2017) | 1 line
Use SELECT IN on question_id when fetching answers for student.
------------------------------------------------------------------------
r3372 | andlov | 2017-12-05 19:56:02 +0100 (Tue, 05 Dec 2017) | 1 line
Removed colors from phpunit config. Causes fatal abstract method not implemented error.
------------------------------------------------------------------------
r3371 | andlov | 2017-12-01 15:42:39 +0100 (Fri, 01 Dec 2017) | 1 line
Using role for exam details instead of acquire. The section role and type is now kept in section container and propagated on AJAX request.
------------------------------------------------------------------------
r3370 | andlov | 2017-12-01 07:22:20 +0100 (Fri, 01 Dec 2017) | 1 line
Changes in access list (ACL) required for running UI with primary role set.
------------------------------------------------------------------------
r3369 | andlov | 2017-12-01 07:01:53 +0100 (Fri, 01 Dec 2017) | 1 line
No need to create answer lookup table, its already done by the controller.
------------------------------------------------------------------------
r3368 | andlov | 2017-12-01 06:58:52 +0100 (Fri, 01 Dec 2017) | 1 line
Try to acquire corrector role on exam too in roles class.
------------------------------------------------------------------------
r3367 | andlov | 2017-12-01 06:57:48 +0100 (Fri, 01 Dec 2017) | 1 line
Exclude teacher and corrector from roles automatic acquired in GUI base controller.
------------------------------------------------------------------------
r3366 | andlov | 2017-12-01 06:56:27 +0100 (Fri, 01 Dec 2017) | 1 line
Detect student instead of staff when displaying exam details.
------------------------------------------------------------------------
r3365 | andlov | 2017-12-01 06:55:30 +0100 (Fri, 01 Dec 2017) | 1 line
Propagate primary role to answer correction view (score board and answer correction).
------------------------------------------------------------------------
r3364 | andlov | 2017-12-01 06:52:20 +0100 (Fri, 01 Dec 2017) | 1 line
Correcting overlap of page header and toolbox in fancybox.
------------------------------------------------------------------------
r3363 | andlov | 2017-12-01 00:56:07 +0100 (Fri, 01 Dec 2017) | 1 line
Reload dialog content instead of reloading the dialog itself in exam check.
------------------------------------------------------------------------
r3362 | andlov | 2017-12-01 00:52:42 +0100 (Fri, 01 Dec 2017) | 1 line
Use darker green buttons in student view. The logout button at bottom of page should also be green, but with a more light tone.
------------------------------------------------------------------------
r3361 | andlov | 2017-11-30 23:04:12 +0100 (Thu, 30 Nov 2017) | 1 line
Fix for validation of datetime string formatted different than database entries.
------------------------------------------------------------------------
r3360 | andlov | 2017-11-30 20:28:43 +0100 (Thu, 30 Nov 2017) | 1 line
Adding display of locations and security in exam details.
------------------------------------------------------------------------
r3359 | andlov | 2017-11-30 19:57:38 +0100 (Thu, 30 Nov 2017) | 1 line
Color code the exam status in exam index.
------------------------------------------------------------------------
r3358 | andlov | 2017-11-30 19:57:01 +0100 (Thu, 30 Nov 2017) | 1 line
Adding exam check (object) and status (constant) in model.
------------------------------------------------------------------------
r3356 | andlov | 2017-11-30 19:12:06 +0100 (Thu, 30 Nov 2017) | 1 line
Prepared for next release (2.1.1) of openexam online.
------------------------------------------------------------------------
r3355 | andlov | 2017-11-30 19:10:41 +0100 (Thu, 30 Nov 2017) | 1 line
Fixed bug in prev/next navigation. Use question slot as numbering (required for same exam slit and assigned to different groups of students).
------------------------------------------------------------------------
r3354 | andlov | 2017-11-29 13:55:31 +0100 (Wed, 29 Nov 2017) | 1 line
Fixed missing ID in question listing after creating question.
------------------------------------------------------------------------
r3353 | andlov | 2017-11-29 13:06:16 +0100 (Wed, 29 Nov 2017) | 1 line
Adding display of roles in exam details. Only display staff and roles if caller is staff on some exam.
------------------------------------------------------------------------
r3352 | andlov | 2017-11-29 12:36:38 +0100 (Wed, 29 Nov 2017) | 1 line
Adding staff and other mode for exam details view (accessable from exam index).
------------------------------------------------------------------------
r3351 | andlov | 2017-11-27 21:16:23 +0100 (Mon, 27 Nov 2017) | 1 line
Accept if MIME type is unknown.
------------------------------------------------------------------------
r3350 | andlov | 2017-11-27 20:52:56 +0100 (Mon, 27 Nov 2017) | 1 line
Since jQuery was updated, it's no longer possible to read the value attribute (on HTML element) using elem.val()
------------------------------------------------------------------------
r3349 | andlov | 2017-11-27 20:32:25 +0100 (Mon, 27 Nov 2017) | 1 line
Can't search for unquoted attribute value.
------------------------------------------------------------------------
r3348 | andlov | 2017-11-27 19:55:05 +0100 (Mon, 27 Nov 2017) | 1 line
Fixed a bug where MIME type where passed instead of file to FileImport::getMimeType.
------------------------------------------------------------------------
r3347 | andlov | 2017-11-27 19:34:40 +0100 (Mon, 27 Nov 2017) | 1 line
Adding javascript polyfill for IE11.
------------------------------------------------------------------------
r3346 | andlov | 2017-11-27 14:26:15 +0100 (Mon, 27 Nov 2017) | 1 line
The 'enable lockdown' is now toggling dimmed mode on dialog content. Use dialog content container for jQuery navigation.
------------------------------------------------------------------------
r3345 | andlov | 2017-11-27 14:24:38 +0100 (Mon, 27 Nov 2017) | 1 line
Fixing missplaced form-control CSS class.
------------------------------------------------------------------------
r3344 | andlov | 2017-11-27 14:21:23 +0100 (Mon, 27 Nov 2017) | 1 line
Adding CSS class oe-disabled for dimming container.
------------------------------------------------------------------------
r3343 | andlov | 2017-11-27 01:13:45 +0100 (Mon, 27 Nov 2017) | 1 line
Add finished button inside 'test mode activated' alert.
------------------------------------------------------------------------
r3342 | andlov | 2017-11-27 00:30:17 +0100 (Mon, 27 Nov 2017) | 1 line
Adding high contrast theme using CSS filter. Need some tweaks.
------------------------------------------------------------------------
r3341 | andlov | 2017-11-25 01:50:42 +0100 (Sat, 25 Nov 2017) | 1 line
Pull answer view to top of page in correction mode.
------------------------------------------------------------------------
r3340 | andlov | 2017-11-25 01:25:33 +0100 (Sat, 25 Nov 2017) | 1 line
Reorder buttons in exam index. Pull status and common task right most.
------------------------------------------------------------------------
r3339 | andlov | 2017-11-24 20:47:37 +0100 (Fri, 24 Nov 2017) | 1 line
Removed 'don't add creator as question corrector' behavior for questions. Many people miss to add themself as correctors => exam not appearing under the corrector tab.
------------------------------------------------------------------------
r3338 | andlov | 2017-11-24 05:10:37 +0100 (Fri, 24 Nov 2017) | 1 line
The institution code field is read-only.
------------------------------------------------------------------------
r3337 | andlov | 2017-11-24 05:05:49 +0100 (Fri, 24 Nov 2017) | 1 line
Aling accordion labels. The file type is now displayed on top of dialog. Import by group is now showing input fields side-by-side (fluid).
------------------------------------------------------------------------
r3336 | andlov | 2017-11-24 05:02:49 +0100 (Fri, 24 Nov 2017) | 1 line
Smaller dialog for setting exam schedule.
------------------------------------------------------------------------
r3335 | andlov | 2017-11-24 03:17:30 +0100 (Fri, 24 Nov 2017) | 1 line
Don't try to modify testcase status in student view.
------------------------------------------------------------------------
r3334 | andlov | 2017-11-24 03:04:20 +0100 (Fri, 24 Nov 2017) | 1 line
Use single quotes for mailto attribute values. Should be replaced by double quotes by javascript.
------------------------------------------------------------------------
r3333 | andlov | 2017-11-24 02:47:25 +0100 (Fri, 24 Nov 2017) | 1 line
Set user primary role for GUI controller/actions. The list of required roles (access.def) contains the prefered order.
------------------------------------------------------------------------
r3332 | andlov | 2017-11-24 02:39:56 +0100 (Fri, 24 Nov 2017) | 1 line
The 'add new question' button should float to right as long as possible.
------------------------------------------------------------------------
r3331 | andlov | 2017-11-24 02:35:26 +0100 (Fri, 24 Nov 2017) | 1 line
Put error pages inside oe-error to prevent CSS clashes.
------------------------------------------------------------------------
r3330 | andlov | 2017-11-23 19:26:22 +0100 (Thu, 23 Nov 2017) | 1 line
Adding student exam upcoming task to controller.
------------------------------------------------------------------------
r3329 | andlov | 2017-11-23 05:32:45 +0100 (Thu, 23 Nov 2017) | 1 line
Bordered box with round corners when printing answers. Fixed semi-transparent header title at top (for fancybox) when correcting online. Scroll header title on small devices.
------------------------------------------------------------------------
r3328 | andlov | 2017-11-23 04:13:44 +0100 (Thu, 23 Nov 2017) | 1 line
Add fill mode on links inside table header or cell in question columns.
------------------------------------------------------------------------
r3327 | andlov | 2017-11-23 02:57:29 +0100 (Thu, 23 Nov 2017) | 1 line
Smaller cell width on small devices. Only display student icon on small screen.
------------------------------------------------------------------------
r3326 | andlov | 2017-11-23 00:21:46 +0100 (Thu, 23 Nov 2017) | 1 line
Fixed left/right side alignment. Added CSS classes for grade and score.
------------------------------------------------------------------------
r3325 | andlov | 2017-11-22 17:40:07 +0100 (Wed, 22 Nov 2017) | 1 line
Added fixed first-column table with scrolling wrapper. Removed tablesorter as it conflicted with fancybox (no toolbox in correction by question and no after close being called). Also made it impossible to add fixed first-column table score board (by user request).
------------------------------------------------------------------------
r3324 | andlov | 2017-11-22 12:09:15 +0100 (Wed, 22 Nov 2017) | 1 line
Shouldn't been part of previous commit.
------------------------------------------------------------------------
r3323 | andlov | 2017-11-22 12:08:16 +0100 (Wed, 22 Nov 2017) | 1 line
Use better names in question correction controller and answer view.
------------------------------------------------------------------------
r3321 | andlov | 2017-11-22 01:28:52 +0100 (Wed, 22 Nov 2017) | 1 line
The student view need the fixed-header class.
------------------------------------------------------------------------
r3320 | andlov | 2017-11-22 01:12:54 +0100 (Wed, 22 Nov 2017) | 1 line
Collapse exam properties list to one column on small devices.
------------------------------------------------------------------------
r3319 | andlov | 2017-11-22 00:17:01 +0100 (Wed, 22 Nov 2017) | 1 line
Prevent side-by-side buttons on small device (490 - 770 pixels).
------------------------------------------------------------------------
r3318 | andlov | 2017-11-21 23:44:40 +0100 (Tue, 21 Nov 2017) | 1 line
Moved jQuery UI (JS/CSS) to main layout template.
------------------------------------------------------------------------
r3317 | andlov | 2017-11-21 23:08:14 +0100 (Tue, 21 Nov 2017) | 1 line
Use responsive design on first tab of exam settings dialog.
------------------------------------------------------------------------
r3316 | andlov | 2017-11-21 22:52:34 +0100 (Tue, 21 Nov 2017) | 1 line
Merge passed options with default options for dialog.
------------------------------------------------------------------------
r3315 | andlov | 2017-11-21 22:44:42 +0100 (Tue, 21 Nov 2017) | 1 line
Use wider dialog for student listing. Don't display button using inline-table, use normal style (with padding).
------------------------------------------------------------------------
r3314 | andlov | 2017-11-21 22:31:02 +0100 (Tue, 21 Nov 2017) | 1 line
Always display pointer cursor in left hand side menu.
------------------------------------------------------------------------
r3313 | andlov | 2017-11-21 22:27:24 +0100 (Tue, 21 Nov 2017) | 1 line
Use native bootstrap alert formatting.
------------------------------------------------------------------------
r3312 | andlov | 2017-11-21 22:23:59 +0100 (Tue, 21 Nov 2017) | 1 line
Align search icon with input field.
------------------------------------------------------------------------
r3311 | andlov | 2017-11-21 22:04:13 +0100 (Tue, 21 Nov 2017) | 1 line
Use showDialogWindow() for exam check from exam index.
------------------------------------------------------------------------
r3310 | andlov | 2017-11-21 21:56:00 +0100 (Tue, 21 Nov 2017) | 1 line
Only show icon for exam status check. Hover to display details.
------------------------------------------------------------------------
r3309 | andlov | 2017-11-21 21:52:14 +0100 (Tue, 21 Nov 2017) | 1 line
Search icon should be centered in button.
------------------------------------------------------------------------
r3308 | andlov | 2017-11-21 20:26:29 +0100 (Tue, 21 Nov 2017) | 1 line
Align left hand side menu on right side on small devices.
------------------------------------------------------------------------
r3307 | andlov | 2017-11-21 20:15:50 +0100 (Tue, 21 Nov 2017) | 1 line
Added dialog function (in utils.js) that sizes the dialog depending on screen resolution. On small devices (tablet and smaller), then fancybox is used instead of jQuery UI dialog.
------------------------------------------------------------------------
r3306 | andlov | 2017-11-21 15:48:26 +0100 (Tue, 21 Nov 2017) | 1 line
Add icon for toggle left hand side menu open.
------------------------------------------------------------------------
r3305 | andlov | 2017-11-21 15:11:00 +0100 (Tue, 21 Nov 2017) | 1 line
Set minimum height on right hand side column.
------------------------------------------------------------------------
r3304 | andlov | 2017-11-21 15:09:33 +0100 (Tue, 21 Nov 2017) | 1 line
Use class 'data-missing' for messages when question or students have not been added yet.
------------------------------------------------------------------------
r3303 | andlov | 2017-11-21 14:54:03 +0100 (Tue, 21 Nov 2017) | 1 line
Fix for insert user in left hand side menu.
------------------------------------------------------------------------
r3302 | andlov | 2017-11-21 14:38:21 +0100 (Tue, 21 Nov 2017) | 1 line
Add selected class to resource file.
------------------------------------------------------------------------
r3301 | andlov | 2017-11-21 13:54:51 +0100 (Tue, 21 Nov 2017) | 1 line
Fix for autocomplete list appearing behind search dialog.
------------------------------------------------------------------------
r3300 | andlov | 2017-11-21 13:15:39 +0100 (Tue, 21 Nov 2017) | 1 line
Enable MathJax in student view.
------------------------------------------------------------------------
r3299 | andlov | 2017-11-20 17:13:22 +0100 (Mon, 20 Nov 2017) | 1 line
Flood focus to get jQuery to release global event listener on focus that is stealing focus from text input.
------------------------------------------------------------------------
r3298 | andlov | 2017-11-20 16:50:43 +0100 (Mon, 20 Nov 2017) | 1 line
Reworked media library.
------------------------------------------------------------------------
r3297 | andlov | 2017-11-20 16:48:28 +0100 (Mon, 20 Nov 2017) | 1 line
Initialize MathJax on question index page. Reload (typeset) when page content is changed.
------------------------------------------------------------------------
r3296 | andlov | 2017-11-17 16:33:14 +0100 (Fri, 17 Nov 2017) | 1 line
Removed javascript delay from system config. Interfere with using window.status as described by wkhtmltopdf documentation.
------------------------------------------------------------------------
r3295 | andlov | 2017-11-17 16:31:52 +0100 (Fri, 17 Nov 2017) | 1 line
Wait for MathJax to finish typeset. Add normal javascript delay needed for plugins to finished load and images to render (DOM rendering to settle).
------------------------------------------------------------------------
r3294 | andlov | 2017-11-17 16:28:31 +0100 (Fri, 17 Nov 2017) | 1 line
Use branding options for logotypes.
------------------------------------------------------------------------
r3293 | andlov | 2017-11-17 16:27:50 +0100 (Fri, 17 Nov 2017) | 1 line
Larger logo at top of PDF. No background needed (at least right now).
------------------------------------------------------------------------
r3292 | andlov | 2017-11-17 16:26:52 +0100 (Fri, 17 Nov 2017) | 1 line
Add seal to branding options. Used as background image in archive and result PDF-file.
------------------------------------------------------------------------
r3291 | andlov | 2017-11-17 15:38:18 +0100 (Fri, 17 Nov 2017) | 1 line
Set window.status = 'content-loaded' when DOM content has finish loading to signal PDF rendering.
------------------------------------------------------------------------
r3290 | andlov | 2017-11-17 15:32:28 +0100 (Fri, 17 Nov 2017) | 1 line
Fixed indent of user and questions in left side menu.
------------------------------------------------------------------------
r3289 | andlov | 2017-11-16 05:05:35 +0100 (Thu, 16 Nov 2017) | 1 line
Adding function readSectionIndex() for reloading exam index (section) without calling location.reload(). Gives a smoother user experience.
------------------------------------------------------------------------
r3288 | andlov | 2017-11-16 04:31:59 +0100 (Thu, 16 Nov 2017) | 1 line
Adding trim behavior for field values. Use this behavior to enforce removal of strings containing only whitespace.
------------------------------------------------------------------------
r3287 | andlov | 2017-11-16 03:57:28 +0100 (Thu, 16 Nov 2017) | 1 line
Display unnamed exams without a name. Fixes the inconsistance when searching for 'untitled exam' in the exam list.
------------------------------------------------------------------------
r3286 | andlov | 2017-11-16 03:40:04 +0100 (Thu, 16 Nov 2017) | 1 line
Adding bootstrap datetime picker for invigilators 'change schedule' dialog.
------------------------------------------------------------------------
r3285 | andlov | 2017-11-16 01:55:57 +0100 (Thu, 16 Nov 2017) | 1 line
Cleanup st-line divs (no longer used for layout).
------------------------------------------------------------------------
r3284 | andlov | 2017-11-16 01:47:55 +0100 (Thu, 16 Nov 2017) | 1 line
Fixed CSS bug where question editor listing snapped right on HD screen resolution.
------------------------------------------------------------------------
r3283 | andlov | 2017-11-16 01:05:02 +0100 (Thu, 16 Nov 2017) | 1 line
Commit of updated bootstrap-datetimepicker and moment.
------------------------------------------------------------------------
r3282 | andlov | 2017-11-16 00:58:34 +0100 (Thu, 16 Nov 2017) | 1 line
Use bootstrap datetime-picker for exam settings.
------------------------------------------------------------------------
r3281 | andlov | 2017-11-15 23:47:13 +0100 (Wed, 15 Nov 2017) | 1 line
Removed unused boostrap 2 directory.
------------------------------------------------------------------------
r3280 | andlov | 2017-11-15 23:33:40 +0100 (Wed, 15 Nov 2017) | 1 line
Fixing up alert panels. Use disabled input if exam is not editable.
------------------------------------------------------------------------
r3279 | andlov | 2017-11-15 23:01:01 +0100 (Wed, 15 Nov 2017) | 1 line
No inline style on logotype. 80 px on small devices, otherwise 140 px.
------------------------------------------------------------------------
r3278 | andlov | 2017-11-15 21:48:13 +0100 (Wed, 15 Nov 2017) | 1 line
Must have missed removing exam model qualification while adding it in query builder.
------------------------------------------------------------------------
r3277 | andlov | 2017-11-15 21:45:19 +0100 (Wed, 15 Nov 2017) | 1 line
Style no exam found message.
------------------------------------------------------------------------
r3276 | andlov | 2017-11-15 21:29:46 +0100 (Wed, 15 Nov 2017) | 1 line
Keep question within available screen width on small devices.
------------------------------------------------------------------------
r3275 | andlov | 2017-11-15 21:00:52 +0100 (Wed, 15 Nov 2017) | 1 line
Fixed exam search field.
------------------------------------------------------------------------
r3274 | andlov | 2017-11-15 20:49:15 +0100 (Wed, 15 Nov 2017) | 1 line
Use minimum sized banner (60px) using max 5% of page width.
------------------------------------------------------------------------
r3273 | andlov | 2017-11-15 20:42:30 +0100 (Wed, 15 Nov 2017) | 1 line
Large published banner in question manager.
------------------------------------------------------------------------
r3272 | andlov | 2017-11-15 20:31:59 +0100 (Wed, 15 Nov 2017) | 1 line
Clean up commit.
------------------------------------------------------------------------
r3271 | andlov | 2017-11-15 20:28:48 +0100 (Wed, 15 Nov 2017) | 1 line
Responsive design in exam index.
------------------------------------------------------------------------
r3270 | andlov | 2017-11-15 16:53:23 +0100 (Wed, 15 Nov 2017) | 1 line
Only display remaining task div if exam is not ready.
------------------------------------------------------------------------
r3269 | andlov | 2017-11-15 16:45:07 +0100 (Wed, 15 Nov 2017) | 1 line
Use font-awesome in error messages.
------------------------------------------------------------------------
r3268 | andlov | 2017-11-15 16:15:15 +0100 (Wed, 15 Nov 2017) | 1 line
Setting max width on left side menu. Right side should use max width.
------------------------------------------------------------------------
r3267 | andlov | 2017-11-15 15:52:20 +0100 (Wed, 15 Nov 2017) | 1 line
Larger H1 on main pages, smaller in exam manage and correction view.
------------------------------------------------------------------------
r3266 | andlov | 2017-11-15 15:36:57 +0100 (Wed, 15 Nov 2017) | 1 line
Use black semi-transparent background in correction view.
------------------------------------------------------------------------
r3265 | andlov | 2017-11-15 15:20:14 +0100 (Wed, 15 Nov 2017) | 1 line
Renamed AJAX message box (was msg-box). All modes shows header, text and alert. Buttons for download score board/pdf or decode exams is now using toolbox icons next to header.
------------------------------------------------------------------------
r3264 | andlov | 2017-11-15 13:04:07 +0100 (Wed, 15 Nov 2017) | 1 line
Adding color codes to correction table.
------------------------------------------------------------------------
r3263 | andlov | 2017-11-14 21:40:36 +0100 (Tue, 14 Nov 2017) | 1 line
Using <untitled exam> is more clearly denoting an exam without name in exam listing.
------------------------------------------------------------------------
r3262 | andlov | 2017-11-14 21:35:20 +0100 (Tue, 14 Nov 2017) | 1 line
Fixed error where ckeditor was inlined on script element (causing uncaught error 'the specified element mode is not supported on element: "script"').
------------------------------------------------------------------------
r3261 | andlov | 2017-11-14 21:02:05 +0100 (Tue, 14 Nov 2017) | 1 line
Set minimum width for user search input field (tooltip dialog).
------------------------------------------------------------------------
r3260 | andlov | 2017-11-14 20:55:24 +0100 (Tue, 14 Nov 2017) | 1 line
Fixing question editor.
------------------------------------------------------------------------
r3259 | andlov | 2017-11-14 20:55:06 +0100 (Tue, 14 Nov 2017) | 1 line
Adding CSS style for opentip (fixes too small dialog).
------------------------------------------------------------------------
r3258 | andlov | 2017-11-14 18:04:36 +0100 (Tue, 14 Nov 2017) | 1 line
Adding global javascript function oe_module_loaded() to prevent attachment of event handlers multiple times.
------------------------------------------------------------------------
r3257 | andlov | 2017-11-14 16:59:50 +0100 (Tue, 14 Nov 2017) | 1 line
Moving common CSS to standard.css. Use form description as header text.
------------------------------------------------------------------------
r3256 | andlov | 2017-11-14 13:50:10 +0100 (Tue, 14 Nov 2017) | 1 line
Fixed missing download scoreboard button. Cleanup in page logic and layout.
------------------------------------------------------------------------
r3255 | andlov | 2017-11-14 12:20:37 +0100 (Tue, 14 Nov 2017) | 1 line
Aling input and add button on same line in search dialog.
------------------------------------------------------------------------
r3254 | andlov | 2017-11-14 10:56:40 +0100 (Tue, 14 Nov 2017) | 1 line
Span exam check status over whole width on small devices. Pre-parse exam state.
------------------------------------------------------------------------
r3253 | andlov | 2017-11-14 01:16:45 +0100 (Tue, 14 Nov 2017) | 1 line
Use fixed position for AJAX loader so it's always visible.
------------------------------------------------------------------------
r3252 | andlov | 2017-11-14 01:14:39 +0100 (Tue, 14 Nov 2017) | 1 line
Display AJAX loader at top/right corner.
------------------------------------------------------------------------
r3251 | andlov | 2017-11-14 00:47:36 +0100 (Tue, 14 Nov 2017) | 1 line
Replacing UU (shadow) CSS with responsive design. Basically created from ground. Main area + two column with left hand side fixed (fluid to stacked).
------------------------------------------------------------------------
r3250 | andlov | 2017-11-13 19:36:57 +0100 (Mon, 13 Nov 2017) | 1 line
Display 'flag question as removed option on newly created questions.
------------------------------------------------------------------------
r3249 | andlov | 2017-11-13 19:36:09 +0100 (Mon, 13 Nov 2017) | 1 line
Question menu item template should always be rendered.
------------------------------------------------------------------------
r3248 | andlov | 2017-11-13 19:34:08 +0100 (Mon, 13 Nov 2017) | 1 line
Fixed sorting of questions.
------------------------------------------------------------------------
r3247 | andlov | 2017-11-13 17:04:31 +0100 (Mon, 13 Nov 2017) | 1 line
Don't try to access topic from empty result set.
------------------------------------------------------------------------
r3246 | andlov | 2017-11-13 09:59:00 +0100 (Mon, 13 Nov 2017) | 1 line
Shouldn't been in previous commit.
------------------------------------------------------------------------
r3245 | andlov | 2017-11-13 09:58:10 +0100 (Mon, 13 Nov 2017) | 1 line
Fixed left hand side menu (removed non-working topics handling). Using font awesome icons instead of images.
------------------------------------------------------------------------
r3244 | andlov | 2017-11-13 05:43:52 +0100 (Mon, 13 Nov 2017) | 1 line
Adding method hasCapability(, ) in user class.
------------------------------------------------------------------------
r3243 | andlov | 2017-11-11 01:29:18 +0100 (Sat, 11 Nov 2017) | 1 line
Use smaller buttons in some places.
------------------------------------------------------------------------
r3242 | andlov | 2017-11-11 01:28:25 +0100 (Sat, 11 Nov 2017) | 1 line
Normalize font sizes in opentip.
------------------------------------------------------------------------
r3241 | andlov | 2017-11-11 01:02:16 +0100 (Sat, 11 Nov 2017) | 1 line
Use larger fonts in opentip.
------------------------------------------------------------------------
r3240 | andlov | 2017-11-11 00:49:09 +0100 (Sat, 11 Nov 2017) | 1 line
Darker background in correction view. Highlight student answer.
------------------------------------------------------------------------
r3239 | andlov | 2017-11-11 00:48:10 +0100 (Sat, 11 Nov 2017) | 1 line
Give enough space for grades column.
------------------------------------------------------------------------
r3238 | andlov | 2017-11-10 19:57:41 +0100 (Fri, 10 Nov 2017) | 1 line
Scale canvas and ckeditor thumbnail to match up in width.
------------------------------------------------------------------------
r3237 | andlov | 2017-11-10 19:53:19 +0100 (Fri, 10 Nov 2017) | 1 line
Fixed question editor. Empty question is now created in view controller.
------------------------------------------------------------------------
r3236 | andlov | 2017-11-10 19:33:07 +0100 (Fri, 10 Nov 2017) | 1 line
Alert user if failing to find model for role insert.
------------------------------------------------------------------------
r3235 | andlov | 2017-11-10 12:31:16 +0100 (Fri, 10 Nov 2017) | 1 line
Use bootstrap alert classes (no such class as alert-error).
------------------------------------------------------------------------
r3234 | andlov | 2017-11-10 12:20:24 +0100 (Fri, 10 Nov 2017) | 1 line
Garbage collect sessions using the session model instead of using DBO direct.
------------------------------------------------------------------------
r3233 | andlov | 2017-11-10 06:59:31 +0100 (Fri, 10 Nov 2017) | 1 line
Shorter label for exam start sort option.
------------------------------------------------------------------------
r3232 | andlov | 2017-11-10 06:52:47 +0100 (Fri, 10 Nov 2017) | 1 line
Shrink spacing between accordion labels.
------------------------------------------------------------------------
r3231 | andlov | 2017-11-10 06:50:58 +0100 (Fri, 10 Nov 2017) | 1 line
Redefine colors for paginator links.
------------------------------------------------------------------------
r3230 | andlov | 2017-11-10 06:22:38 +0100 (Fri, 10 Nov 2017) | 1 line
Some extra space between accordion labels.
------------------------------------------------------------------------
r3229 | andlov | 2017-11-10 06:18:07 +0100 (Fri, 10 Nov 2017) | 1 line
Use bootstrap success alert for exam info panel.
------------------------------------------------------------------------
r3228 | andlov | 2017-11-10 06:15:01 +0100 (Fri, 10 Nov 2017) | 1 line
Use theme default button size or button classes. Don't hardcode size and padding on each button element except for some special cases (i.e. the exam index).
------------------------------------------------------------------------
r3227 | andlov | 2017-11-10 05:58:34 +0100 (Fri, 10 Nov 2017) | 1 line
Adding form-control class for textareas.
------------------------------------------------------------------------
r3226 | andlov | 2017-11-10 05:49:19 +0100 (Fri, 10 Nov 2017) | 1 line
Reset font size on jquery dialogs.
------------------------------------------------------------------------
r3225 | andlov | 2017-11-10 04:45:35 +0100 (Fri, 10 Nov 2017) | 1 line
Removed hardcoded font sizes in student view.
------------------------------------------------------------------------
r3224 | andlov | 2017-11-10 04:37:52 +0100 (Fri, 10 Nov 2017) | 1 line
Don't trap error replacing ckeditor element.
------------------------------------------------------------------------
r3223 | andlov | 2017-11-10 04:35:33 +0100 (Fri, 10 Nov 2017) | 1 line
Don't replace already initialized ckeditor elements.
------------------------------------------------------------------------
r3222 | andlov | 2017-11-10 03:45:41 +0100 (Fri, 10 Nov 2017) | 1 line
Use larger buttons in student view.
------------------------------------------------------------------------
r3221 | andlov | 2017-11-10 03:43:43 +0100 (Fri, 10 Nov 2017) | 1 line
Updating exam instructions. Shorter text and highlight important stuff.
------------------------------------------------------------------------
r3220 | andlov | 2017-11-10 03:22:48 +0100 (Fri, 10 Nov 2017) | 1 line
Using new version of fancybox.
------------------------------------------------------------------------
r3219 | andlov | 2017-11-10 03:15:29 +0100 (Fri, 10 Nov 2017) | 1 line
Fix button (was using btn-warning, renamed to toolbtn->warning. Obvious these button should have orange background).
------------------------------------------------------------------------
r3218 | andlov | 2017-11-10 03:13:25 +0100 (Fri, 10 Nov 2017) | 1 line
Use new fancybox. Allow fullscreen, social media and slide show. Also provides AJAX navigation between answers.
------------------------------------------------------------------------
r3217 | andlov | 2017-11-10 03:07:57 +0100 (Fri, 10 Nov 2017) | 1 line
Fix accordion header size.
------------------------------------------------------------------------
r3216 | andlov | 2017-11-10 03:05:46 +0100 (Fri, 10 Nov 2017) | 1 line
Hide page header if not printing (correction). Visible for offline printing.