-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
2920 lines (2441 loc) · 187 KB
/
index.html
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>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Open Source Software Assessment - Internews</title>
<meta name="description" content="A 4-step process to assess your open source project.">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/print.css" media="print">
<link rel="stylesheet" href="assets/css/all.min.css">
<meta name="author" content="Internews">
<meta name="description" content="Open Source Software Assessment">
<meta name="keywords"
content="code, license, copyright, release, quality, community, diversity, inclusion, transparency, consensus, governance, user, friendliness, open source, sustainability, design, ux, ui, public, developer, privacy, security, foss, floss">
<meta property="og:title" content="Open Source Software Assessment - Internews">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="assets/images/favicon.svg">
<link rel="mask-icon" href="assets/images/favicon.svg" color="#0d5cab">
<link rel="icon" href="assets/images/favicon.svg">
<meta name="theme-color" content="#0d5cab">
<meta name="robots" content="noodp">
<link rel="canonical" href="">
<meta itemprop="name" content="Open Source Software Assessment">
<meta itemprop="description" content="Open Source Software Assessment">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="assets/images/favicon.svg">
<meta name="twitter:title" content="Open Source Software Assessment">
<meta name="twitter:description" content="by Internews">
</head>
<body>
<div id="main" class="container-fluid">
<div class="container px-1 px-lg-3">
<header>
<div class="navbar navbar-expand-lg navbar-light justify-content-between py-4" role="navigation"
aria-label="Assessment Progress Indicators">
<img id="logo" loading="lazy" src="assets/images/logo.svg"
title="Open Source Assessment from Internews" alt="Open Source Assessment logo" width="400px">
<nav id="stepper" class="pt-4 pt-lg-0">
<div class="nav-collapse">
<ul class="nav nav-pills" id="pills-tab" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active active-1" id="pills-assess-tab" data-bs-toggle="pill"
data-bs-target="#pills-assess" type="button" role="tab"
aria-controls="pills-assess" aria-selected="true">Assess</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="pills-strategize-tab" data-bs-toggle="pill"
data-bs-target="#pills-strategize" type="button" role="tab"
aria-controls="pills-strategize" aria-selected="false">Strategize</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="pills-review-tab" data-bs-toggle="pill"
data-bs-target="#pills-review" type="button" role="tab"
aria-controls="pills-review" aria-selected="false">Review</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link last" id="pills-discuss-tab" data-bs-toggle="pill"
data-bs-target="#pills-discuss" type="button" role="tab"
aria-controls="pills-discuss" aria-selected="false">Discuss</button>
</li>
</ul>
</div>
</nav>
</div>
</header>
<div class="content p-4 p-lg-5">
<div class="tab-content" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-assess" role="tabpanel"
aria-labelledby="pills-assess-tab">
<section id="description" class="px-0 px-lg-5 pt-3">
<h1 class="mb-3">Assess</h1>
<p>For each assessment area, "1" indicates low capacity and "5" indicates robust capacity.
</p>
<p>Each score is progressive. For example, a project that scores itself "2" also has the
features
described in "1." A project at a "5" also has all of the features described in 1-4. If
your
project has some capabilities in a higher score but not all of the capabilities in the
scores
below it, use your best judgment to self-score. There will be an opportunity to provide
your
explanation for why you scored the project the way you did for each area.</p>
<p>It is in your best interest to score your project as accurately as possible, so that
needs
can be identified and then matched to appropriate resources. (i.e. -- if your project
scores all
5's, it will be difficult to identify any area that could use more support.)</p>
<hr class="mt-4">
</section>
<section id="content" class="px-0 px-lg-5 pt-3">
<details id="code" open>
<summary>Code</summary>
<form id="code-form" data-storage-name="code">
<div class="form-group">
<input type="radio" id="code-score-0" name="code-score" value="code-score-0">
<label for="code-score-0"><strong>Score 0</strong>: Does not meet Score 1
criteria</label>
</div>
<div class="form-group">
<input type="radio" id="code-score-1" name="code-score" value="code-score-1">
<label for="code-score-1"><strong>Score 1</strong>: The project produces Open
Source
software,
for distribution to the public at no charge.</label>
</div>
<div class="form-group">
<input type="radio" id="code-score-2" name="code-score" value="code-score-2">
<label for="code-score-2"><strong>Score 2</strong>: The project's code is easily
discoverable
and
publicly accessible.</label>
</div>
<div class="form-group">
<input type="radio" id="code-score-3" name="code-score" value="code-score-3">
<label for="code-score-3"><strong>Score 3</strong>: The code can be built in a
reproducible
way
using widely available standard tools.</label>
</div>
<div class="form-group">
<input type="radio" id="code-score-4" name="code-score" value="code-score-4">
<label for="code-score-4"><strong>Score 4</strong>: The full history of the
project's
code is
available via a source code control system, in a way that allows any
released
version to
be recreated.</label>
</div>
<div class="form-group">
<input type="radio" id="code-score-5" name="code-score" value="code-score-5">
<label for="code-score-5"><strong>Score 5</strong>: The provenance of each line
of code
is
established via the source code control system, in a reliable way based on
strong
authentication of the committer. When third-party contributions are
committed,
commit
messages provide reliable information about the code provenance.</label>
</div>
<p class="pt-4 item-header">Importance</p>
<div class="form-group">
<input type="radio" id="code-importance-not-important" name="code-importance"
value="code-not-important">
<label for="code-importance-not-important">Not Important</label>
</div>
<div class="form-group">
<input type="radio" id="code-importance-somewhat-important"
name="code-importance" value="code-somewhat-important">
<label for="code-importance-somewhat-important">Somewhat Important</label>
</div>
<div class="form-group">
<input type="radio" id="code-importance-very-important" name="code-importance"
value="code-very-important">
<label for="code-importance-very-important">Very Important</label>
</div>
<p class="pt-4 item-header">Justification</p>
<textarea id="code-justification" name="code-justification" rows="3"
placeholder="Answer here..."></textarea>
</form>
</details>
<details id="license">
<summary>Licenses & Copyright</summary>
<form id="license-form" data-storage-name="license">
<div class="form-group">
<input type="radio" id="license-score-0" name="license-score"
value="license-score-0">
<label for="license-score-0"><strong>Score 0</strong>: Does not meet Score 1
criteria</label>
</div>
<div class="form-group">
<input type="radio" id="license-score-1" name="license-score"
value="license-score-1">
<label for="license-score-1"><strong>Score 1</strong>: The code is released
under
an OSI- or FSF-approved license.</label>
</div>
<div class="form-group">
<input type="radio" id="license-score-2" name="license-score"
value="license-score-2">
<label for="license-score-2"><strong>Score 2</strong>: Libraries that are
mandatory
dependencies of the project's code do not create more restrictions than the
project license does. </label>
</div>
<div class="form-group">
<input type="radio" id="license-score-3" name="license-score"
value="license-score-3">
<label for="license-score-3"><strong>Score 3</strong>: The libraries that are
mandatory dependencies of the project's code are available as Open Source
software. </label>
</div>
<div class="form-group">
<input type="radio" id="license-score-4" name="license-score"
value="license-score-4">
<label for="license-score-4"><strong>Score 4</strong>: Committers are bound by
an
Individual Contributor Agreement that defines which code they are allowed to
commit and how they need to identify code that is not their own. </label>
</div>
<div class="form-group">
<input type="radio" id="license-score-5" name="license-score"
value="license-score-5">
<label for="license-score-5"><strong>Score 5</strong>: The copyright ownership
of
everything that the project produces is clearly defined and documented.
</label>
</div>
<p class="pt-4 item-header">Importance</p>
<div class="form-group">
<input type="radio" id="license-importance-not-important"
name="license-importance" value="license-not-important">
<label for="license-importance-not-important">Not Important</label>
</div>
<div class="form-group">
<input type="radio" id="license-importance-somewhat-important"
name="license-importance" value="license-somewhat-important">
<label for="license-importance-somewhat-important">Somewhat Important</label>
</div>
<div class="form-group">
<input type="radio" id="license-importance-very-important"
name="license-importance" value="license-very-important">
<label for="license-importance-very-important">Very Important</label>
</div>
<p class="pt-4 item-header">Justification</p>
<textarea id="license-justification" name="license-justification" rows="3"
placeholder="Answer here..."></textarea>
</form>
</details>
<details id="release">
<summary>Releases</summary>
<form id="release-form" data-storage-name="release">
<div class="form-group">
<input type="radio" id="release-score-0" name="release-score"
value="release-score-0">
<label for="release-score-0"><strong>Score 0</strong>: Does not meet Score 1
criteria</label>
</div>
<div class="form-group">
<input type="radio" id="release-score-1" name="release-score"
value="release-score-1">
<label for="release-score-1"><strong>Score 1</strong>: Releases consist of
source
code, distributed using standard and open archive formats that are expected
to stay readable in the long term.</label>
</div>
<div class="form-group">
<input type="radio" id="release-score-2" name="release-score"
value="release-score-2">
<label for="release-score-2"><strong>Score 2</strong>: The project maintains a
section of the website/homepage where all releases and release notes are
documented and archived.</label>
</div>
<div class="form-group">
<input type="radio" id="release-score-3" name="release-score"
value="release-score-3">
<label for="release-score-3"><strong>Score 3</strong>: Releases are signed
and/or
distributed along with digests that can be reliably used to validate the
downloaded archives.</label>
</div>
<div class="form-group">
<input type="radio" id="release-score-4" name="release-score"
value="release-score-4">
<label for="release-score-4"><strong>Score 4</strong>: The release process is
documented to the extent that it could be handed off to a new release
manager.</label>
</div>
<div class="form-group">
<input type="radio" id="release-score-5" name="release-score"
value="release-score-5">
<label for="release-score-5"><strong>Score 5</strong>: The release process is
documented and repeatable to the extent that someone new to the project is
able to independently generate the complete set of artifacts required for a
release.</label>
</div>
<p class="pt-4 item-header">Importance</p>
<div class="form-group">
<input type="radio" id="release-importance-not-important"
name="release-importance" value="release-not-important">
<label for="release-importance-not-important">Not Important</label>
</div>
<div class="form-group">
<input type="radio" id="release-importance-somewhat-important"
name="release-importance" value="release-somewhat-important">
<label for="release-importance-somewhat-important">Somewhat
Important</label>
</div>
<div class="form-group">
<input type="radio" id="release-importance-very-important"
name="release-importance" value="release-very-important">
<label for="release-importance-very-important">Very Important</label>
</div>
<p class="pt-4 item-header">Justification</p>
<textarea id="releases-justification" name="releases-justification" rows="3"
placeholder="Answer here..."></textarea>
</form>
</details>
<details id="quality">
<summary>Quality</summary>
<form id="quality-form" data-storage-name="quality">
<div class="form-group">
<input type="radio" id="quality-score-0" name="quality-score"
value="quality-score-0">
<label for="quality-score-0"><strong>Score 0</strong>: Does not meet Score 1
criteria</label>
</div>
<div class="form-group">
<input type="radio" id="quality-score-1" name="quality-score"
value="quality-score-1">
<label for="quality-score-1"><strong>Score 1</strong>: The project is open and
honest about the quality of its code. Various levels of quality and maturity
for various modules are natural and acceptable as long as they are clearly
communicated.</label>
</div>
<div class="form-group">
<input type="radio" id="quality-score-2" name="quality-score"
value="quality-score-2">
<label for="quality-score-2"><strong>Score 2</strong>: The project puts a very
high
priority on producing secure software.</label>
</div>
<div class="form-group">
<input type="radio" id="quality-score-3" name="quality-score"
value="quality-score-3">
<label for="quality-score-3"><strong>Score 3</strong>: The project provides a
well-documented, secure and private channel to report security issues, along
with a documented way of responding to them.</label>
</div>
<div class="form-group">
<input type="radio" id="quality-score-4" name="quality-score"
value="quality-score-4">
<label for="quality-score-4"><strong>Score 4</strong>: The project puts a high
priority on backwards compatibility and aims to document any incompatible
changes and provide tools and documentation to help users transition to new
features.</label>
</div>
<div class="form-group">
<input type="radio" id="quality-score-5" name="quality-score"
value="quality-score-5">
<label for="quality-score-5"><strong>Score 5</strong>: The project strives to
respond to documented bug reports in a timely manner.</label>
</div>
<p class="pt-4 item-header">Importance</p>
<div class="form-group">
<input type="radio" id="quality-importance-not-important"
name="quality-importance" value="quality-not-important">
<label for="quality-importance-not-important">Not Important</label>
</div>
<div class="form-group">
<input type="radio" id="quality-importance-somewhat-important"
name="quality-importance" value="quality-somewhat-important">
<label for="quality-importance-somewhat-important">Somewhat Important</label>
</div>
<div class="form-group">
<input type="radio" id="quality-importance-very-important"
name="quality-importance" value="quality-very-important">
<label for="quality-importance-very-important">Very Important</label>
</div>
<p class="pt-4 item-header">Justification</p>
<textarea id="quality-justification" name="quality-justification" rows="3"
placeholder="Answer here..."></textarea>
</form>
</details>
<details id="community">
<summary>Community</summary>
<form id="community-form" data-storage-name="community">
<div class="form-group">
<input type="radio" id="community-score-0" name="community-score"
value="community-score-0">
<label for="community-score-0"><strong>Score 0</strong>: Does not meet Score 1
criteria</label>
</div>
<div class="form-group">
<input type="radio" id="community-score-1" name="community-score"
value="community-score-1">
<label for="community-score-1"><strong>Score 1</strong>: The project has a
homepage
that points to all the information required to participate in the community
and contribute to the project.</label>
</div>
<div class="form-group">
<input type="radio" id="community-score-2" name="community-score"
value="community-score-2">
<label for="community-score-2"><strong>Score 2</strong>: The community welcomes
contributions from anyone who acts in good faith and in a respectful manner
and adds value to the project. New contributors receive welcoming
messages/comments and thanks for their contributions.</label>
</div>
<div class="form-group">
<input type="radio" id="community-score-3" name="community-score"
value="community-score-3">
<label for="community-score-3"><strong>Score 3</strong>: Contributions include
not
only source code, but also documentation, constructive bug reports,
constructive discussions, marketing and generally anything that adds value
to the project. Code reviews are undertaken with the goal of accepting as
many contributions as possible; comments on code contributions are
constructive and show appreciation.</label>
</div>
<div class="form-group">
<input type="radio" id="community-score-4" name="community-score"
value="community-score-4">
<label for="community-score-4"><strong>Score 4</strong>: The community strives
to be
meritocratic and over time aims to give more rights and responsibilities to
contributors who add value to the project. There is a defined and consistent
process for acknowledging contributions of all kinds. The project attempts
to make code reviews efficient and reduce the time between starting review
and accepting the contribution.</label>
</div>
<div class="form-group">
<input type="radio" id="community-score-5" name="community-score"
value="community-score-5">
<label for="community-score-5"><strong>Score 5</strong>: The way in which
contributors can be granted more rights such as commit access or decision
power is clearly documented and is the same for all contributors. Most code
contributions of reasonable quality are accepted.</label>
</div>
<p class="pt-4 item-header">Importance</p>
<div class="form-group">
<input type="radio" id="community-importance-not-important"
name="community-importance" value="community-not-important">
<label for="community-importance-not-important">Not Important</label>
</div>
<div class="form-group">
<input type="radio" id="community-importance-somewhat-important"
name="community-importance" value="community-somewhat-important">
<label for="community-importance-somewhat-important">Somewhat Important</label>
</div>
<div class="form-group">
<input type="radio" id="community-importance-very-important"
name="community-importance" value="community-very-important">
<label for="community-importance-very-important">Very Important</label>
</div>
<p class="pt-4 item-header">Justification</p>
<textarea id="community-justification" name="community-justification" rows="3"
placeholder="Answer here..."></textarea>
</form>
</details>
<details id="diversity">
<summary>Diversity & Inclusion</summary>
<form id="diversity-form" data-storage-name="diversity">
<div class="form-group">
<input type="radio" id="diversity-score-0" name="diversity-score"
value="diversity-score-0">
<label for="diversity-score-0"><strong>Score 0</strong>: Does not meet Score 1
criteria</label>
</div>
<div class="form-group">
<input type="radio" id="diversity-score-1" name="diversity-score"
value="diversity-score-1">
<label for="diversity-score-1"><strong>Score 1</strong>: The project has a
published
code of conduct that applies to all members of the community. The project
states publicly on its website and/or homepage(s) that it welcomes
contributions from all people and encourages an environment of friendliness
and respect.</label>
</div>
<div class="form-group">
<input type="radio" id="diversity-score-2" name="diversity-score"
value="diversity-score-2">
<label for="diversity-score-2"><strong>Score 2</strong>: The project has clear
processes in place for managing code of conduct reports, including a
conflict of interest policy and options for reporting to different
individuals. The project actively works to welcome new contributors and
uphold a friendly environment in its communications channels.</label>
</div>
<div class="form-group">
<input type="radio" id="diversity-score-3" name="diversity-score"
value="diversity-score-3">
<label for="diversity-score-3"><strong>Score 3</strong>: The project has
established
practices for welcoming new contributors and ensuring friendly and
respectful communications amongst the community. The project leadership
reflects some diversity of gender, ethnicity, and/or country of
origin.</label>
</div>
<div class="form-group">
<input type="radio" id="diversity-score-4" name="diversity-score"
value="diversity-score-4">
<label for="diversity-score-4"><strong>Score 4</strong>: Project leadership
works to
limit technical jargon and other language that could be off-putting to new
and diverse contributors. The project offers alternative modes of
communication (e.g. text alternatives to video) and captioning for spoken
communication. The community listens to feedback and is responsive to the
needs of diverse contributors.</label>
</div>
<div class="form-group">
<input type="radio" id="diversity-score-5" name="diversity-score"
value="diversity-score-5">
<label for="diversity-score-5"><strong>Score 5</strong>: The project actively
works
to mitigate unconscious bias in communications and decision-making.
Leadership actively works to recruit a diverse contributor community.
Individuals in leadership represent a variety of gender identities,
ethnicities, nationalities, abilities, etc.</label>
</div>
<p class="pt-4 item-header">Importance</p>
<div class="form-group">
<input type="radio" id="diversity-importance-not-important"
name="diversity-importance" value="diversity-not-important">
<label for="diversity-importance-not-important">Not Important</label>
</div>
<div class="form-group">
<input type="radio" id="diversity-importance-somewhat-important"
name="diversity-importance" value="diversity-somewhat-important">
<label for="diversity-importance-somewhat-important">Somewhat Important</label>
</div>
<div class="form-group">
<input type="radio" id="diversity-importance-very-important"
name="diversity-importance" value="diversity-very-important">
<label for="diversity-importance-very-important">Very Important</label>
</div>
<p class="pt-4 item-header">Justification</p>
<textarea id="diversity-justification" name="diversity-justification" rows="3"
placeholder="Answer here..."></textarea>
</form>
</details>
<details id="transparency">
<summary>Transparency & Consensus Building</summary>
<form id="transparency-form" data-storage-name="transparency">
<div class="form-group">
<input type="radio" id="transparency-score-0" name="transparency-score"
value="transparency-score-0">
<label for="transparency-score-0"><strong>Score 0</strong>: Does not meet Score
1
criteria</label>
</div>
<div class="form-group">
<input type="radio" id="transparency-score-1" name="transparency-score"
value="transparency-score-1">
<label for="transparency-score-1"><strong>Score 1</strong>: The project
maintains a
public list of its contributors who have decision power -- the project's
leadership consists of those contributors.</label>
</div>
<div class="form-group">
<input type="radio" id="transparency-score-2" name="transparency-score"
value="transparency-score-2">
<label for="transparency-score-2"><strong>Score 2</strong>: Decisions are made
by
consensus among project leaders and are documented on the project's main
communications channel. Community opinions are taken into account but the
leadership has the final word if needed.</label>
</div>
<div class="form-group">
<input type="radio" id="transparency-score-3" name="transparency-score"
value="transparency-score-3">
<label for="transparency-score-3"><strong>Score 3</strong>: Documented voting
rules are
used to build consensus when discussion is not sufficient.</label>
</div>
<div class="form-group">
<input type="radio" id="transparency-score-4" name="transparency-score"
value="transparency-score-4">
<label for="transparency-score-4"><strong>Score 4</strong>: The project
maintains a
public-facing roadmap that is kept up-to-date.</label>
</div>
<div class="form-group">
<input type="radio" id="transparency-score-5" name="transparency-score"
value="transparency-score-5">
<label for="transparency-score-5"><strong>Score 5</strong>: All "important"
discussions
happen asynchronously in written form on the project's main communications
channel. Offline, face-to-face or private discussions that affect the
project are also documented on that channel.</label>
</div>
<p class="pt-4 item-header">Importance</p>
<div class="form-group">
<input type="radio" id="transparency-importance-not-important"
name="transparency-importance" value="transparency-not-important">
<label for="transparency-importance-not-important">Not Important</label>
</div>
<div class="form-group">
<input type="radio" id="transparency-importance-somewhat-important"
name="transparency-importance" value="transparency-somewhat-important">
<label for="transparency-importance-somewhat-important">Somewhat
Important</label>
</div>
<div class="form-group">
<input type="radio" id="transparency-importance-very-important"
name="transparency-importance" value="transparency-very-important">
<label for="transparency-importance-very-important">Very Important</label>
</div>
<p class="pt-4 item-header">Justification</p>
<textarea id="transparency-justification" name="transparency-justification" rows="3"
placeholder="Answer here..."></textarea>
</form>
</details>
<details id="governance">
<summary>Governance</summary>
<form id="governance-form" data-storage-name="governance">
<div class="form-group">
<input type="radio" id="governance-score-0" name="governance-score"
value="governance-score-0">
<label for="governance-score-0"><strong>Score 0</strong>: Does not meet Score 1
criteria</label>
</div>
<div class="form-group">
<input type="radio" id="governance-score-1" name="governance-score"
value="governance-score-1">
<label for="governance-score-1"><strong>Score 1</strong>: The project maintains
a
public list of its leadership.</label>
</div>
<div class="form-group">
<input type="radio" id="governance-score-2" name="governance-score"
value="governance-score-2">
<label for="governance-score-2"><strong>Score 2</strong>: The project's
leadership
roster clearly states the roles and responsibilities of each leader.</label>
</div>
<div class="form-group">
<input type="radio" id="governance-score-3" name="governance-score"
value="governance-score-3">
<label for="governance-score-3"><strong>Score 3</strong>: There is documentation
of
how decisions are made within the project and how conflicts are
resolved.</label>
</div>
<div class="form-group">
<input type="radio" id="governance-score-4" name="governance-score"
value="governance-score-4">
<label for="governance-score-4"><strong>Score 4</strong>: The project has clear
and
documented opportunities to move into leadership roles which are available
to all contributors. There is documentation of how leadership transitions
are to be managed. Key information for effective governance of the project
is managed such that there is no single point of failure.</label>
</div>
<div class="form-group">
<input type="radio" id="governance-score-5" name="governance-score"
value="governance-score-5">
<label for="governance-score-5"><strong>Score 5</strong>: The project maintains
an
active pipeline of potential new leaders for the project, including
succession planning and a clear outline of back-up support for all key
leadership roles.</label>
</div>
<p class="pt-4 item-header">Importance</p>
<div class="form-group">
<input type="radio" id="governance-importance-not-important"
name="governance-importance" value="governance-not-important">
<label for="governance-importance-not-important">Not Important</label>
</div>
<div class="form-group">
<input type="radio" id="governance-importance-somewhat-important"
name="governance-importance" value="governance-somewhat-important">
<label for="governance-importance-somewhat-important">Somewhat
Important</label>
</div>
<div class="form-group">
<input type="radio" id="governance-importance-very-important"
name="governance-importance" value="governance-very-important">
<label for="governance-importance-very-important">Very Important</label>
</div>
<p class="pt-4 item-header">Justification</p>
<textarea id="governance-justification" name="governance-justification" rows="3"
placeholder="Answer here..."></textarea>
</form>
</details>
<details id="friendliness">
<summary>User Friendliness</summary>
<form id="friendliness-form" data-storage-name="friendliness">
<div class="form-group">
<input type="radio" id="friendliness-score-0" name="friendliness-score"
value="friendliness-score-0">
<label for="friendliness-score-0"><strong>Score 0</strong>: Does not meet Score
1
criteria</label>
</div>
<div class="form-group">
<input type="radio" id="friendliness-score-1" name="friendliness-score"
value="friendliness-score-1">
<label for="friendliness-score-1"><strong>Score 1</strong>: The project
maintains a
user-facing website.</label>
</div>
<div class="form-group">
<input type="radio" id="friendliness-score-2" name="friendliness-score"
value="friendliness-score-2">
<label for="friendliness-score-2"><strong>Score 2</strong>: The project website
includes
clear instructions for getting help (e.g. documentation, opening
issues).</label>
</div>
<div class="form-group">
<input type="radio" id="friendliness-score-3" name="friendliness-score"
value="friendliness-score-3">
<label for="friendliness-score-3"><strong>Score 3</strong>: The project itself
contains
a "help" function for users to report errors and seek support, native to the
user interface of the project/app.</label>
</div>
<div class="form-group">
<input type="radio" id="friendliness-score-4" name="friendliness-score"
value="friendliness-score-4">
<label for="friendliness-score-4"><strong>Score 4</strong>: The project has a
defined
workflow for triaging user support requests and fixing bug reports. Users
are notified when their issues are resolved.</label>
</div>
<div class="form-group">
<input type="radio" id="friendliness-score-5" name="friendliness-score"
value="friendliness-score-5">
<label for="friendliness-score-5"><strong>Score 5</strong>: The project strives
to
answer user questions in a timely manner. The issue queue is actively
managed to reduce the age of open issues. The project utilizes user personas
to help drive the development of features and updates. User support features
may be available in multiple languages.</label>
</div>
<p class="pt-4 item-header">Importance</p>
<div class="form-group">
<input type="radio" id="friendliness-importance-not-important"
name="friendliness-importance" value="friendliness-not-important">
<label for="friendliness-importance-not-important">Not Important</label>
</div>
<div class="form-group">
<input type="radio" id="friendliness-importance-somewhat-important"
name="friendliness-importance" value="friendliness-somewhat-important">
<label for="friendliness-importance-somewhat-important">Somewhat
Important</label>
</div>
<div class="form-group">
<input type="radio" id="friendliness-importance-very-important"
name="friendliness-importance" value="friendliness-very-important">
<label for="friendliness-importance-very-important">Very Important</label>
</div>
<p class="pt-4 item-header">Justification</p>
<textarea id="user-friendliness-justification"
name="user-friendliness-justification" rows="3"
placeholder="Answer here..."></textarea>
</form>
</details>
<details id="sustainability">
<summary>Open Source Sustainability</summary>
<form id="sustainability-form" data-storage-name="sustainability">
<div class="form-group">
<input type="radio" id="sustainability-score-0" name="sustainability-score"
value="sustainability-score-0">
<label for="sustainability-score-0"><strong>Score 0</strong>: Does not meet
Score 1
criteria</label>
</div>
<div class="form-group">
<input type="radio" id="sustainability-score-1" name="sustainability-score"
value="sustainability-score-1">
<label for="sustainability-score-1"><strong>Score 1</strong>: The project has
published
some code and there is at least one user of it.</label>
</div>
<div class="form-group">
<input type="radio" id="sustainability-score-2" name="sustainability-score"
value="sustainability-score-2">
<label for="sustainability-score-2"><strong>Score 2</strong>: The project has a
small team
of developers, often working on a volunteer basis. There is limited insight
into who the users are and how they come across the project.</label>
</div>
<div class="form-group">
<input type="radio" id="sustainability-score-3" name="sustainability-score"
value="sustainability-score-3">
<label for="sustainability-score-3"><strong>Score 3</strong>: There are multiple
developers or development teams spread out at different institutions,
working on the same code. Some developers may have paid time to work on the
project. The project has developed feedback mechanisms that help to
illuminate who the users of the project are.</label>
</div>
<div class="form-group">
<input type="radio" id="sustainability-score-4" name="sustainability-score"
value="sustainability-score-4">
<label for="sustainability-score-4"><strong>Score 4</strong>: The project has a
self-governing developer community deliberately supporting a broad user
community. Funding opportunities to support the project have been identified
and pursued.</label>
</div>
<div class="form-group">
<input type="radio" id="sustainability-score-5" name="sustainability-score"
value="sustainability-score-5">
<label for="sustainability-score-5"><strong>Score 5</strong>: The project is a
self-sustaining organization dedicated to supporting the user and developer
community (e.g. through commercial support, events, a software foundation,
grants, donations, etc.)</label>
</div>
<p class="pt-4 item-header">Importance</p>
<div class="form-group">
<input type="radio" id="sustainability-importance-not-important"
name="sustainability-importance" value="sustainability-not-important">
<label for="sustainability-importance-not-important">Not Important</label>
</div>
<div class="form-group">
<input type="radio" id="sustainability-importance-somewhat-important"
name="sustainability-importance" value="sustainability-somewhat-important">
<label for="sustainability-importance-somewhat-important">Somewhat
Important</label>
</div>
<div class="form-group">
<input type="radio" id="sustainability-importance-very-important"
name="sustainability-importance" value="sustainability-very-important">
<label for="sustainability-importance-very-important">Very Important</label>
</div>
<p class="pt-4 item-header">Justification</p>
<textarea id="sustainability-justification" name="sustainability-justification"
rows="3" placeholder="Answer here..."></textarea>
</form>
</details>
</section>
<div class="d-flex justify-content-center align-items-center pt-3 navigation">
<button class="back me-3" disabled>Back</button>
<button id="first-next" class="next" onclick="secondpage();">Next</button>
</div>
</div>
<div class="tab-pane fade" id="pills-strategize" role="tabpanel"
aria-labelledby="pills-strategize-tab">
<section id="description-strategize" class="px-0 px-lg-5 pt-3">
<h1 class="mb-3">Strategize</h1>
<p><strong>Strategic Planning & SWOT Analysis</strong>:<br /><span