Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/cn/community/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ menu:
weight: 40
---

<!--add blocks of content here to add more sections to the community page -->
查看 [项目成熟度](/community/maturity/) 评估。
2 changes: 1 addition & 1 deletion content/en/community/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ menu:
weight: 40
---

<!--add blocks of content here to add more sections to the community page -->
Visit the [Project Maturity]({{< relref "maturity" >}}) assessment.
32 changes: 19 additions & 13 deletions maturity.md → content/en/community/maturity.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
---
title: Maturity
description: Apache HugeGraph maturity assessment
weight: 50
---

# Maturity Assessment for Apache HugeGraph (incubating)

The goals of this maturity model are to describe how Apache projects operate in a concise and high-level way, and to provide a basic framework that projects may choose to use to evaluate themselves.
Expand All @@ -14,27 +20,27 @@ The following table is filled according to the [Apache Maturity Model](https://c

### CODE

| **ID**   | **Description** | **Status** |
| -------- | ----- | ---------- |
| **ID** | **Description** | **Status** |
| -------- | --------------- | ---------- |
| **CD10** | The project produces Open Source software for distribution to the public, at no charge.                                                                                                                                                                         | **YES** The project source code is licensed under the `Apache License 2.0`. |
| **CD20** | Anyone can easily discover and access the project's code..                                                                                                                                                                                                     | **YES** The [official website](https://hugegraph.apache.org/) includes a link to the [GitHub repository](https://github.com/apache/hugegraph). |
| **CD20** | Anyone can easily discover and access the project's code.                                                                                                                                                                                                     | **YES** The [official website](https://hugegraph.apache.org/) includes a link to the [GitHub repository](https://github.com/apache/hugegraph). |
| **CD30** | Anyone using standard, widely-available tools, can build the code in a reproducible way.                                                                                                                                                                       | **YES**  Apache HugeGraph provides a [Quick Start](https://hugegraph.apache.org/docs/quickstart/hugegraph/hugegraph-server/) document that explains how to compile the source code. |
| **CD40** | The full history of the project's code is available via a source code control system, in a way that allows anyone to recreate any released version.                                _                                                                   | **YES** The project uses Git, and anyone can view the full history of the project via commit logs and tags for each release. |
| **CD40** | The full history of the project's code is available via a source code control system, in a way that allows anyone to recreate any released version. | **YES** The project uses Git, and anyone can view the full history of the project via commit logs and tags for each release. |
| **CD50** | The source code control system establishes the provenance of each line of code in a reliable way, based on strong authentication of the committer. When third parties contribute code, commit messages provide reliable information about the code provenance. | **YES** The project uses GitHub managed by Apache Infra, ensuring provenance of each line of code to a committer. Third-party contributions are accepted via pull requests in accordance with the [Contribution Guidelines](https://hugegraph.apache.org/docs/contribution-guidelines/).|

### LICENSE

| **ID**   | **Description**                                                                                                                                                                                                                                                                 | **Status** |
| **ID**   | **Description** | **Status** |
| -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- |
| **LC10** | The Apache License, version 2.0, covers the released code.                                                                                                                                                                                                                     | **YES** The [LICENSE](https://github.com/apache/hugegraph/blob/master/LICENSE) file is present in the source repository. All source files contain the APLv2 header, which is checked by the Apache Rat plugin during builds. |
| **LC20** | Libraries that are mandatory dependencies of the project's code do not create more restrictions than the Apache License does.                                      _                                                                                                   | **YES** All dependencies have been checked and none of them create more restrictions than the Apache License does. |
| **LC30** | The libraries mentioned in LC20 are available as Open Source software.                                                                                                                                          _                                           | **YES** Dependencies are available in public Maven repositories. |
| **LC20** | Libraries that are mandatory dependencies of the project's code do not create more restrictions than the Apache License does.                                                                                                                                         | **YES** All dependencies have been checked and none of them create more restrictions than the Apache License does. |
| **LC30** | The libraries mentioned in LC20 are available as Open Source software.                                                                                                                                                                                     | **YES** Dependencies are available in public Maven repositories. |
| **LC40** | Committers are bound by an Individual Contributor Agreement (the "Apache iCLA") that defines which code they may commit and how they need to identify code that is not their own. | **YES** All committers have a signed iCLA on file with the ASF. |
| **LC50** | The project clearly defines and documents the copyright ownership of everything that the project produces.                                                                                                                                                                              | **YES** This is documented via copyright notices in the source files and the NOTICE file. |

### Releases

| **ID**   | **Description**                                    _                                                                                                                                                                                                                | **Status** |
| **ID**   | **Description** | **Status** |
| -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- |
| **RE10** | Releases consist of source code, distributed using standard and open archive formats that are expected to stay readable in the long term.                                                                                                                                       | **YES** Source releases are distributed via [dist.apache.org](https://dist.apache.org/repos/dist/release/incubator/hugegraph/) and linked from the website's [download page](https://hugegraph.apache.org/docs/download/download/). |
| **RE20** | The project's PMC (Project Management Committee, see CS10) approves each software release in order to make the release an act of the Foundation.                                                                                                                                                                          | **YES** All releases are voted on by the PMC on the dev@hugegraph.apache.org mailing list. |
Expand All @@ -44,7 +50,7 @@ The following table is filled according to the [Apache Maturity Model](https://c

### Quality

| **ID**   | **Description**                                                                                                                                                                                                                                                                 | **Status** |
| **ID**   | **Description** | **Status** |
| -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- |
| **QU10** | 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. | **YES** Users are encouraged to [report issues](https://github.com/apache/hugegraph/issues) on GitHub, and all discussions are public. |
| **QU20** | The project puts a very high priority on producing secure software.                                                                                                                                                                                                            | **YES** All reported security issues are treated with high priority. |
Expand All @@ -54,7 +60,7 @@ The following table is filled according to the [Apache Maturity Model](https://c

### Community

| **ID**   | **Description**                                                                                                                                                                                                                                                                 | **Status** |
| **ID**   | **Description** | **Status** |
| -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- |
| **CO10** | The project has a well-known homepage that points to all the information required to operate according to this maturity model. | **YES** The [website](https://hugegraph.apache.org/) serves as the central point for project information. |
| **CO20** | The community welcomes contributions from anyone who acts in good faith and in a respectful manner, and who adds value to the project. | **YES** Apache HugeGraph has a [Contribution Guidelines](https://hugegraph.apache.org/docs/contribution-guidelines/) page and welcomes all valuable contributions. |
Expand All @@ -66,17 +72,17 @@ The following table is filled according to the [Apache Maturity Model](https://c

### Consensus

| **ID**   | **Description**                                                                                                                                                                                                                                                                 | **Status** |
| **ID**   | **Description** | **Status** |
| -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- |
| **CS10** | The project maintains a public list of its contributors who have decision power. The project's PMC (Project Management Committee) consists of those contributors. | **YES** The website maintains a public list of all [PMC members and committers](https://incubator.apache.org/clutch/hugegraph.html). |
| **CS20** | Decisions require a consensus among PMC members and are documented on the project's main communications channel. The PMC takes community opinions into account, but the PMC has the final word. | **YES** All decisions are made by votes on the dev@hugegraph.apache.org mailing list, requiring at least three +1 votes from PMC members and no vetos. |
| **CS30** | The project uses documented voting rules to build consensus when discussion is not sufficient. | **YES** The project uses the standard ASF voting rules. |
| **CS40** |In Apache projects, vetoes are only valid for code commits. The person exercising the veto must justify it with a technical explanation, as per the Apache voting rules defined in CS30. | **YES** The HugeGraph community follows this principle. |
| **CS40** | In Apache projects, vetoes are only valid for code commits. The person exercising the veto must justify it with a technical explanation, as per the Apache voting rules defined in CS30. | **YES** The HugeGraph community follows this principle. |
| **CS50** | 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. | **YES** All important discussions and decisions are documented on the public mailing list for transparency and accessibility. |

### Independence

| **ID**   | **Description**                                                                                                                                                                                                                                                                 | **Status** |
| **ID**   | **Description** | **Status** |
| -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- |
| **IN10** | The project is independent from any corporate or organizational influence. | **YES** The PMC members and committers of Apache HugeGraph are from 10+ different companies/college/institution, ensuring no single entity controls the project. |
| **IN20** | Contributors act as themselves, not as representatives of a corporation or organization. | **YES** Contributions are made by individuals on behalf of the project and community, not their employers. |
20 changes: 17 additions & 3 deletions themes/docsy/layouts/_default/single.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
{{ define "main" }}
{{ with .Content }}
{{ . }}
<div class="row flex-xl-nowrap">
<div class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
{{ partial "sidebar.html" . }}
</div>
<main class="col-12 col-md-9 col-xl-8 pl-md-5" role="main">
<header class="mb-4">
<h1 class="h2">{{ .Title }}</h1>
</header>
<div class="td-content">
{{ with .Content }}{{ . }}{{ end }}
{{ partial "page-meta-lastmod.html" . }}
</div>
</main>
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
{{ partial "toc.html" . }}
</div>
</div>
{{ end }}
{{ end }}