-
Notifications
You must be signed in to change notification settings - Fork 0
/
c000000.htm
2314 lines (1891 loc) · 80.9 KB
/
c000000.htm
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Language" content="en-us">
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>c000000: orcmid.github.io Construction Zone Diary & Job Jar </title>
<!--$$Header: /miserCompagno/c000000.htm 42 17-09-23 16:32 Orcmid $-->
<base target="_top">
</head>
<body stylesrc="construction/templates/00/c000004e.htm" bgcolor="#FFFFFF" text="#000080" link="#0000FF" vlink="#800080" alink="#FF0000">
<font face="Arial, Microsoft Sans Serif, Helvetica, Geneva, Swiss, Sans Serif">
<table border="0" width="100%" height="3">
<tr>
<td width="12%" height="6">
<!--webbot bot="Include"
U-Include="construction/templates/00/c000004b.htm" TAG="BODY" startspan -->
<a href="construction">
<img border="0" src="images/hardhat-logo.gif" width="160" height="115" longdesc="Hard Hat Engineers Reviewing Plan" alt="Construction Material"></a>
<!-- Included from orcmid.github.io/construction/templates/00/c000004b.htm of 2023-09-03T16:39Z -->
<!--webbot bot="Include" i-checksum="10937" endspan --></td>
<td width="72%" height="6">
<p align="center"><strong><font color="#990033">orcmid.github.io
Construction Zone<br>
<em><big><big>Diary & Job Jar</big></big></em></font></strong></p>
</td>
<td width="14%" height="6">
<p align="right"><b><code><a href="./" target="_top">orcmid.github.io</a>></code></b></p>
<p align="right"><b><code><a href="c000000.htm" target="_top">c000000</a>></code></b><br>
<small><small>
<!--webbot bot="Timestamp" S-Type="EDITED"
S-Format="%Y-%m-%d" startspan -->2024-11-12<!--webbot bot="Timestamp" i-checksum="12095" endspan --> -<!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%H:%M %Z" startspan -->10:04 -0800<!--webbot bot="Timestamp" i-checksum="11985" endspan -->
</small></small></p>
</td>
</tr>
</table>
</font>
<div align="center">
<center>
<table border="2" width="100%" bordercolor="#990033" bordercolorlight="#CC0066" bordercolordark="#800000" bgcolor="#FFFFFF">
<tr>
<big>
<td width="11%" align="center"><p><i><b>S<span style="font-variant: small-caps">tatus</span></b></i></p></td>
<td width="11%" align="center"><p><i><b>D<span style="font-variant: small-caps">ate</span></b></i></p></td>
<td width="78%" align="left">
<p align="center"><i><b>D<span style="font-variant: small-caps">escription</span></b></i></p>
</td>
</big>
</tr>
<tr>
<td width="11%" align="center" valign="top"><b><font size="2">transposed<br>
2023-09-02<br>
done<br>
2013-11-25<br>
</font></b></td>
<td width="11%" align="center" valign="top">
<small>
2007-11-11</small></td>
<td width="78%" align="left" valign="top">
<div align="center">
<!--webbot bot="Include" U-Include="construction/2007/11/c071101d3.htm" TAG="BODY" startspan -->
<table border="3" width="80%" align="center" bordercolor="#006600" id="table1">
<tr>
<td valign="middle" align="center"><small>
<p><b><font color="#006600">
The Content Material here was successfully
repurposed/preserved/repaved as part
of the
<a href="construction/2007/11/c071101d.htm"><font color="#006600">2023-08-29</font></a>
stage of the
</font><font color="#800000">
<a href="construction/2007/11/c071101.htm"><font color="#006600">Site
Preservation
Project</font></a></font><font color="#006600">. Check
those pages for additional details of the approach to
repurposing/preservation and correction.</font> </b></p></small>
</td>
</tr>
<!-- Included from orcmid.github.io/construction/2007/11/c071101d3.htm of 2023-12-04T21:26Z -->
</table>
<!--webbot bot="Include" i-checksum="14561" endspan --></div>
<p> </td>
</tr>
<tr>
<td width="11%" align="center" valign="top"> </td>
<td width="11%" align="center" valign="top"> </td>
<td width="78%" align="left" valign="top">
</td>
</tr>
<tr>
<td width="11%" align="center" valign="top"> </td>
<td width="11%" align="center" valign="top"> </td>
<td width="78%" align="left" valign="top">
</td>
</tr>
<tr>
<td width="11%" align="center" valign="top"> </td>
<td width="11%" align="center" valign="top"> </td>
<td width="78%" align="left" valign="top">
</td>
</tr>
<tr>
<td width="11%" align="center" valign="top"> </td>
<td width="11%" align="center" valign="top">
<small>
2024-11-09</small></td>
<td width="78%" align="left" valign="top">
<font size="2">SECURITY.md There should be a TOC on this one, since it
is rather lengthy and clues regarding the progression of content would
be handy.</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" height="27"> </td>
<td width="11%" align="center" valign="top" height="27">
<small>
2024-11-09</small></td>
<td width="78%" align="left" valign="top" height="27">
<font size="2">SECURITY.md Add illustration of all the severity
parameters for the least-vulnerability case.</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"> </td>
<td width="11%" align="center" valign="top">
<small>
2024-10-31</small></td>
<td width="78%" align="left" valign="top">
<font size="2">Provide a link to creation of ASCII-armored encrypted
text messages. This will likely be in nfoTools unless I can find
something public elsewhere and also to reference from nfoTools.</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"><b><font size="2">in progress</font></b></td>
<td width="11%" align="center" valign="top">
<small>
2024-09-28</small></td>
<td width="78%" align="left" valign="top">
<font size="2">Link to Security Policy from front-porch home pages,
where those exists. <b>orcmid.github.io</b>, <b>miser</b>, DocInterp, Adv10, docEng,
myCleanC, rayLab,
<b>nfoTools</b>, wingnut. [dh: Include the README.md, along with its improved
description of the sandbox. [dh:2024-11-02 This should also be in hybrid
footers.]</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"><b><font size="2">in progress</font></b></td>
<td width="11%" align="center" valign="top">
<small>
2024-09-25</small></td>
<td width="78%" align="left" valign="top">
<font size="2">On privately reporting, add
<a href="https://docs.github.com/en/code-security/security-advisories/guidance-on-reporting-and-writing-information-about-vulnerabilities/privately-reporting-a-security-vulnerability#privately-reporting-a-security-vulnerability">
https://docs.github.com/en/code-security/security-advisories/guidance-on-reporting-and-writing-information-about-vulnerabilities/privately-reporting-a-security-vulnerability#privately-reporting-a-security-vulnerability</a>
and explain that the form is designed for use by security researchers.
Indicate that others can contribute by providing only mandatory
information, which will exclude ecosystem for all orcmid on GitHub
projects at this point. So fix the template and also add the
guidance: <b>orcmid.github.io</b>, <b>miser</b>, DocInterp, Adv10, docEng,
myCleanC, rayLab,
<b>nfoTools</b>, wingnut. [dh: r124c41 successfully created a minimal report.
This is not so bad.] [dh:2024-09-26 CVE seems to be Common
Vulnerability Enumeration, which is a way of giving vulnerabilities
unique numbers in a CVE cataloguing. There is also a Common
Vulnerability Scoring System (CVSS) in use and that is reported in CVE
entries and, typically, in published vulnerability reports. These
are all for coordinated use by cybersecurity professionals and security
researchers.]</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"><b><font size="2">in progress</font></b></td>
<td width="11%" align="center" valign="top">
<small>
2024-09-24</small></td>
<td width="78%" align="left" valign="top">
<font size="2">Propogate "Exclusion of Forked/Cloned Projects" as needed
for
<b>orcmid.github.io</b>, <b>miser</b>, DocInterp, Adv10, docEng,
myCleanC, rayLab,
<b>nfoTools</b>, wingnut. [dh: I wonder if this might be stated
separately, although I am unclear where else this might be stated.
Perhaps some general place.][dh:I am talking about security policies
here, and the acceptance of vulnerability reports.][2024-11-09 Use the
Miser one for subsequent versions.]</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"> </td>
<td width="11%" align="center" valign="top">
<small>
2024-09-22</small></td>
<td width="78%" align="left" valign="top">
<font size="2">When nfoTools has a folio on PGP security, It needs to be
linked from the SECURITY.md policy statements for Orcmid on GitHub.</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"> </td>
<td width="11%" align="center" valign="top">
<small>
2024-09-18</small></td>
<td width="78%" align="left" valign="top">
<font size="2">I need to figure out what to do with ODMA and DMA
materials, as well as the ODMAdev and ODMJNI materials. These are
also worthy of hybridForms or pure HTML preservation.</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"> </td>
<td width="11%" align="center" valign="top">
<small>
2024-09-18</small></td>
<td width="78%" align="left" valign="top">
<font size="2">Prepare for retirement of nfoCentrale.com. I must
ensure scooping of essentials from nfoWorks, nfoTools, and anywhere
else.</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"><b><font size="2">in progress</font></b></td>
<td width="11%" align="center" valign="top">
<small>
2024-09-18</small></td>
<td width="78%" align="left" valign="top">
<font size="2">Security Policies: Update all of these so that the
SECURITY.md points to the correct security tab in each case: <b>
orcmid.github.io</b>, <b>miser</b>, DocInterp, Adv10, docEng,
myCleanC, rayLab,
<b>nfoTools</b>, wingnut. [dh:2024-11-01We are redoing all of these
following the major changes in the sandbox version that will lead to
revision of all other existing policy statements. </font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"> </td>
<td width="11%" align="center" valign="top">
<small>
2024-09-18</small></td>
<td width="78%" align="left" valign="top">
<font size="2">I also wonder how hybridForms works at this level (and I
think not, or not so much. At the moment, the only direct topics
are bib/ and orcmid/ (and maybe construction/. I suppose it works
at this level just as well. I wonder what form index.md is in.
[dh: Ohhh, it is already in hybrid format. OK, an option.
And look at 2023-12-04 in progress.]</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"> </td>
<td width="11%" align="center" valign="top">
<small>
2023-12-12</small></td>
<td width="78%" align="left" valign="top">
<font size="2">It may be appropriate to have the nfoWorks handling of
namespaces here. This also means bringing over the "professional
appearance" format. Not a bad idea.</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"> </td>
<td width="11%" align="center" valign="top">
<small>
2023-12-12</small></td>
<td width="78%" align="left" valign="top">
<font size="2">I notice that there are more "container" tools needed for
nfoTools, such as Zip, and base64, RIFF, and others. This is
appropriate for nfoTools.</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"> </td>
<td width="11%" align="center" valign="top">
<small>
2023-12-10</small></td>
<td width="78%" align="left" valign="top">
<font size="2">orcmid.github.io.txt: Consider tombstoning with or
without salvaging the TODOs. The synopsis is rather handy.
It could go somewhere perhaps.</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"> </td>
<td width="11%" align="center" valign="top">
<small>
2023-12-10</small></td>
<td width="78%" align="left" valign="top">
<font size="2">index.htm: Make the merged subordinates explicit</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"> </td>
<td width="11%" align="center" valign="top">
<small>
2023-12-04</small></td>
<td width="78%" align="left" valign="top">
<font size="2">I am running into a practice issue around knowing places
where there are active TODOs. In the site-server model, it is
always handy to check in a Diary & Job Jar page with a flag to leave the
page checked-out, so it will have a red flag in a file list. I
have a trick that might work to have flags set after a git check-in, but
it involves reloading and saving a page that has a time entry in the
location block on the far right of a title block. This will only
work on web pages and not hybrid pages that don't have such web
components. All of these considerations need to be echoed to
docEng. So this item isn't complete until I have done that.</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"><b><font size="2">in progress</font></b></td>
<td width="11%" align="center" valign="top">
<small>
2023-12-04</small></td>
<td width="78%" align="left" valign="top">
<font size="2">hybrid document-engineering. I am having difficulty
reminding myself that when I want to record something in a Diary & Job
Jar about hybrid pages, I must have the page open in VS Code but the
construction aspects and logging require me to open FrontPage as well.
I don't have a good way out of this. However, hybrid pages (*.md
ones) will be opened in VS Code (the default for *.md on my Windows
setup). I think I must get in the habit of opening FrontPage first
when doing document engineering. For working on code, maybe not so
much, since that is not in GitHub repository areas handled as GitHub
Pages. I need to check to see if this is a source of
problems where I have to force-quit FrontPage. Another wrinkle is
I need to have the file folder open to see what TortoiseGit shows me as
"checked-out" because FrontPage is unaware of git.
[NOTE: ClustrMap's only work on links from orcmid.github.io and its
subfolders. hybridForm markdown in other places, such as
SECURITY.md on Miser, cannot work and the ClustrMap should be removed
from those Security Policy statements.]</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"><b><font size="2">in progress</font></b></td>
<td width="11%" align="center" valign="top">
<small>
2023-12-01</small></td>
<td width="78%" align="left" valign="top">
<font size="2">Review subordinate projects for hybrid front porches:
<b>bib</b>, docEng, miser, nfoTools, orcmid, <b>construction </b>
[dh:2024-11-06 I think there is confusion between local-to the
orcmid.github.io repository and those blended from GitHub Pages of other
orcmid on GitHub projects.</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"> </td>
<td width="11%" align="center" valign="top">
<small>
2013-12-14</small></td>
<td width="78%" align="left" valign="top">
<font size="2">Review the entire front porch after the repaving top
levels are complete.</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top"><b><font size="2">in progress<br>
perpetually</font></b></td>
<td width="11%" align="center" valign="top">
<small>
2007-05-04</small></td>
<td width="78%" align="left" valign="top">
<font size="2">Make a web review and catalog broken places.</font></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF"><b>
<small>
2024-11-09</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b><font size="2">SECURITY.md: Update for the Miser Project makes clear
the need to distinguish the Sandbox policy statement as an walk-through
exemplary for reporting vulnerabilities with respect to other
projects/repositories. Do a clean-up to emphasize that.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done<br>
2024-11-06</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2024-11-03</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">SECURITY.md: Emphasize Security Statement versus Security
Policy. Maybe adjust title and text to help cement the
distinction.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done<br>
2024-11-06</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2024-11-04</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">I am unclear how published advisories become visible via
the security tab. I might have to include a link. I am
uncertain that it will work. It looks like <<a href="https://github.com/orcmid/orcmid.github.io/security/advisories">https://github.com/orcmid/orcmid.github.io/security/advisories</a>>
will do the trick, although I am unclear what is seen by others than the
owner. There's a nice account and I am uncertain how visible that
is to anyone. I'm not intending to document how to handle
vulnerability reports by repository owners. I do need a way to
know what is going on with regard to drafts, Triage, and what can be
known to observers of any kind if I provide the link. This will
take some experiments. [2024-11-05 It looks like there is some
confusions about GitHub security and security of software hosted on
GitHub repositories. It is difficult to navigate that because I
have to see how that looks to a reporter (not a manager), and also to
others concerned about advisories that have occured. I may have to
create a separate catalog for advisories, by project, and also deal with
the dependabot business. My only experience with dependabot is for npm-based
projects. [2024-11-06 I got through this and managed to see what
contributors and what non-contributors see.]</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done<br>
2024-11-06</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2024-11-03</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">Create a PRACTICE report that demonstrates what
announcements look like. [2024-11-03 I don't think this will work.
Published advisories go into a global database and they are unlikely to
accept completed PRACTICE ones. So I have to close them, I
suspect.] I need to reflect that in the sandbox mechanism.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF"><b>
<small>
2024-11-03</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b><font size="2">SECURITY.md: Show a submit button.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF"><b>
<small>
2024-11-03</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b><font size="2">SECURITY.md: Show a Security Tab. Show the
selection of the applicable statement. [dh: It doesn't work like that.
The statement comes up directly, with the submission button. I
don't know what happens if there *are* published security advisories.
I need to work that out.][dh:The security tab as selected appears<br>
in the policy statement preentation. All good.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font><b><font size="2"><br>
2024-11-03</font></b></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2024-11-02</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">Expand the PGP message instructions concerning what to
put in the message and what not to put in the plaintext and message
subject.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font><b><font size="2"><br>
2024-11-02</font></b></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2024-10-31</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">Use hybridForm pages for SECURITY.md, starting with
orcmid.github.io. See if that works when digging into the GitHub
resources and viewing the Security Policy via a project . [dh:2024-11-03
This works directol and in the Security tab view of the Policy
Statement.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF"><b>
<small>
2024-09-30</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>Align</b></font><b><font size="2"> README.md and
account for how it is published for orcmid.github.io. Bring
index.htm into conformance. Refine the Sandbox explanation.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2024-09-29</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">Add README.md and rethink the sandbox idea concerning
Secuity Policy for orcmid.github.io. [dh:2024-09-29: The README.md does
not interfere with index.md so there can be both.]</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF"><b>
<font size="2">done<br>
2023-12-05</font></b></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2023-12-04</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">index.md: There needs to be more linking to resources
such as GitHub, git, VSCode, Markdown, and even FrontPage. </font>
</b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF"><b>
<small>
2023-12-04</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b><font size="2">index.md: Fix the blemishes in the first two tap-dance
paragraphs.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF"><b>
<small>
2023-12-04</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b><font size="2">index.md: Add "(Hard Hat Required)" to the
construction link, making it unnecessary to call it out in the text.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF"><b>
<small>
2023-12-04</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b><font size="2">index.md: I have started using
<a href="https://orcmid.github.io/">https://orcmid.github.io/</a> in
places where I am asked for a URL. I am reviewing and touching up
because of that. I'm also checking on the practice, noted today,
on operating "FrontPage first." I also don't want to emphasize the
anchor business so much, although I am proud about it.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF"><b>
<small>
2023-12-03</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b><font size="2">index.md 0.1.2 smoothing of the synopsis</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF"><b>
<small>
2023-12-01</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b><font size="2">index.md touch-ups</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>won't fix<br>
2023-12-01</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2017-07-22</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">Besides the 2004-05-30 concerns for HTML
4.01-transitional identification, there are now breaking HTML 5 changes
that newer browsers (such as Edge and Chrome) are making. I need
to figure out a responsive solution. This is going to be a pain in
the tuckus.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2023-12-01</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">index.md: Make hybrid page</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font><small><b><br>
2023-11-26</b></small></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2023-11-25</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">index.html: Add bib to Orcmid's Table of Content</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b><span style="background-color: #CCCCFF">done</span></b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2023-11-25</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">propogate repurposing completion through bib/ and
anywhere else where a tree is complete</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF"><b><font size="2">in progress<br>
2023-09-02</font></b></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2017-07-22</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">Ditch movable type. I need a different static-page
blogging arrangement, with handling of images here and also with use of
Discus for comments, so they are not actually on the static site.
This creates an archive issue and I'll have to deal with that another
way. Bill Anderson gave me some pointers. [2023-09-02 This
still applies and we're not dealing with the blogs just yet, getting web
sites materials of my continuing interest preserved first.][2023-11-16
The abandonment of Movable Type is also achieved by transpositions
to here, <<a href="https://orcmid.github.io">https://orcmid.github.io</a>>,
and to GitHub Orcmid projects/repositories ]</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font><small><b><br>
2023-11-25</b></small></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2013-12-14</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">When all of the "propogate repaving" work items are
closed, the top level Construction Structure/Zone repaving notices and
work items can be replaced with completion notices.</font></b></td>
</tr>
<tr>
<small>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font><small><b><br>
2023-11-25</b></small></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF"><b><small>2006-10-29</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">In moving to Apache, there is a lot of breakage around
case sensitivity. There are also some bad links (See #55.69).
There is a lot to work out here.</font></b></td>
</small>
</tr>
<small>
<tr>
<small>
<td width="11%" align="center" valign="top" style="background-color: #CCCCFF">
<font size="2"><b>done<br>
2023-11-25</b></font></td>
<td width="11%" align="center" valign="top" style="background-color: #CCCCFF">
<b><small>
2004-05-30</small></b></td>
<td width="78%" align="left" valign="top" style="background-color: #CCCCFF">
<small><b>Bring Construction Structure of existing sections up to
nfoCentrale HTML 4.01 style: _private, astraendo, construction,
images,
notes, ob, ofrugal, omiser, projects, readings, sketch, front
porch
[dh:2013-10-04 double-check on construction and also the repaving for
modern Construction Structure.] [dh:2023-11-16 Now here at
<a href="https://orcmid.github.io/miser">https://orcmid.github.io/miser</a>,
the top-level structure is being changed. The material that is
here now has upgraded Construction Structure and that will be continued
as more material is refactored to here.]]</b></small></td>
</small>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done<br>
2023-11-25</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2023-11-19</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">orcmid/index.htm Fix to be correct Construction
Structure. There should be a Construction Zone as well.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done<br>
2023-11-16</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2017-06-25</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">Convert to Apache License. That means we need a
LICENSE and a NOTICE at the root of this content.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#FFCCFF">
<font size="2" color="#990033"><b>won't fix<br>
2023-11-16</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#FFCCFF">
<b><font color="#990033">
<small>
2006-07-11</small></font></b></td>
<td width="78%" align="left" valign="top" bgcolor="#FFCCFF">
<b>
<font size="2" color="#990033">Add version number to this page. </font>
</b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done<br>
2023-11-04</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2006-07-11</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">Change construction office to use nested template and
construction-note format. Rename to Construction Material</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<font size="2"><b>done</b></font></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF"><b>
<small>
2023-10-23</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b><font size="2">Visit all FrontPage-managed pages and ensure UTF-8
encoding on all of them.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF"><b>
<font size="2">done</font></b></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF">
<b>
<small>
2023-09-02</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b>
<font size="2">Scrub these work items to reflect the current transposed
situation.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF"><b>
<font size="2">done</font></b></td>
<td width="11%" align="center" valign="top" bgcolor="#CCCCFF"><b>
<small>
2023-09-02</small></b></td>
<td width="78%" align="left" valign="top" bgcolor="#CCCCFF">
<b><font size="2">Scrub those work items from miser-theory.info that are
inapplicable here.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#FFCCFF"><b>
<font size="2" color="#800080">inapplicable<br>
2023-09-02</font></b></td>
<td width="11%" align="center" valign="top" bgcolor="#FFCCFF">
<font color="#800080"><b>
<small>
2017-07-22</small></b></font></td>
<td width="78%" align="left" valign="top" bgcolor="#FFCCFF">
<b>
<font size="2" color="#800080">Change notations.htm to a
document-engineering professional appearance page. This should
probably not be the primary location, but only maintained to preserve
existing links that others may have made, however unlikely.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#FFCCFF"><b>
<font size="2" color="#800080">inapplicable<br>
2023-09-02</font></b></td>
<td width="11%" align="center" valign="top" bgcolor="#FFCCFF">
<font color="#800080"><b>
<small>
2017-07-22</small></b></font></td>
<td width="78%" align="left" valign="top" bgcolor="#FFCCFF">
<b>
<font size="2" color="#800080">Replace binsearch.py with a tombstone and
keep a version of the file somewhere else.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#FFCCFF"><b>
<font size="2" color="#800080">inapplicable<br>
2023-09-02</font></b></td>
<td width="11%" align="center" valign="top" bgcolor="#FFCCFF">
<font color="#800080"><b>
<small>
2017-07-22</small></b></font></td>
<td width="78%" align="left" valign="top" bgcolor="#FFCCFF">
<b>
<font size="2" color="#800080">Replace binsearch.cpp by a tombstone and
keep a version of the file somewhere else.</font></b></td>
</tr>
<tr>
<td width="11%" align="center" valign="top" bgcolor="#FFCCFF"><b>
<font size="2" color="#800080">inapplicable<br>
2023-09-02</font></b></td>
<td width="11%" align="center" valign="top" bgcolor="#FFCCFF">