-
Notifications
You must be signed in to change notification settings - Fork 10
/
CHANGELOG
1184 lines (759 loc) · 42.2 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 86aea143c9546af22a3108cb6660658391915c93
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Fix first-time deploy errors related to SMW rebuild data
Add the special 'never' tag to the task in the MediaWiki role.
With the 'never' tag, this task will ONLY be run if you specifically ask
for it with the --tags=smw-data option (or --tags=never option).
This changes behavior of Meza so that it does not rebuild SMW data
on each and every deploy. To specifically request a SMW rebuild, simply
ask for it by name with `sudo meza deploy monolith --tags smw-data`
Fixes Issue #80
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 74e74a201cdaeca7b6e3eff1091ca8482f112c64
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Change SAML logging handler to file
simpleSAMLphp's logging handler is 'syslog' by default.
Change the handler to 'file' so that we can see the logs in the logging directory.
See Issue #74
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 0ac901cf173175fbed162dafc51ac6b598d2f748
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Update saml20-idp-remote.php
Fix syntax:
- update array syntax for PHP8
- avoid double open array by putting it after the conditionals
- vertical spacing
- indentation
- output an 'error message' in a PHP comment when cert data is not defined
Move 'FIXME' into a jinja comment so it is not templated out
See #74
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit c8f3317fa28d2a0d2f6559fe8872cd58d6f8d387
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Add commit template; Add Rich to Release Notes
Use the commit template by issuing a git config command
git config commit.template ./.git-commit-template
Add Rich Evans to Release Notes 'contributors' section
See Issue #54
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 5e2200b7fbff0e3e5749502b32fd024a7ea1ccb4
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Create Release Notes for v39.5.0
Updated CHANGELOG and RELEASE-NOTES.md for the v39.5.0 release.
Fixes #55
See also #52 #53 #54
commit dce594e272571092ee1f00c444f96b0500ea3c45
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Versionlock Ansible and Python to prevent incompatibilities
For the immediate future, we will stick with Python 3.6.8 and Ansible 2.29.27
There are other issues in the backlog to upgrade these.
Fixes #82
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 84e08b0cbb7685df9d8d4a6ac48230123219d4c1
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Fix deploy errors on initial deploy
Fixes #80 First-time deploy failure
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 58933f20125658e50a6f3be6fa197eadbf2af6ed
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Fix fatal recursion errors
Working on Issue #80
- Use loop to show the list of wikis
- Eliminate the vars: repetition of what is already established fact
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 86230816f917873938ee76b2a4feb7b712ee4be5
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Finish dressing out the SAML Authentication role
Fixes #74 Tested against Mocksaml.com
- Use configuration variables from public.yml,
- and setup defaults that work for NASA for $wgPluggableAuth_Config
- templated into LocalSettings.php
- Add commentary about using privatekey and certificate in Authsources.php
- Add conditional on NameIDPolicy
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit df820d7150be741647ccce081e79f909a512a010
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Remove the old 'remove Extension SimpleSamlAuth'
This is very old, and confusing to still be here.
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit f73c21608bb4d8607aa0c298c129728628c43cfa
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Fix default port for PHP-FPM
The default port for PHP-FPM should be 9000
9090 is used by many other services or applications
On my stock Rocky Linux, 9090 is being used by systemd
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 0011a5d702153971317de38fcf3252414b8bfe52
Merge: 315364c 5c89037
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Merge remote-tracking branch 'nasa/grc-atf-dev' into REL1_39
commit 5c89037205ae34de14cb11cf6c9741b2156fa0d4
Merge: 1697c20 315364c
Author: Rich Evans <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #48 from freephile/REL1_39
Merge latest tag of REL1_39 (tag 39.4.0) since last pull request was merged
commit 315364cc79e9c20d20bb48f800053d4a318a72d7
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Modify print_width in .editorconfig - but it doesn't seem to affect yamllint
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit e554ccf64eadb128ade3dd546a24f8079c79933f
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Fix 'create wiki' failure due to variable scoping
include_tasks creates a whole new scope and so no variables are defined unless passed
This is the real reason why fatal recursion was happening with create wiki without specifying wiki_id as an extra var.
Fixes #48
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 18871ab1f385dd819db2b2e22e4492f8b07ee3e0
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Lift restriction on composer version
This allows composer to upgrade to the latest release
Fixes #77
Fixes security issues related to composer
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 29f99dde648ab9ec7219507b84360a1ed28307a9
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Enable check mode for testing
Work on issue #76
remove duplicate set_fact in replication.yml
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 79057619ac6ce25b94f764980bd1d94b73dbef23
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Add LocalSettings directive for Extension:SubPageList
This **maybe** should go in MezaCoreExtensions.yml, but generally
site-wide configuration should be in LocalSettings.php
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 04413171657e14c3b1dcec975ec1512d5791a46d
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Add FIXME comment about composer
See issue #71
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit e672dccb5763539f6acd199a17c2a473c2104193
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
SubPageList needs a wfLoadExtension
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 0923618ff221da65301d9668f593a70df0dbfa65
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Upgrade SAML auth to use simpleSAMLphp 2.2.1
This fixes #74
Creates the administration web interface at https://localhost/simplesaml/admin
Login credentials come from your secret.yml
Setup comes from your public.yml
See https://www.mediawiki.org/wiki/Meza/Setup_SAML_authentication
config/defaults.yml
- upgrade simpleSAMLphp library from 1.19.7 to 2.2.1
- upgrade Extension:PluggableAuth to 7.0
- upgrade Extension:simpleSAMLphp to 7.0
saml/templates/config.php.j2
- change array notation
- add comments
- use config variable with default for timezone
- remove obsolete settings
- update deprecated settings
src/roles/apache-php/tasks/php-redhat8.yml
- add php-sodium # required for phpSimpleSAML
src/roles/apache-php/templates/httpd.conf.j2
- the simplesaml web entrypoint directory is changed to 'public' from 'www'
- describe the possible use of SIMPLESAMLPHP_CONFIG_DIR env variable
- remove 'Options All -Indexes' because it is meaningless in the context
src/roles/saml/tasks/main.yml
- update the URL for library download
- use the ansible variable saml_mw_extension_version for extension version
- add a task to create the apache writable log directory
src/roles/apache-php/templates/php-fpm-httpd.conf.j2
- the simplesaml web entrypoint directory is changed to 'public' from 'www'
src/roles/saml/templates/authsources.php.j2
- change array notation
- add comments
- add explicit 'idp' => null when not defined
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 5362af6af1af016b419c4ec13ea8d69784a90471
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Extension SubPageList upgraded from 1.6.1 to 3.0.0
This fixes issue #70
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 6ab981b8b46598fcd98c4bc4c4f4858e2b979af2
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Reformat: Wrap all comments at 120 characters
Also remove trailing whitespace
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit d465e29d628bc565df4857f3d15712f44fa00e7a
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Delete errant swap file from repo
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 74beb296510cd78f297ab46563b017dabec6818a
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Fix delete / restore functionality
The automatic recovery of a wiki from it's backups was failing due to the
'rebuild SMW' task in create-wiki-wrapper.
Fixes #67
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 7d9915dc26ee6bff01ecb0813760c2e2bcdba51d
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Add VS Code settings to .gitignore
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 013a11b6841ecfac95afbeced031222df4932185
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Use Elasticsearch 7.10
Fixes #65
Start security work (singled-node is more secure, but this only works on monolith, with a single elasticsearch node)
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 873258d3a7269bc2ee8885b6aa92f491360e28d9
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Add the --always option to git describe to avoid errors
With --always, even if git can not find any tags, the commit hash will be used.
Fixes #57
meza --version will return something like
Meza 39.1.0-7-gfc45add
Commit fc45adddfa3efd308ab2dc4350c6315c5ef10858
Mediawiki EZ Admin
Also, fix typo in function name get_git_descripe_tags()
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit fc45adddfa3efd308ab2dc4350c6315c5ef10858
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Document all 53 functions in meza.py
get_deploy_info() now raises a FileNotFoundError if the lockfile
for the environment does not exist. Before it would just return
false in that case.
The 'meza update' command now uses the nasa repo as the canonical source
instead of the enterprisemediawiki repo.
Format 'import' statements one per line
Fix mixed use of tabs and spaces
Add some @FIXME comments about obsolete (CentOS) or unknown (Docker) functions.
The context manager will automatically close your (open) file handle in
write_vault_decryption_tmp_file().
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 8ee9f63287f27f6a24ccc9f455d97da830f6fbb4
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Semantic Dependency Updater - new home / disabled
SDU is temporarily disabled. The repo URL has changed, but
for some odd reason deploys seem to hang on this specific
extension during git clone.
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit b76d9517c1cee328df69dc4e597baebbb873084d
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Fix thumbnail generation + add webp support
Fixes issue #62 thumbnail generation by letting MediaWiki
know where to find thumb.php
$wgThumbnailScriptPath = "$wgScriptPath/thumb.php";
Additionally, we changed the definition of $wgFileExtensions
so as to **merge** Meza customizations as additions to what is
supported by default - essentially adding webp support.
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 8edbf4ab6686f43a56be79fd4e402047fbb20493
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Fixe the compiled templates ownership issue
Fixes Widgets issue #61
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit cd5ad2399918169722a4fe8459302d784e6ae88a
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Update some integration test scripts
Fix the image-check script domain handling for 'localhost'.
Pipe output to jq for pretty printing diagnosic output.
Remove obsolete Parsoid check.
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 957a0efe969a5904b4858641d41a6ef06656bfb7
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Create a CHANGELOG as a de-minimus form of Release Notes
Fixes issue #54
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit d253642c5ada7f3d904f4e0c0ba99159489b066d
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Add some directories to gitignore
Ignore the 'venv' directory for any local Python Virtual Env setup.
Ignore anything in 'roles' that starts with 'geerlingguy' because
those will come from Ansible Galaxy aka 3rd-party repos.
Add comment to ansible.cfg about the 'roles_path' variable.
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 60d9bb0e599ac6927ed641c4d10311c0aecaa412
Merge: 383f4c8 1697c20
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Merge remote-tracking branch 'nasa/grc-atf-dev' into REL1_39
commit 1697c20fcf34866bf92bc816091e98546d4d1fe0
Author: Rich Evans <[email protected]>
Commit: GitHub <[email protected]>
Add a "Section 508 Info" link to the footer via LocalSettings.php template
Section 508 Compliance and Digital Accessibility compliance information of required by many organizations.
Meza admins can tailor the exact content via a "Mediawiki:Section508compliance" system message page in the wiki.
commit 383f4c8a4144cda5c1300080fdac78c94f39c1c2
Author: Rich Evans <[email protected]>
Commit: GitHub <[email protected]>
make sure widgets compipled templates folder is owned by meza-ansible to avoid local changes error when updating
commit 81ac9659f7aab3ea53ce93d8319d32ed9b7d33a5
Author: Rich Evans <[email protected]>
Commit: GitHub <[email protected]>
restore force debug to false
commit e0fcbc4f05a18cbbd256375af864d41c2c81d89b
Merge: f0dba02 a4fadf4
Author: Rich Evans <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #45 from freephile/REL1_39
Fixes 'Create Wiki' playbooks with updated MediaWiki DB schema plus .smw.json tweaks
commit a4fadf47037c4f43c3cbea396ae01e8eebf83d17
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
ansible-lint code health changes
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit a044cfec6663fc895d6a7d0ef998944804400f6b
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
$wgShellLocale is obsolete as of REL1_38
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 45270d4ebc690c37a619464acc0aacbb36d5c79c
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Final fixes for .smw.json and create wiki bugs
Fixes #44 by moving the .smw.json file to the 'conf-meza' hierarchy
Fixes #48 by refreshing mediawiki-table.sql
@todo Use the source distributed version to automatically
be up-to-date. It is in mediawiki/maintenance/tables-generated.sql
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 17f7faefc25f2a9827df1d58a5143fcacfbfb857
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
yamllint code health syntax and formatting changes
Increase conformance to accepted YAML parser rules.
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit f0dba0223b31fcfab279c339578d0a8124da662c
Merge: e3228e3 1e91f9e
Author: Rich Evans <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #44 from freephile/REL1_39
Upgrade Meza to MediaWiki REL1_39 and PHP 8.1
commit 1e91f9ed730b7c4c60b8a9d77462dd8b25f0ade9
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Fix permission problems + naming in .smw.json directory
Fixes issue #44 "Ensure .smw.json has a home"
The permission problems stem from the fact that a local userX can run ad-hoc shell scripts that will want to read/write; a deploy will read-write as user meza-ansible and of course the web server process will read-write as apache. So all these users and groups can be handled with meza-ansible:wheel
The directory naming problem stems from the choice to use the wgDBname variable instead of the "wiki id". Wiki ID is a better choice for **wiki** related config data directory; and it's also easier to use over db name because the latter is a composed value, not a simple string.
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 4b0d76aa055f58a408cd384b501673b45cfce328
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Ensure .smw.json has a home
This fixes issue #44
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 704937926ef9014f549353a322cfb0c11b647c5e
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Feature: Short URLs
Completes Issue #28
Remove redundant wgArticlePath that was overriding the correct setting.
Also add wgUsePathInfo
https://www.mediawiki.org/wiki/Manual:$wgUsePathInfo
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 6ca76db3f3bc57af9248aaf684c355220e2df70c
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Feature: Short URLs
This fixes issue #28
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit c8e66653d3640c5068df6823e1acac4befc13a5b
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Remove commented line
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit afb41e88b8ea6f16a65c141111c61c897adf0fc3
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Make 'enforce_meza_version' undefined; with comment
This variable was initially undefined, and "turning it on" will
prevent deploys if your meza source is not a clean, matching checkout.
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit a02a80ce99a8997f117cd0f59403bbb42f6cafde
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Upgrade PHP to 8.1
This fixes issue #13
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit cd60cf11990ca27b071ead128099e9e167f251d4
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Example of Remi repo usage from geerlingguy
Issue #27
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit f2e7e1e88914f6810a3f8bb72249db0255897044
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Minor yaml lint fixes
Part of Issue #17
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit f3ed0400931dde327679c8e43eb8f3e76cc9c18d
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Add 'force' option to be able to 'overwrite local git changes'
This completes issue #25
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit f7a5cece8d7352325c662192260ceab374e02e7b
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Make MediaWiki core branch depth a configuration value
Solves issue #24
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 602587fedb4bba31aa36110781f3bfe1c1af171d
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Make the Meza project repository a configuration value
This resolves issue #22
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit d95b68242ee3e883bd721f1157fee06b61d56b04
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Update Extension Flow for PHP8.1 compatibility
Add additional configuration settings while fixing deprecation warnings in issue#26
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 28f314e6b75e01b38e64fdd42f24d4d3af4fd3fd
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
git repo URL and branch name as BASH variables
Create Bash variables for getmeza.sh and source them from the ENVIRONMENT;
so that administrators can override them at run-time; or use a default.
This addresses part of issues #22 and #23
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 4cbcd64477fd1e012d9002fca547d790bdd6918b
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Upgrade SimpleBatchUpload to 2.x for PHP 8.1 compatibility
Incompatibility revealed in upgrading PHP #13
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit b6daa75b49c4b847c0efc48a1c9cb6aa8c879c33
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Use fully qualified built-in module name for dnf
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 0db71f8e65c04cb359823fe16a84e5879673236a
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Add .yamllint configuration
Fix one error - missing space before comment across multiple files
Initial configuration allows for 140 char line with only a warning
Partial, initial fix for issue #17
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit d2fe7d922d829bc941ba49bde077d26f037e99d4
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Fix 50 yamllint errors in Base role
Fix indentation
Fix line-length
Fix comments
Fix spaces
Fix truthy values
Clarify logic of conditionals
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 972d5ca04592a24bc44aa0f65ff90b22059666b5
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Reorder dnf set-enabled, install per docs
Not sure it matters, but the order copied from the docs
https://docs.fedoraproject.org/en-US/epel/#_almalinux_8_rocky_linux_8
is
dnf config-manager --set-enabled powertools
then
dnf install epel-releaase
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit cdef0c41d5e80e7721ef4c1034d7f856d9c2ced9
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Add EditorConfig to this project
Formally addresses the age-old problem of tabs vs spaces.
Fixes Issue #14
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 48782c27622af21371f473d478089fe5494181cd
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Use 'false' for negative truthy values
Although Ansible accepts a broad range of values for boolean variables
Use true/false to be compatible with ansible-lint
https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_variables.html
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 817f8f058f10811570cbd66af577d11a68947782
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Use 'true'/'false' for truthy values
Although Ansible accepts a broad range of values for boolean variables
Use true/false to be compatible with ansible-lint
https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_variables.html
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 286147329f3d85a845182b9f186706d103d84afe
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Fix some yamllint and ansible-lint warnings
Fix truthy values, spacing, indentation, line length
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit c5685249f0bf241d912e5f28ef81e5a24bfc92e7
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Fix fatal indentation errors
Errors were indicated by ansible-lint
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 62e2d784ce532ec98ac53251f36ed99187878401
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Use fully qualified name ansible.builtin.debug
https://docs.ansible.com/ansible/latest/collections/ansible/builtin/debug_module.html
We recommend you use the Fully Qualified Collection Name (FQCN)
ansible.builtin.debug for easy linking to the module documentation and
to avoid conflicting with other collections that may have the same
module name.
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit cd83e120534ef460b0cafe554e8b3caac4febb64
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Upgrade Semantic MediaWiki to 4.1.3
This is a patch release. Thus it contains only bug fixes. No new
features or breaking changes.
This release contains security patches and improves support for modern
PHP and MediaWiki. Upgrading is recommended for all users.
See docs/releasenotes/RELEASE-NOTES-4.1.3.md
Fixed several XSS issues
Improved support for PHP 8.1 and above
Improved support for MediaWiki 1.39 and above
Various minor performance improvements, especially for multi-database setups
Fixed Special:PageProperty (thanks thomas-topway-it)
Improved compatibility with OpenSearch and recent versions of ElasticSearch
Improved PostgreSQL compatibility
Added ability to disable the upgrade key check via the smwgIgnoreUpgradeKeyCheck setting
Improved various interface messages
Translation updates
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit e61e9896111be58af4577f68692290130d2beef6
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Upgrade Maps to 10.1.1
Fixes deprecated SkinTemplateNavigation hook as well as
deprecated Content::fillParserOutput()
The 10.x series of Maps supports MediaWiki 1.39.x
See Release Notes
https://github.com/ProfessionalWiki/Maps/blob/10.1.1/RELEASE-NOTES.md
and
Commit 257381b926477c486f3341497752485290530b87
https://github.com/ProfessionalWiki/Maps/commit/257381b926477c486f3341497752485290530b87
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit ccd118c8aae17063bf06910f23a00e593943514c
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Switch PageForms to latest version (5.6.3)
Fixes Deprecation of SkinTemplateNavigation hook
fixed by commit 46beadb
https://github.com/wikimedia/mediawiki-extensions-PageForms/commit/46beadb44b4dacc14923525f710abe1dfc9d2eb9
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit c2bc0a665b28809228e2146e220ad04fb30b2205
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Use master branch for Variables extension
paraphrasing https://www.mediawiki.org/wiki/Extension:Variables
To avoid deprecation warning about the missing #var_final parser
function in MediaWiki 1.39+, please update to the latest version
(master branch for now).
See task T276627 and task T250963 for further information.
The Variables extension must be enabled so that a project can be
pursued to replace all the on-wiki usage of the extension.
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 4f9ea657beb1feb56cd71753d61764f4f7366850
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Revert "Variables extension - disabled"
This reverts commit c70ed42e32c327d0224c8d33a180e50b0d9aa5b2.
commit dbc68b66d4e8f04865bfdb6c1f508425a14e3944
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Update WhosOnline for compatibility with REL1_39
The REL1_39 branch of the extension still produces the error below -
which was fixed two years ago, but not backported.
Use the 'master' branch for now.
Deprecated
: Use of User::getOption was deprecated in MediaWiki 1.35.
[Called from WhosOnlineHooks::onBeforePageDisplay in
/opt/htdocs/mediawiki/extensions/WhosOnline/includes/WhosOnlineHooks.php
at line 27]
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 3ca303bd75c2019840d6ae481e9d3e8cf9e5943c
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Fix database backup function
Quote mysql password option to avoid special characters being interpreted by the Ansible shell module.
In the source_wiki_exists_check task of /src/roles/remote-mysqldump/tasks/main.yml:104 you could
end up with a command like the following:
mysqlshow -u wiki_app_user -p6K2s9n!XTtebd$GUfy$8YtGVIcZYXA@d wiki_test3 | grep -v Wildcard | grep -o wiki_test3\n
The password has ! and $ in it - both shell special characters. https://mywiki.wooledge.org/BashGuide/SpecialCharacters
We avoid interpretation by quoting the password value with single quotes.
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 2367a8265719ecff1dc7031e1a5d7cd4ab5ade7e
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Enable Ansible debugger by default
enable_task_debugger = true added to ansible.cfg for easy debugging in play logs
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit e3228e3c6bad04d34b6314a8d934fac25960ceec
Author: Rich Evans <[email protected]>
Commit: GitHub <[email protected]>
Fix Widgets folder permissions tasks
moved the 2 tasks that test for the existence of the Widgets/complied templates folder and then, if it exists, changes the permissions to apache:apache - moved them to AFTER the global permissions fix for the entire mediawiki folder
and - made the chown task recursive to apply to all the compiled templates
commit 7cac79a9dde2e541ab1238c6362c4c3cd51065bf
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Update Semantic Extra Special Properties extesion
Use v3.0.5 for bugfixes and compatibility with REL1_39
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B
commit 20d152c57b9936c32bdc0aaabfb2ec794bbc1700
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
Fix Issue #2 Remove GitHub Actions
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit da17c4590b201a7041b6fa47317af9b3583efed2
Author: Greg Rundlett <[email protected]>
Commit: Greg Rundlett <[email protected]>
change raw_input() to input() for Python 3.x
This work was performed for NASA GRC-ATF by WikiWorks per NASA Contract NNC15BA02B.
commit 4c31903865f1f410b7e6488661c0dbb2a6b57eaf