-
Notifications
You must be signed in to change notification settings - Fork 106
/
ChangeLog
15785 lines (9388 loc) · 590 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
commit cf4bc0abd8d5f98d6f4f1adcc9710900d55a08d7
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Oct 28 03:33:14 2024 +0000
Fixed commit with PR,, new version ready for citting
commit 48690dffd5fb8e90e8deb999de6e533a039b1458
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Oct 28 02:37:09 2024 +0000
Current version of ESlint dislikes `es2021`l
commit 5e4e34c6925aff2da978a20fb6806bd4e0333ca4
Merge: 4e170bb 8916a54
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Oct 28 02:26:50 2024 +0000
Merge pull request #1 from JacobDB/devel
Fix minor bugs
commit 4e170bbdf665ff4be842aed615be3f624e237f46
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Oct 28 02:00:38 2024 +0000
Create php.yml
Attempt to add GitHub's own CI tools for dotProject
commit e802ebda6bb226a6110aff45c7176bf310d6f31c
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Oct 27 10:18:52 2024 +0000
Updated ChangeLog
The one I has was strangely way larger… not that this is really relevant: `git log` does the thing.
commit 8916a5476878bbc97bdb2d1b24ed707f3204d259
Author: Jacob Bearce <jacob@bearce.me>
Date: Tue Aug 22 10:15:22 2023 -0500
Fix issue that caused task parent to be unset at creation
commit ef5b1a497b6b4b9bfe2abcd664b79f017fc854c6
Author: Jacob Bearce <jacob@bearce.me>
Date: Tue Aug 22 10:14:54 2023 -0500
Fix background color on WYSIWYGs
commit 90a8f14122f418e773af0cfa27ed01383b811121
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Oct 18 20:58:56 2022 +0100
Chore: missing images?
I have no idea why...?
commit df2b6e0df87b36740309ef8c961f73678f7a0e6e
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Fri Nov 12 08:42:45 2021 +0000
Add another static keyword
See @tonymurray's proposed change https://github.com/dotproject/dotProject/pull/160#issuecomment-966220387
commit 0510441b7488185c76efff31dbd186cc84139eb8
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue May 4 22:09:34 2021 +0100
Restyling while fixing things
commit 850129fffa1cfd7283768ddec16868f45a316425
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue May 4 19:08:12 2021 +0000
Forcing input/select to use correct font in the Nord theme.
commit 02079d12e4080401abf259bb8958a5a151faad0d
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue May 4 18:27:36 2021 +0000
Minor fixes on JavaScript (which was breaking mouseover)
commit 5f5fe5a78b766b6e1edf32e1ba2664df8b6e6bd8
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue May 4 17:01:50 2021 +0100
Typo: ',' to '.'
commit 30d4ca750c59fb663328f81e007d727870f223d8
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue May 4 17:00:22 2021 +0100
Trying to fix permissions...
... and cleaned up a bug with overLib
commit 0bc26d9cfbe832dd54c6e29345b8bf063b4751a5
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue May 4 14:47:47 2021 +0100
Adding a new logging facility
I have some issues under nginx + PHP-FPM where syslog lines get truncated/buffered/filtered, so this option allows logs to be sent directly to a file on the system instead.
commit 6e7457281107d64c59f76774193b81e3ded1d081
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue May 4 14:15:55 2021 +0100
Revert bug introduced by bad search and replace
I mistakenly did a global search & replace for PERM_EDIT with PERM_DENY — stoopid!
commit 3a973e1740d5f4ad14d4a73e57b6227507344956
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue May 4 13:47:00 2021 +0100
Dealing with permissions (mostly adding debugging to figure out what’s wrong with some fields shown as empty)
commit b0817e0b5670e5884d008d50af8a9c4fafd038c7
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon May 3 14:01:36 2021 +0000
Tweaking permissions (mostly dealing with edge cases).
commit 5107f70dd7da8ee7ad831b053cae41ec1d15e56b
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun May 2 15:22:33 2021 +0100
Overall tiny changes to see if I can get the overLib boxes to change colours...
commit ca7dd28bc686f80d1e1fb1bc48987f3f67522901
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun May 2 03:42:27 2021 +0100
Lots of small things that needed fixing...
commit aa21eaf493ffc73d8dc0fbf6694cd3afab61bf04
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat May 1 19:56:26 2021 +0000
Swallowed some ending brackets by mistake (I think)
commit dd05f89092da8873bb62403e2ad690121673a795
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat May 1 20:51:46 2021 +0100
Placing a bit more debugging info to see if we can get overLib working properly with *correct* styling!
commit 17beae92e37aba0564be031be928f95a3ac93905
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat May 1 20:30:03 2021 +0100
Another massive overhaul - sanitising PHP/HTML; liberally adding Quill Rich Text Editor around, as much as feasible.
commit 36820c7b82ecb689847ef06fc15d4e0ba64c8daf
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat May 1 17:35:10 2021 +0000
So much cleaning up…
commit 01f713ef582dbb6e4c799f45f48a19311364e625
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat May 1 17:09:03 2021 +0000
Fixes and more fixes
commit c8c980fbdcd961bf09e0b84b304b2b6e36863b8e
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat May 1 15:34:07 2021 +0000
Adding .smallNorm to CSS, since it isn’t defined anywhere…
commit d25181067919f83febe13895c613a8b79157f2b7
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat May 1 16:14:01 2021 +0100
Removing weird property `bordertable` which doesn't exist. The *class* `.bordertable`, however, is used _once_ on the Classic style...
commit 92a8b9b1248a7a36514770c14f039dbdef1b283e
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat May 1 12:13:38 2021 +0000
Minor cosmetic changes to make text more readable in the Tickets module.
commit 74bfe6b0b4ef9801410ecbcacfcfbd0643e5cc5e
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat May 1 11:42:49 2021 +0100
Fixing $ticket_type/$ticket_parent (not obvious error) and restyled followup ticket table with 'modern' CSS as opposed to calculating colours in a hardwired way.
commit 23be90cd9718c5f3bee329a7d45b2e2ac8288abf
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat May 1 10:02:21 2021 +0000
One `(` too much
commit 0a36d20469fcf7dbae5abec0efcbadc881c3a622
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat May 1 09:58:40 2021 +0000
Addging debugging data for `$dPconfig['overlib_extra_parameters’]`
commit eb9b445b2aaf665d05354a7ca755ef1bc55ed5f4
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat May 1 09:58:09 2021 +0000
Added debugging code for `$dPconfig['overlib_extra_parameters’]`
commit 35378ceda98e200d4241eda7a4709d78289d9bc0
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat May 1 01:37:23 2021 +0000
Trying to understand how this actually works…
commit 6da4cdf407c4ee00fb5908bdb18bd1763a323a9f
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat May 1 01:26:37 2021 +0000
Adding overLib styling for Nord theme
commit 5ad29602c5eb30bcc0271c85334be9165db82d9a
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Fri Apr 30 21:54:13 2021 +0100
Subtle change to allow overLib popups to be styled according to the current style (if the style doesn't explicitly override it, it keeps the default styling, without breaking anything)
commit 40f8571112d9251ef8895ca7c1c8f05550996d94
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Fri Apr 30 20:48:39 2021 +0000
Minor tweaks to prepare for overLib restyling
commit 945547843e8ffaf8e7a8e97c245da1f199c0e887
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Fri Apr 30 20:48:19 2021 +0000
Add a new dPconfig parameter for re-styling overLib
commit bfeb3aa4aca19ee8c945c3acab848bc520818958
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Fri Apr 30 19:27:42 2021 +0000
Minor cosmetic changes
commit 2796653923b921a4f4118ee0212d3a98293b5897
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Fri Apr 30 19:26:06 2021 +0000
Getting rid of layer-background-color (obsolete since Netscape 4)
commit 5adb498dbad98da415fbb4f317418ab6519605d8
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Fri Apr 30 18:49:45 2021 +0000
Make buttons on Quill toolbar more readable
commit 781368ac484c1fda5216cb6d3914eb08af84b83f
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Fri Apr 30 18:48:37 2021 +0000
Make buttons on Quill more readable in Nord theme
commit f442183652110a4575785fdae0cb720e83a6fd32
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Fri Apr 30 13:41:46 2021 +0000
Removing $owner_filter_id_pre — was that a mistake? $owner_filter_id_pre is not defined anywhere…
commit beb6cb44b7a34cad0afdad96d94d65bcf672c3c9
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Fri Apr 30 14:34:57 2021 +0100
Rewriting most of the strings with embedded PHP variables, mostly because a few do not work that well under PHP 8
commit dee69f0ded20c7a644e6ed0ca0fa86bbf6fd1ab5
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Fri Apr 30 12:06:22 2021 +0000
Minor tweaks to error logging
commit 5958f46dee595132cfb23dfddff734f38b49f02d
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Fri Apr 30 12:06:09 2021 +0000
More tweaking to get the rich text editor looking good in Nord
commit 49ee08d21902b4d9b437e28fdaac2b940b5b2301
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Fri Apr 30 10:48:45 2021 +0000
Tweaking background colour on Nord theme
commit bc4a932a02f8df8aebc5ba92ad9ebcb25ded01c2
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Fri Apr 30 01:19:27 2021 +0000
Attempt to get rich text editor working on comments
commit 52e928f236c757f24800a8f0be4788b2ce959585
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Thu Apr 29 23:40:49 2021 +0000
Minor issues
commit 7c87eaf35a825fe0891c87218658de7971860317
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Thu Apr 29 21:30:28 2021 +0000
HTML formatting
commit e9d8a8b719370725e9d0a42e1340d1ffaba64099
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Thu Apr 29 21:20:20 2021 +0000
Trying again to override colours/fonts on the Quill rich text editor
commit 6de1bd831359cf402fa54a38ee4ae0ab23f0ff88
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Thu Apr 29 18:20:38 2021 +0000
… better do a search & replace to correct all spelling mistakes…
commit 2bd16f7a89f572c74cf49c1b447a67f5ca5d3e08
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Thu Apr 29 18:18:39 2021 +0000
Another minor spelling mistak correction
commit 046c07597e94456d9146118c9424984113810a32
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Thu Apr 29 18:17:31 2021 +0000
Minor spelling mistake correction
commit 731253b521ccfd6d53eb961817d606468b266070
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Thu Apr 29 15:54:24 2021 +0000
$msg is mentioned on view.php, but it seems that it’s only available on addedit.php (I have to check on other modules to see how these work)
commit d4a3a734dd807830bac693370cc60b309e4002fa
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Thu Apr 29 15:48:59 2021 +0000
Adding QuillJS
commit 6c0bf56e1b743d6fb28a08e7e027f29f5c4d585f
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Thu Apr 29 15:45:25 2021 +0000
Cosmetic changes only
commit 82b42cc9a97f297e95996a218cb6d0c88a647eec
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Thu Apr 29 00:38:08 2021 +0000
Changing more CSS; now links look much cooler!
commit 4cd3bdbaf29455de9eed5736c35c9b2dbfb676fb
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Wed Apr 28 20:03:18 2021 +0000
Adding a favicon and tweaking some CSS for links
commit a46bd4bb99fbe20f09632393463395f0f88b957a
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Wed Apr 28 17:46:05 2021 +0000
Trying to get buttons with hovering change of colour; fixing header top bar with logo
commit 3624d190a4ad578658312c5b177345c7f485da90
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Wed Apr 28 15:47:00 2021 +0100
Adding new logo, just to `nord` theme for now.
commit 1931908c4549319868fd56143bbfb2d1732d1007
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Wed Apr 28 12:47:19 2021 +0100
New vector logo, redrawn over the ancient micro-small GIF...
commit 9a92829db0f1a02338f6862b9c400b928267d086
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Wed Apr 28 11:46:50 2021 +0000
Basic robots.txt file. You know, because some folders shouldn’t get indexed by Google…
commit 456b6cf8cb234b62ff160b932ed485d3a598b05b
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Wed Apr 28 02:34:05 2021 +0100
Dealing with styling of the Files module, and bumping dP version to 2.3.0 just for fun
commit 760edd069fb183eb2daba9dd5e4472b0cf791e3b
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Wed Apr 28 01:21:11 2021 +0000
Bumping version
commit 88b71f7c217563430fe268b6c0ddf11d6c535e3c
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 21:32:13 2021 +0000
… which was in the *wrong* place. Duh!
commit ac1d954bdbc87c2b7c0cdc9284499b64cbfe4367
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 21:30:02 2021 +0000
Lots of tiny cosmetic changes, including a new Google Maps icon!
commit 1169620798954295bd2c6818f1d8d88845f0cc7a
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 20:10:37 2021 +0000
Minor cosmetic changes on title
commit 15a3802fd30953459e2d06ee9a60026dc7f1bc5a
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 21:08:50 2021 +0100
Major change (potentially breaking): for consistency's sake, themes now have css/main.css
Also: added styles to the cute colours on the Key: bottom bar
commit 0f97a4dce8e8c1ed9fcb57ec46ce46bfde99c15a
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 18:44:20 2021 +0000
Make TR odd/even with different backgrounds
commit 26ed53da21634df51bc9afb9a29725b7dd306bad
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 18:31:01 2021 +0000
Make class hilite always nord2
commit c7884f6e4522d6f7c5dadbdba2ae664413d33372
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 18:29:28 2021 +0000
More error fencing around `!empty($p['tasks’])`
commit b69a86b11b6d0a79f4dece98c1abb00053e2e150
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 18:23:06 2021 +0000
More missing hairline borders on table.minical
commit 097a76d7d4ddb797547e2a40e4eec016bb26cc44
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 18:21:34 2021 +0000
Hairline border around calendars
commit bfd69b19b2b57819853000a8a8cbe57639d688fb
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 18:08:22 2021 +0000
Tweaked CSS for tables
commit 29cbaee697ef7743344296fccfbdba82f8df072a
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 18:08:03 2021 +0000
Cleaning up code; adding error fencing
commit a0f8732bbb0e27c32a73c00021ab4314e55e1af2
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 17:49:33 2021 +0000
Why, oh why, is dealing with locales so hard…?
commit 4f59f9518c9af11c0ed5ae423ef4d6c80f9c687b
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 17:46:54 2021 +0000
Small bug, $uistyle inside ‘’ will not expand
commit b99c6d5d49a21ae75b875acde0b9cc1373683638
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 17:46:10 2021 +0000
Some error fencing and code clarification (it was dumping ‘mysterious’ errors)
commit 33f8c0618bd4c3deee07313ff5387863b15371f0
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 17:26:51 2021 +0000
Creating the new `overrides.css` for all themes.
commit 4375668d0922701a460d1d4e18fb8e4e8cf113b2
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 18:23:58 2021 +0100
New mechanism for styling the Quill editor: load `overrides.css` _after_ loading CSS for Quill
commit ee9ba14b993cb5a66cdf4cd3fcf8670a7d3699d1
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 16:54:58 2021 +0000
Cosmetic changes (removing extraneous space)
commit 5484ac07b92f2263a753605bc7bc26d5e9c257ad
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 15:19:02 2021 +0100
Cleaning up more CSS
commit 61a2a3865b9915a7d88986ab401d6224c6f3d4e9
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 14:17:48 2021 +0100
Cleaning up wrong comments for CSS! (duh duh duh)
commit 64d1c29d23c09cda3027c0c8dda10a0fb3c9f4b1
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 14:06:12 2021 +0100
Tweaking font sizes
commit 73b6db0168dd1891212af5cb701176465d75e17e
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 14:02:00 2021 +0100
Updating font sizes (they're really too small to be readable)
commit 939f2dc9cf34284b300dd3ebc530aa8b65b22e5e
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 12:57:33 2021 +0000
Initial colour change for nord theme
commit 4f320fc5a4b0d3971160601d0664a5080aba5ead
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 00:48:35 2021 +0000
Uncaught TypeError: Unsupported operand types: string / int
commit 791780b366d850d5817430e21e351df5161bb61d
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 00:29:24 2021 +0000
Ugh, now we have to do some error checking here as well, or else we loop to death …
commit dec34a573e4486d25ca77316589074bfe807bd25
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 00:22:18 2021 +0000
Pretty-print
commit e11962955dff5682b25dfe2dd95af7d7d7c7f9dd
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 00:22:05 2021 +0000
Pretty-print
commit 1640eab651cc4520df96a94121fe84a63f1a5dee
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 00:19:54 2021 +0000
Fixing some error fencing
commit 5fe64ee3b21d7e4f9198883407072faf30f46307
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 00:13:11 2021 +0000
Loooooots of error fencing (maybe needs a few more)
commit 438e3f3c718e392b32df1559fdd366501f172919
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 00:09:56 2021 +0000
`!empty()` instead of `!= 0`
commit 5635a218e888db597cdb48dcee35b458d8c12f41
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Tue Apr 27 00:06:18 2021 +0000
Complicated implementation with weird errors…
commit ed12254b7d5e3f5452588f95983d8f84a201b965
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 23:55:02 2021 +0000
Pretty-print file
commit a661bac408fc3877546b3616badf5db660a35d0b
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 23:54:51 2021 +0000
Wrong usage of dPgetParam/dPgetCleanParam, the purpose is to avoid getting an error!
commit f651accef47c37dc73013e90b64ef13e676389b3
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 23:42:38 2021 +0000
Removed old-style, register_globals-kind of ‘safe’ assignment `$url_query_string .=`- unnecessary and throws a warning under PHP 8
commit b3df78d35b3b757d40e97c8e6bc0c5c57bde472f
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 23:38:33 2021 +0000
Removing ‘#’ (because project_color_identifier already has it)
commit c686475bb53f1003e0c239fedb08b963d25f039e
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 23:30:24 2021 +0000
No idea of what changed.
commit 8bca307b4a9cd4bfa89759585cf85ddb4777ed2a
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 23:12:11 2021 +0000
Grr empty($dialog) means !$dialog
commit f2b358c33ee2b5b866ca8ff8d45d0c2458cfbbad
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 23:00:51 2021 +0000
Make sure to add `include_once ($AppUI->getLibraryClass('quilljs/richedit.class’));`
commit 8f18d9d252ebeca2483d038fc82d01ca39e31026
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 22:54:05 2021 +0000
Quill it!
commit db03558df049fa958f97445b03bea2b6bb4db2d9
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 22:53:23 2021 +0000
Quill it!
commit 28761f84ee93e4039ecf607cae9677377332d965
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 22:41:22 2021 +0000
Convert CR/LF to LF
commit d748188608e163e29fe91622eb640a6cfeb986ad
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 22:36:38 2021 +0000
In ancient times we had register_globals turned on, so we could get away with this; now we’ll have to extract it from $_GET[]
commit a4750cb8a178e512e051edfe1b4ba417b1670af6
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 22:32:46 2021 +0000
Changing strip_tags() to the safer HTML Purifier ($AppUI->showHTML)
commit b2050b3161d6c4090beab1e132d30fca4e9b068d
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 22:16:12 2021 +0000
Check if $canDelete is not empty
commit 47f8f71d3e7f7fcbd79cc145b0a83426ce5db629
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 22:09:44 2021 +0000
Stupid mistake, missed $ on $depts
commit 974bff28dc3446a6cd629de5087e32f14fd516d8
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 22:08:50 2021 +0000
Corrected selection of contrasting colour; now it works!
commit 72355cbe96a7eb00c7e6593b9bf19ecf8038f01f
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 21:48:44 2021 +0000
Replacing strip_tags() with HTML Purifier
commit 021c36e98bedf289b0bab682fefae9e2c803d6fd
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 21:48:11 2021 +0000
Minor tweak to make sure the department_selection_list is not empty
commit 4a6a117f35029b06afc1d37ed798ab74bd03e460
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 20:54:38 2021 +0000
Send department list through HTML Purifier as well (see modules/tasks/view.php)
commit 124b11b6dd61fc7fa28c2a3e7d805f59b545399b
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 20:46:41 2021 +0000
Skip displaying departments if there are none for this particular company
commit 57995fb7d2a8a5dc0df128b57b1760266287cb17
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 20:44:40 2021 +0000
Making sure that departments does NOT retain stupid HTML tags…
commit 81a3debb3623c66cd6483729251be690a24d0917
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 20:33:09 2021 +0000
Making sure we avoid a stupid warning when $tab doesn't exist
commit 58fc794dad15196109017f7a288ee974bc0081d6
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 20:11:51 2021 +0000
Tweaked comments
commit 6b1eb1884e73f8abf460cb0d5f735b93bfa16e24
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 20:11:28 2021 +0000
Headache-causing calculations involving HH:MM and floating-point hours
commit 1b9bbf84ee3c731c3b46215fe106febc4cef7c1b
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 19:42:20 2021 +0000
More error fencing around form.task_dependencies
commit e26ad5feade1020ab61d790fe1aa225f2870f925
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 19:36:46 2021 +0000
Make sure that active tab is not empty (as opposed to merely being set to “”)
commit 140fd44602b239470aef0d3e13173ae567fd651c
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 19:34:58 2021 +0000
Attempting to set the font colour for the Gantt chart’s top left corner (doesn’t work)
commit 4a2724f3a0b3b6e1589db763051c1db831789334
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 14:30:36 2021 +0000
Added rich editor to signature
commit 6ac23dcd5dab760cc3e27d24f092ded681317f19
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 14:25:15 2021 +0000
Fix message when there isn’t a selected company (i.e. ‘all companies’ is selected)
commit 5068f1a499a4183ea480bc2eee6e6a897aa70ba8
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 13:27:10 2021 +0000
Attempting to get rid of stupid warnings about wrong array-to-string conversions
commit 6c4538bf04e3f3594ffecd89ac4d91274e7ef09e
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 13:15:46 2021 +0000
Kicking Quill and dPsanitiseHTML into submission!
commit 9afdcc441d7878edea1569da37a7929f5f24f12c
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 12:52:38 2021 +0000
Remove alignment button from editor (it’s not possible to save it anyway)
commit d9b51ec1a634f4f1af4bbc855950ce304384f8db
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 13:40:30 2021 +0100
Update main_functions.php
HTML Purifier does not recognise <mark> and <wbr>, so these got removed for now
commit 488c902a43dcc6d625772913d3d19ee3b738360c
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 12:32:46 2021 +0000
Adding allowed tags 's', 'u', 'p', 'q', 'blockquote', 'sub', 'sup', 'abbr', 'kbd', 'var', 'samp', 'hr', 'address', 'caption', 'del', 'ins', 'dfn', 'mark', 'small', 'wbr'
commit d40394414259e10a69fb8c88173b8c1f81c2fcc5
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 12:13:08 2021 +0000
Added h1, h2 to allowed tags (since Quill has those by default and they look nice)
commit af9c7dc74091bb63ec447df47f225dc213c6205d
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 12:11:40 2021 +0000
Attempt to pos- and post-sanitise rich editor’s content
commit 2907b9418a49b438b1b0c06e4a73b3b04c1da149
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 12:11:19 2021 +0000
Dealing with weird choice for <em>
commit 17aa0bd9bd939ad5d175030ee319f2f8cc1feb34
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 12:11:04 2021 +0000
Wrong dir for HTML Purifier!
commit abf25260ec4a0feb27437cc433de02f4699041b1
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 12:00:45 2021 +0000
Trying out Quill w/o filtering
commit 817addf7c770f632d66c12036d4e06a6a77c15f5
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 12:31:08 2021 +0100
First attempt to use HTML Purifier as opposed to filter_xss(), to make
sure that we get 'proper' HTML for the rich text editor.
commit fcf9e81908d217c237c1a0ef64363e44b7013496
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 08:34:19 2021 +0100
Adding HTML Purifier (Standalone version) 4.13.0 (see https://htmlpurifier.org) to replace Drupal 6 anti-XSS code
commit 2fb1eb775137eea5cb73c98cb629e501681db03b
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 07:06:02 2021 +0000
Getting rid of old version of jPgraph, since the new one works flawlessly
commit 322959faf064fbf416ba2d87986ea2096ff557e3
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 07:04:15 2021 +0000
Make function compare static
commit 6f795af1b8b985fffc230247a62381533d3ef306
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Mon Apr 26 07:03:27 2021 +0000
project color identifier already includes a '#'
commit f6f6224de327b3702957e03b035cad7534f4f85f
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 23:32:32 2021 +0000
Move ::compare() to a static function
commit 99b211b05297da92fdd95a815098499bb8c38309
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 23:21:23 2021 +0000
Preparing a new style!
commit 10ddaaa11f7101a3da0b97dde37504a2be68f606
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 20:48:46 2021 +0000
Made a copy of the original config file (as it was done for JpGraph 4.1.1) and added the same 2 options as before. README became README.md.
commit a18421df260702854d362baf480a0d6e7b3165f0
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 20:42:22 2021 +0000
Moved jpgraph v4.1.1 to jpgraph-4.1.1 (temporarily, before removing it) and installed newest version of jpgraph (proceeding to configure it!)
commit 552045697fe223833936d3f14575ad68d02d0583
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 20:41:18 2021 +0000
Tweaked JpGraph markdown so that it ‘looks right’
commit 0a7271ca10e487626cc818c69e9cdf644d174f54
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 19:54:26 2021 +0000
Documented a few functions
commit ba7268ff54d5a8965b57fec490447ab7935b5f1e
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 19:32:21 2021 +0000
Added some error checking on dl (JS breaks if task_dependencies is not a valid property)
commit 2dfe176daf53cfbcf9248fcc3b03c293afe231cb
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 19:18:56 2021 +0000
Fixing things when we’re missing the end_date and/or start_date
commit 8aec17a81f2b31520a693e74ac2667cc5712432f
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 18:45:21 2021 +0000
Trying to get a few reasonable defaults for most things, to display without warnings
commit 2bc1a412b0a04e3638dee61d869eee0ffb186ad2
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 18:30:11 2021 +0000
Over-error-fencing had included a stupid mistake!
commit aa447f897649ac575f8e71e0688300f159beb0fb
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 18:20:57 2021 +0000
Making sure that $obj->task_departments *does* have something valid in it!
commit 2c95ba3195b19189ab335530d1cbf8299ec348b8
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 18:14:18 2021 +0000
Made some changed on handling arrays (so that they don’t give unpredictable errors)
commit b9594d1d1756f0b72304f52d2f2130b92e71f8aa
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 17:53:03 2021 +0000
Cleaning up some warnings caused by too weak (but not incorrect!) error-checking
commit 599d689f266ae4abf03c81d19eb01e0101b24a09
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 17:41:46 2021 +0000
Check if $oTsk is not empty
commit 5ef12f05c603149c117c4690449cb64ab83867a1
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 17:39:30 2021 +0000
Some more error fencing
commit 603c9c4c3a9d8ca0681e863f019403e7a3e6880d
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 17:32:42 2021 +0000
Reverting loadJS — back to header
commit 1175588fe64e9ad3c813d68e393bda06212be83c
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 17:30:51 2021 +0000
More error fencing
commit 836a90596076dc1fd9384d98aa12aa00c300afbf
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 17:19:19 2021 +0000
Fixed a bug created by myself!
commit 54a21d0c965f21e37eba259b3ff967c00f0adf9f
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 16:28:43 2021 +0000
Attempting to put all JavaScript at the _bottom_ of files (requires detailed explanation about WHY…)
commit 3c830efadd668a0637723086a52b556954116fe1
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 16:28:13 2021 +0000
Added a bit more code fencing around function getMsg(…)
commit 2aad0d30db59578a82713f0bc1a3e9acb0565ca0
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sun Apr 25 16:14:18 2021 +0000
Temporarily changing function &acl() to function acl(), because PHP 8 doesn’t like & much
commit 319fc7507e5bda06671724e53e58a61100f4e198
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat Apr 24 19:50:57 2021 +0000
Many more attempts to get correct JavaScript
commit 4440b7c66133efb11e9ac01898071acd884473a4
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat Apr 24 19:49:56 2021 +0000
Spelling mistake on comment
commit 276aaccb9cc6a951742a509f1e43b85fdebddaf5
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat Apr 24 19:45:34 2021 +0000
Grumbling about JS variables initialised inside PHP…. ugggh! I hate that! :angry:
commit 36cfacab04b9aad94d04e9bf3a6a53982fa1943d
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat Apr 24 19:44:24 2021 +0000
Trying to get a ‘reasonable’ ESlint configuration
commit 6370a908235722caedc8196046105c66cad28e7f
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>
Date: Sat Apr 24 18:56:34 2021 +0000
Adding ESlint config, just becuse we need to go deeper on JavaScript debugging
commit 8dfaeeec405669e601d867e1b9b8c63a1280689c
Author: Gwyneth Llewelyn <gwyneth.llewelyn@gwynethllewelyn.net>