Skip to content
This repository was archived by the owner on Aug 29, 2024. It is now read-only.

Commit a98b9fc

Browse files
committed
Convert all community/*.html to .md
Partial fix of #324 Reviewed-by: Paul Dale <[email protected]> (Merged from #344)
1 parent 8b2adfd commit a98b9fc

26 files changed

+299
-747
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ community/committers.inc
77
community/omc-alumni.inc
88
community/otc.inc
99
community/omc.inc
10+
community/*.html
1011
docs/OpenSSL300Design.html
1112
docs/OpenSSLStrategicArchitecture.html
1213
docs/faq.inc

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,15 @@ FUTURESERIES=
6060
# repository. This does not include .md files taken from other repositories,
6161
# they have their own special handling.
6262
H_TOP = $(addsuffix .html,$(basename $(shell git ls-files -- *.md)))
63+
H_COMMUNITY = $(addsuffix .html,\
64+
$(basename $(shell git ls-files -- community/*.md)))
6365
H_POLICIES = $(addsuffix .html,\
6466
$(basename $(shell git ls-files -- policies/general/*.md \
6567
policies/technical/*.md)))
6668

6769
SIMPLE = $(H_TOP) \
6870
newsflash.inc \
71+
$(H_COMMUNITY) \
6972
community/committers.inc community/otc.inc \
7073
community/omc.inc community/omc-alumni.inc \
7174
news/changelog.html \
@@ -492,5 +495,6 @@ endef
492495
# Generate standard dependencies for our known HTML outputs.
493496
$(foreach H, \
494497
$(H_TOP) \
498+
$(H_COMMUNITY) \
495499
$(H_POLICIES) \
496500
,$(eval $(call makehtmldepend,$(H))))

community/binaries.html

-40
This file was deleted.

community/binaries.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
breadcrumb: Binaries and Engines
3+
---
4+
# Binaries and Engines
5+
6+
The OpenSSL project does not distribute any code in binary form, and does
7+
not officially recommend any specific binary distributions. An informal list
8+
of third party products can be found on the
9+
[wiki](https://wiki.openssl.org/index.php/Binaries).
10+
11+
Some third parties provide OpenSSL compatible engines. The OpenSSL project
12+
does not endorse or officially recommend any specific third party engines.
13+
An informal list of third party engines can be found on the same
14+
[page](https://wiki.openssl.org/index.php/Binaries) as above.

community/committers.html

-44
This file was deleted.

community/committers.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
breadcrumb: Committers
3+
---
4+
# List of Committers
5+
6+
The current list of [committers](/policies/omc-bylaws.html#committers) is
7+
listed below. These are the people who can commit changes to the OpenSSL
8+
source tree, with appropriate code reviews.
9+
10+
## Committers
11+
12+
<p>
13+
<table width="50%" summary="Committers">
14+
<tr>
15+
<td wdith="50%">Name</td>
16+
<td wdith="50%">GitHub ID</td>
17+
</tr>
18+
<!--#include virtual="committers.inc" -->
19+
</table>
20+
</p>

community/conduct.html

-52
This file was deleted.

community/conduct.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
breadcrumb: Conduct
3+
---
4+
# Code of Conduct
5+
6+
The OpenSSL community consists primarily, although not solely, of its online
7+
presence in mailing lists and activities such as the blog postings and
8+
comments, the GitHub repository, and so on. These outlets are managed by the
9+
OpenSSL Management Committee, whose members are listed here:
10+
[https://www.openssl.org/community/omc.html](omc.html)
11+
12+
We strive to be an open and inclusive community where anyone can contribute.
13+
Contributions should be judged on their own merits; we don't care about your
14+
gender identity, race, political beliefs, age, or similar attributes.
15+
16+
If we see that one or more members of the community are generally abusive,
17+
harassing others, or seem to be trying to intimidate them into leaving the
18+
community, we will first ask those who are doing so to take a break from
19+
participation for a while. If you see any evidence of such activity, please
20+
let us know by sending email to <[email protected]>.

community/contacts.html

-59
This file was deleted.

community/contacts.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
breadcrumb: Contact Us
3+
---
4+
# Contact Information
5+
6+
The *OpenSSL Software Foundation* (OSF) represents the OpenSSL project in
7+
most legal capacities including contributor license agreements, managing
8+
donations, and so on. It is a Delaware (US) non-profit corporation with its
9+
own [bylaws](/policies/osf-bylaws.pdf).
10+
11+
*OpenSSL Software Services* (OSS) also represents the OpenSSL project, for
12+
[Support Contracts](/support/contracts.html), and as the Vendor of Record
13+
for NIST Cryptographic Module
14+
[\#1747](https://csrc.nist.gov/projects/cryptographic-module-validation-program/Certificate/1747)
15+
(This is an open-source validation of [FIPS-140](/docs/fips.html) based on
16+
OpenSSL). It is a Delaware (US) corporation with its own
17+
[bylaws](/policies/oss-bylaws.pdf).
18+
19+
The best way to contact OSF or OSS is by sending an email to
20+
<[email protected]>. For postal contact, use the following:
21+
22+
> 40 E Main St, Suite 744\
23+
> Newark DE 19711\
24+
> USA

community/dirdata.yaml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
breadcrumbs:
3+
- |
4+
[Home](/) : [Community](.)
5+
sidebar:
6+
- |
7+
# [Community](.)
8+
9+
- [List of Committers](committers.html)
10+
- [OpenSSL Technical Committee](otc.html)
11+
- [OpenSSL Management Committee](omc.html)
12+
- [Code of Conduct](conduct.html)
13+
- [Contact Information](contacts.html)
14+
- [Getting Started as a Contributor](getting-started.html)
15+
- [Mailing Lists](mailinglists.html)
16+
- [Wiki](https://wiki.openssl.org)
17+
- [Blog](/blog)
18+
- [Binaries and Engines](binaries.html)
19+
- [Thanks!](thanks.html)
20+
---

0 commit comments

Comments
 (0)