Add FEP-1

The FEP-1 describes what FEPs are and process around them.

Signed-off-by: Stanislav Bogatyrev <s.bogatyrev@yadro.com>
This commit is contained in:
Stanislav Bogatyrev 2023-02-01 17:33:08 +03:00 committed by Stanislav Bogatyrev
parent e9c9830f0a
commit 01d465cb33
11 changed files with 1225 additions and 45 deletions

3
.github/CODEOWNERS vendored Normal file
View file

@ -0,0 +1,3 @@
/content/proposals/proc/* @TrueCloudLab/community-committee
/content/proposals/std/* @TrueCloudLab/architecture-committee
/content/proposals/info/* @TrueCloudLab/architecture-committee @TrueCloudLab/community-committee

View file

@ -6,6 +6,8 @@ disableLanguages = []
title = 'FrostFS site'
theme = 'dot-hugo'
enableEmoji = true
# unsafe html
[markup.goldmark.renderer]
unsafe = true

View file

@ -8,9 +8,17 @@ date: "2022-12-22"
### Introduction
This proposals contains the index of all FrostFS Enhancement Proposals. Proposals numbers are assigned by the proposals editors, and once assigned are never changed.
### PEP Status Key
FrostFS Enhancement Proposals (FEPs) describe standards for the whole FrostFS
stack, including core protocol, API specification and services behavior.
Proposals numbers are assigned by the proposals editors, and once assigned are
never changed.
To learn more about the purpose of FEPs and how to go about writing one, please
refer to [FEP-1]({{< ref "/proposals/proc/fep-0001" >}}).
### FEP Status Key
- **Accepted** — Normative proposal accepted for implementation
- **Active** — Currently valid informational guidance, or an in-use process
@ -19,5 +27,5 @@ This proposals contains the index of all FrostFS Enhancement Proposals. Proposal
- **Final** — Accepted and implementation complete, or no longer active
- **Provisional** — Provisionally accepted but additional feedback needed
- **Rejected** — Formally declined and will not be accepted
- **Superseded** — Replaced by another succeeding PEP
- **Superseded** — Replaced by another succeeding FEP
- **Withdrawn** — Removed from consideration by sponsor or authors

View file

@ -1,14 +0,0 @@
---
title: "Core"
date: "2022-12-22"
---
{{< proposals_table "core" "Accepted" >}}
{{< proposals_table "core" "Active" >}}
{{< proposals_table "core" "Deferred" >}}
{{< proposals_table "core" "Draft" >}}
{{< proposals_table "core" "Final" >}}
{{< proposals_table "core" "Provisional" >}}
{{< proposals_table "core" "Rejected" >}}
{{< proposals_table "core" "Superseded" >}}
{{< proposals_table "core" "Withdrawn" >}}

View file

@ -0,0 +1,14 @@
---
title: "Informational"
date: "2023-02-01"
---
{{< proposals_table "info" "Accepted" >}}
{{< proposals_table "info" "Active" >}}
{{< proposals_table "info" "Deferred" >}}
{{< proposals_table "info" "Draft" >}}
{{< proposals_table "info" "Final" >}}
{{< proposals_table "info" "Provisional" >}}
{{< proposals_table "info" "Rejected" >}}
{{< proposals_table "info" "Superseded" >}}
{{< proposals_table "info" "Withdrawn" >}}

View file

@ -1,14 +0,0 @@
---
title: "Meta"
date: "2022-12-22"
---
{{< proposals_table "meta" "Accepted" >}}
{{< proposals_table "meta" "Active" >}}
{{< proposals_table "meta" "Deferred" >}}
{{< proposals_table "meta" "Draft" >}}
{{< proposals_table "meta" "Final" >}}
{{< proposals_table "meta" "Provisional" >}}
{{< proposals_table "meta" "Rejected" >}}
{{< proposals_table "meta" "Superseded" >}}
{{< proposals_table "meta" "Withdrawn" >}}

View file

@ -0,0 +1,587 @@
---
FEP: 1
Title: FEP Purpose and Guidelines
Author: Stanislav Bogatyrev <realloc@realloc.spb.ru>
Discussions-To: https://github.com/TrueCloudLab/frostfs.info/pull/3
Status: Draft
Type: Process
Date: 2023-02-01
---
### What is a FEP?
FEP stands for FrostFS Enhancement Proposal. The idea and most of the process is
derived from Python [PEP-1](https://www.python.org/dev/peps/pep-0001/). Almost
all text was simply copied and modified.
A FEP is a design document providing information to the FrostFS community, or
describing a new feature for FrostFS or its processes or environment. The FEP
should provide a concise technical specification of the feature and a rationale
for the feature.
We intend FEPs to be the primary mechanisms for proposing major new features,
for collecting community input on an issue, and for documenting the design
decisions that have gone into FrostFS. The FEP author is responsible for
building consensus within the community and documenting dissenting opinions.
Because the FEPs are maintained as text files in a versioned repository, their
revision history is the historical record of the feature proposal. This
historical record is available by the normal git commands for retrieving older
revisions, and can also be browsed on GitHub in [frostfs.info
repository](https://github.com/TrueCloudLab/frostfs.info/tree/master/content/proposals).
The current rendered version is available on [frostfs.info
site](https://frostfs.info/proposals/).
### FEP Audience
The typical primary audience for FEPs are the FrostFS Core and Service
developers, Architecture Committee, as well as developers of applications
relying on FrostFS or using it's parts.
However, other parts of the FrostFS community may also choose to use the process
(particularly for Informational FEPs) to document expected API conventions and
to manage complex design coordination problems that require collaboration across
multiple projects.
### FEP Types
There are three kinds of FEP:
1. A **Standards Track** FEP describes a new feature or implementation for
FrostFS. It may also describe an interoperability standard that will be
supported outside the standard API for current FrostFS versions before a
subsequent FEP adds support for that API in a future version.
2. An **Informational** FEP describes a FrostFS design issue, or provides
general guidelines or information to the community, but does not propose a
new feature. Informational FEPs do not necessarily represent a FrostFS
community consensus or recommendation, so users and implementers are free to
ignore Informational FEPs or follow their advice.
3. A **Process** FEP describes a process surrounding FrostFS, or proposes a
change to (or an event in) a process. Process FEPs are like Standards Track
FEPs but apply to areas other than the FrostFS itself. They may propose an
implementation, but not to FrostFS's codebase; they often require community
consensus; unlike Informational FEPs, they are more than recommendations, and
community members are typically not free to ignore them. Examples include
procedures, guidelines, changes to the decision-making process, and changes
to the tools or environment used in FrostFS development.
### FEP Workflow
#### Starting with an idea
There are several references in this FEP to the "Architecture Committee",
"Community Committee", "Committers" and "Developers". The detailed roles and
project governance description is available in FEP-X (FrostFS Project
Governance).
The FEP process begins with a new idea for the FrostFS stack. It is highly
recommended that a single FEP contain a single key proposal or new idea; the
more focused the FEP, the more successful it tends to be. Most enhancements and
bug fixes don't need a FEP and can be submitted directly to the GitHub issue
tracker for the corresponding repository. The Architecture Committee reserves
the right to reject FEP proposals if they appear too unfocused or too broad. If
in doubt, split your FEP into several well-focused ones.
Each FEP must have a champion -- someone who writes the FEP using the style and
format described below, shepherds the discussions in the appropriate GitHub
issues or chats, and attempts to build community consensus around the idea. The
FEP author should first attempt to ascertain whether the idea is feasible for
the new FEP. Creating an issue in appropriate GitHub repository with 'idea' or
'discussion' label is usually the best way to go about this, unless a more
specialized venue is appropriate.
Vetting an idea publicly before going as far as writing a FEP is meant to save
the potential author time. Asking the FrostFS community first if an idea is
original helps prevent too much time being spent on something that is guaranteed
to be rejected based on prior discussions (searching the internet does not
always do the trick). It also helps to make sure the idea is applicable to the
entire community and not just the author. Just because an idea sounds good to
the author does not mean it will work for most people in most areas where
FrostFS is used.
Once the champion has asked the community as to whether an idea has any chance
of acceptance, a draft FEP should be presented to the appropriate venue
mentioned above. This gives the author a chance to flesh out the draft FEP to
make properly formatted, of high quality, and to address initial concerns about
the proposal.
#### Submitting a FEP
Following the above initial discussion, the workflow varies based on whether any
of the FEP's co-authors are Committers. If one or more of the FEP's co-authors
are Committers, they are responsible for following the process outlined below.
Otherwise (i.e. none of the co-authors are Committers), then the FEP author(s)
will need to find a sponsor for the FEP.
Ideally, a Committer sponsor is identified, but non-Committer sponsors may also
be selected with the approval of the Architecture Committee. Members of the
GitHub "Committers" and "Architecture Committee" teams are pre-approved to be
sponsors. The sponsor's job is to provide guidance to the FEP author to help
them through the logistics of the FEP process (somewhat acting like a mentor).
Being a sponsor does **not** disqualify that person from becoming a co-author.
The sponsor of a FEP is recorded in the "Sponsor:" field of the header.
Once the sponsor or the Committer(s) co-authoring the FEP deem the document
ready for submission, the proposal should be submitted as a draft FEP via a
[GitHub pull request in frostfs.info
repository](https://github.com/TrueCloudLab/frostfs.info/pulls). The draft must
be written in FEP style as described below, else it will fail review immediately
(although minor errors may be corrected by the editors).
The standard FEP workflow is:
* You, the FEP author, fork the [frostfs.info
repository](https://github.com/TrueCloudLab/frostfs.info/), and create a file
named `content/proposals/<type>/fep-X.md` that contains your new FEP. Use "X"
as your draft FEP number.
* In the "Type:" header field, enter "Standards Track",
"Informational", or "Process" as appropriate, and for the "Status:"
field enter "Draft". For full details, see [FEP Header Preamble]({{<ref
"#fep_header_preamble">}}).
* Update `.github/CODEOWNERS` such that any co-author(s) or sponsors with write
access to the repository are listed for your new file. This ensures any future
pull requests changing the file will be assigned to them.
* Push this to your GitHub fork and submit a pull request.
* The FEP editors review your PR for structure, formatting, and other
errors. Approval criteria are:
* It sound and complete. The ideas must make technical sense. The editors do
not consider whether they seem likely to be accepted.
* The title accurately describes the content.
* The FEP's language (spelling, grammar, sentence structure, etc.) and code
style should be correct and conformant. FEPs with invalid markup will not be
approved.
Editors are generally quite lenient about this initial review, expecting that
problems will be corrected by the reviewing process.
**Note:** Approval of the FEP is no guarantee that there are no embarrassing
mistakes! Correctness is the responsibility of authors and reviewers, not the
editors.
If the FEP isn't ready for approval, an editor will send it back to the author
for revision, with specific instructions, using GitHub pull requests
mechanism.
* Once approved, Architecture Committee will assign your FEP a number.
Once the review process is complete, and the FEP editors approve it (note that
this is *not* the same as accepting your FEP!), they will squash commit your
pull request onto the `master` branch.
The FEP editors will not unreasonably deny publication of a FEP. Reasons for
denying FEP status include duplication of effort, being technically unsound, not
providing proper motivation or addressing backwards compatibility, or not in
keeping with the FrostFS philosophy. The Architecture Committee can be consulted
during the approval phase, and are the final arbiter of a draft's FEP-ability.
As updates are necessary, the FEP author can check in new versions if they (or a
collaborating developer) have write access to the FEP repository. Getting a FEP
number assigned early can be useful for ease of reference, especially when
multiple draft FEPs are being considered at the same time.
Standards Track FEPs consist of two parts, a design document and a reference
implementation or prototype with proof of concept. It is generally recommended
that at least a prototype implementation be co-developed with the FEP, as ideas
that sound good in principle sometimes turn out to be impractical when subjected
to the test of implementation.
#### Discussing a FEP
As soon as a FEP number has been assigned and the draft FEP is committed to the
FEP repository, a discussion thread for the FEP should be created to provide a
central place to discuss and review its contents, and the FEP should be updated
so that the ``Discussions-To`` header links to it. Normally it should be an
issue or Pull Request on GitHub.
If a FEP undergoes a significant re-write or other major, substantive changes to
its proposed specification, a new GitHub issue should typically be created to
solicit additional feedback. If this occurs, the ``Discussions-To`` link must be
updated and a new ``Post-History`` entry added pointing to this new thread.
FEP authors are responsible for collecting community feedback on a FEP before
submitting it for review. However, to avoid long-winded and open-ended
discussions, strategies such as soliciting private or more narrowly-tailored
feedback in the early design phase, collaborating with other community members
with expertise in the FEP's subject matter, and picking an
appropriately-specialized discussion for the FEP's topic (if applicable) should
be considered. FEP authors should use their discretion here.
Once the FEP is assigned a number and committed to the FEP repository,
substantive issues should generally be discussed in corresponding GitHub pull
request reviews or issues. This ensures everyone can follow and contribute,
avoids fragmenting the discussion, and makes sure it is fully considered as part
of the FEP review process. Comments, support, concerns and other feedback on
this designated thread are a critical part of what the Architecture Committee or
FEP-Delegate will consider when reviewing the FEP.
#### FEP Review & Resolution
Once the authors have completed a FEP, they may request a review for style and
consistency from the FEP editors. However, content review and acceptance of the
FEP is ultimately the responsibility of the Architecture Committee or Community
Committee, which is formally initiated by opening a Pull Request once the
authors determine the FEP is ready for final review and resolution.
To expedite the process in selected cases (e.g. when a change is clearly
beneficial and ready to be accepted, but the FEP hasn't been formally submitted
for review yet), the Architecture Committee or Community Committee may also
initiate a FEP review, first notifying the FEP author(s) and giving them a
chance to make revisions.
For a FEP to be accepted it must meet certain minimum criteria. It must be a
clear and complete description of the proposed enhancement. The enhancement must
represent a net improvement. The proposed implementation, if applicable, must be
solid and must not complicate the system unduly. Finally, a proposed enhancement
must follow the spirit of decentralization and reliability in order to be
accepted by the Architecture or Community Committees. (However, the spirit is an
imprecise description; it may be defined as whatever is acceptable to the
Committee. This logic is intentionally circular.)
Once a FEP has been accepted, the reference implementation must be completed.
When the reference implementation is complete and incorporated into the main
source code repository, the status will be changed to "Final".
To allow gathering of additional design and interface feedback before committing
to long term stability for data storage format, protocols or API, a FEP may also
be marked as "Provisional". This is short for "Provisionally Accepted", and
indicates that the proposal has been accepted for inclusion in the reference
implementation, but additional user feedback is needed before the full design
can be considered "Final". Unlike regular accepted FEPs, provisionally accepted
FEPs may still be Rejected or Withdrawn *even after the related changes have
been included in a FrostFS release*.
Wherever possible, it is considered preferable to reduce the scope of a proposal
to avoid the need to rely on the "Provisional" status (e.g. by deferring some
features to later FEPs), as this status can lead to version compatibility
challenges in the wider FrostFS ecosystem.
A FEP can also be assigned the status "Deferred". The FEP author or an editor
can assign the FEP this status when no progress is being made on the FEP. Once a
FEP is deferred, a FEP editor can reassign it to draft status.
A FEP can also be "Rejected". Perhaps after all is said and done it was not a
good idea. It is still important to have a record of this fact. The "Withdrawn"
status is similar - it means that the FEP author themselves has decided that the
FEP is actually a bad idea, or has accepted that a competing proposal is a
better alternative.
When a FEP is Accepted, Rejected or Withdrawn, the FEP should be updated
accordingly. In addition to updating the Status field, at the very least the
Resolution header should be added with a direct link to the relevant post making
a decision on the FEP.
FEPs can also be superseded by a different FEP, rendering the original obsolete.
This is intended for Informational FEPs, where version 2 of an API can replace
version 1.
The possible paths of the status of FEPs are as follows:
![FEP process flow diagram](process_flow.svg)
While not shown in the diagram, "Accepted" FEPs may technically move to
"Rejected" or "Withdrawn" even after acceptance. This will only occur if the
implementation process reveals fundamental flaws in the design that were not
noticed prior to acceptance of the FEP. Unlike Provisional FEPs, these
transitions are only permitted if the accepted proposal has *not* been included
in a FrostFS release - released changes must instead go through the regular
deprecation process (which may require a new FEP providing the rationale for the
deprecation).
Some Informational and Process FEPs may also have a status of "Active" if they
are never meant to be completed. E.g. [FEP-1]({{< ref "/proposals/proc/fep-0001"
>}}) (this FEP :smile:).
#### FEP Maintenance {#fep_maintenance}
In general, FEPs are no longer substantially modified after they have reached
the Accepted, Final, Rejected or Superseded state. Once resolution is reached, a
FEP is considered a historical document rather than a living specification.
Formal documentation of the expected behavior should be maintained elsewhere,
such as the API specification.
If changes based on implementation experience and user feedback are made to
Standards track FEPs while in the Provisional or (with Committee approval)
Accepted state, they should be noted in the FEP, such that the FEP accurately
describes the implementation at the point where it is marked Final.
Active (Informational and Process) FEPs may be updated over time to reflect
changes to development practices and other details. The precise process
followed in these cases will depend on the nature and purpose of the FEP
in question.
Occasionally, a Deferred or even a Withdrawn FEP may be resurrected
with major updates, but it is often better to just propose a new one.
### What belongs in a successful FEP?
Each FEP should have the following parts/sections:
1. Preamble -- RFC-2822 style headers in [Hugo page level
params](https://gohugo.io/variables/page/#page-level-params) format
containing meta-data about the FEP, including the FEP number, a short
descriptive title (limited to a maximum of 44 characters), the names, and
optionally the contact info for each author, etc.
2. Abstract -- a short (~200 word) description of the technical issue being
addressed.
3. Motivation -- The motivation is critical flor FEPs that want to change the
FrostFS protocols, data formats, API, or ecosystem. It should clearly explain
why the existing specification is inadequate to address the problem that the
FEP solves. This can include collecting documented support for the FEP from
important projects in the FrostFS ecosystem. FEP submissions without
sufficient motivation may be rejected.
4. Rationale -- The rationale fleshes out the specification by describing why
particular design decisions were made. It should describe alternate designs
that were considered and related work, e.g. how the feature is supported in
other systems.
The rationale should provide evidence of consensus within the community and
discuss important objections or concerns raised during discussion.
5. Specification -- The technical specification should describe the semantics of
any new feature. The specification should be detailed enough to allow
competing, interoperable implementations.
6. Backwards Compatibility -- All FEPs that introduce backwards
incompatibilities must include a section describing these incompatibilities
and their severity. The FEP must explain how the author proposes to deal with
these incompatibilities. FEP submissions without a sufficient backwards
compatibility treatise may be rejected outright.
7. Security Implications -- If there are security concerns in relation to the
FEP, those concerns should be explicitly written out to make sure reviewers
of the FEP are aware of them.
8. How to Teach This -- For a FEP that adds new functionality or changes system
behavior, it is helpful to include a section on how to teach users, new and
experienced, how to apply the FEP to their work.
9. Reference Implementation -- The reference implementation must be completed
before any FEP is given status "Final", but it need not be completed before
the FEP is accepted. While there is merit to the approach of reaching
consensus on the specification and rationale before writing code, the
principle of "rough consensus and running code" is still useful when it comes
to resolving many discussions of API details.
10. Rejected Ideas -- Throughout the discussion of a FEP, various ideas will be
proposed which are not accepted. Those rejected ideas should be recorded
along with the reasoning as to why they were rejected. This both helps
record the thought process behind the final version of the FEP as well as
preventing people from bringing up the same rejected idea again in
subsequent discussions.
In a way this section can be thought of as a breakout section of the
Rationale section that is focused specifically on why certain ideas were not
ultimately pursued.
11. Open Issues -- While a FEP is in draft, ideas can come up which warrant
further discussion. Those ideas should be recorded so people know that they
are being thought about but do not have a concrete resolution. This helps
make sure all issues required for the FEP to be ready for consideration are
complete and reduces people duplicating prior discussion.
12. Footnotes -- A collection of footnotes cited in the FEP, and a place to list
non-inline hyperlink targets.
13. Copyright/license -- Each new FEP must be placed under a Creative Commons
Attribution-NonCommercial-ShareAlike 4.0 International License ([CC BY-NC-SA
4.0](http://creativecommons.org/licenses/by-nc-sa/4.0/)).
### FEP Formats and Templates
FEPs are UTF-8 encoded text files using the Markdown format in a dialect used by
[Hugo](https://gohugo.io/) static site generator. Markdown allows for rich
markup that is still quite easy to read, but also results in good-looking and
functional HTML.
The FEP text files are automatically converted to HTML for easier online reading
at [FrostFS site](https://frostfs.info/proposals/)
### FEP Header Preamble {#fep_header_preamble}
Each FEP must begin with an RFC-2822 style preamble in [Hugo page level
params](https://gohugo.io/variables/page/#page-level-params) format. The
headers must appear in the following order. Headers marked with "*" are
optional and are described below. All other headers are required.
```YAML
FEP: <fep number>
Title: <fep title>
Author: <list of authors' real names and optionally, email addrs>
* Sponsor: <real name of sponsor>
Discussions-To: <URL of current canonical discussion thread>
Status: <Draft | Active | Accepted | Provisional | Deferred | Rejected |
Withdrawn | Final | Superseded>
Type: <Standards Track | Informational | Process>
Date: <date created on, in yyyy-mm-dd format>
* Requires: <fep numbers>
* Replaces: <fep number>
* Superseded-By: <fep number>
```
The Author header lists the names, and optionally the email addresses of GitHub
handles of all the authors/owners of the FEP. The format of the Author header
values must be:
```YAML
Random J. User <random@example.com>
```
if the email address is included, and just:
```YAML
Random J. User
```
if the address is not given.
If there are multiple authors, each should be on a separate line as defined in
YAML list format, like:
```YAML
Author:
- Random J. User <random@example.com>
- Snegurocka (@snegurochka-chan)
```
The Sponsor field records which Committer or developer (approved by the
Architecture Committees) is sponsoring the FEP. If one of the authors of the FEP
is a Committer then no sponsor is necessary and thus this field should be left
out.
The Discussions-To header provides the URL to the relevant discussion thread for
the FEP. Normally a GitHub issue or Pull Request. For email lists, this should
be a direct link to the thread in the list's archives, rather than just a
mailto: or hyperlink to the list itself.
The Type header specifies the type of FEP: Standards Track, Informational, or
Process.
The Date header records the date that the FEP was assigned a number. Dates
should be in `yyyy-mm-dd` format, e.g. `2023-02-01`.
FEPs may have a Requires header, indicating the FEP numbers that this FEP
depends on.
FEPs may also have a Superseded-By header indicating that a FEP has been
rendered obsolete by a later document; the value is the number of the FEP that
replaces the current document. The newer FEP must have a Replaces header
containing the number of the FEP that it rendered obsolete.
### Auxiliary Files
FEPs may include auxiliary files such as diagrams. All support files may be
placed in a subdirectory called ``fep-XXXX``, where "XXXX" is the FEP number.
When using a subdirectory, there are no constraints on the names used in files.
### Changing Existing FEPs
Draft FEPs are freely open for discussion and proposed modification, at the
discretion of the authors, until submitted to the corresponding Committee for
review and resolution. Substantive content changes should generally be first
proposed on the FEP's discussion thread listed in its `Discussions-To` header,
while copyedits and corrections can be submitted as a GitHub issue or Pull
Request. FEP authors with write access to the FEP repository can update the FEPs
themselves by using a GitHub PR to submit their changes. For guidance on
modifying other FEPs, consult the [FEP Maintenance]({{<ref
"#fep_maintenance">}}) section.
See the [Contributing
Guide](https://github.com/TrueCloudLab/frostfs.info/blob/master/CONTRIBUTING.md)
for additional details, and when in doubt, please check first with the FEP
author and/or a FEP editor.
### Transferring FEP Ownership
It occasionally becomes necessary to transfer ownership of FEPs to a new
champion. In general, it is preferable to retain the original author as a
co-author of the transferred FEP, but that's really up to the original author. A
good reason to transfer ownership is because the original author no longer has
the time or interest in updating it or following through with the FEP process,
or has fallen off the face of the 'net (i.e. is unreachable or not responding to
email). A bad reason to transfer ownership is because the author doesn't agree
with the direction of the FEP. One aim of the FEP process is to try to build
consensus around a FEP, but if that's not possible, an author can always submit
a competing FEP.
If you are interested in assuming ownership of a FEP, you can also do this via
pull request. Fork the FEP repository, make your ownership modification, and
submit a pull request. You should mention both the original author and
`@TrueCloudLab/architecture-committee` or `@TrueCloudLab/community-committee` in a
comment on the pull request. (If the original author's GitHub username is
unknown, use email.) If the original author doesn't respond in a timely manner,
the Committee will make a unilateral decision (it's not like such decisions
can't be reversed :smile:.
### Committee Responsibilities & Workflow
A FEP editor must be added to the `@TrueCloudLab/architecture-committee` or
`@TrueCloudLab/community-committee` group on GitHub, depending on the relevant
FEP types, and must watch the [FEP
repository](https://github.com/TrueCloudLab/frostfs.info).
Note that developers with write access to the `FEP repository` may handle the
tasks that would normally be taken care of by the FEP editors. Alternately, even
developers may request assistance from FEP editors by mentioning the relevant
group on GitHub.
For each new FEP that comes in an editor does the following:
* Make sure that the FEP is either co-authored by a Committer, has a Committer
as a sponsor, or has a sponsor specifically approved for this FEP by the
Committee.
* Read the FEP to check if it is ready: sound and complete. The ideas must make
technical sense, even if they don't seem likely to be accepted.
* The title should accurately describe the content.
* The file name extension is correct (i.e. `.md`).
* Ensure that everyone listed as a sponsor or co-author of the FEP who has write
access to the FEP repository is added to `.github/CODEOWNERS`.
* Skim the FEP for obvious defects in language (spelling, grammar, sentence
structure, etc.), and code style . Editors may correct problems themselves,
but are not required to do so.
* If a project is portrayed as benefiting from or supporting the FEP, make sure
there is some direct indication from the project included to make the support
clear. This is to avoid a FEP accidentally portraying a project as supporting
a FEP when in fact the support is based on conjecture.
If the FEP isn't ready, an editor will send it back to the author for revision,
with specific instructions.
Once the FEP is ready for the repository, a FEP editor will:
* Assign a FEP number (almost always just the next available number, but
sometimes it's a special/joke number, like 666 or 3141).
* Check that the author has correctly labeled the FEP's type
("Standards Track", "Informational", or "Process"), and marked its
status as "Draft".
* Ensure all CI build and lint checks pass without errors,
and there are no obvious issues in the rendered preview output.
* Merge the new (or updated) FEP.
* Inform the author of the next steps (open a discussion thread and
update the FEP with it, post an announcement, etc).
Updates to existing FEPs should be submitted as a GitHub pull request.
### Copyright
This work is licensed under a Creative Commons
Attribution-NonCommercial-ShareAlike 4.0 International License.

View file

@ -0,0 +1,14 @@
---
title: "Process"
date: "2022-12-22"
---
{{< proposals_table "proc" "Accepted" >}}
{{< proposals_table "proc" "Active" >}}
{{< proposals_table "proc" "Deferred" >}}
{{< proposals_table "proc" "Draft" >}}
{{< proposals_table "proc" "Final" >}}
{{< proposals_table "proc" "Provisional" >}}
{{< proposals_table "proc" "Rejected" >}}
{{< proposals_table "proc" "Superseded" >}}
{{< proposals_table "proc" "Withdrawn" >}}

View file

@ -0,0 +1,580 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
width="518.000000pt"
height="230.000000pt"
viewBox="0 0 518.000000 230.000000"
preserveAspectRatio="xMidYMid meet"
id="svg3789"
sodipodi:docname="pep-0001-1.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
<metadata
id="metadata3795">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3793">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0.0"
refX="0.0"
id="marker26466"
style="overflow:visible;"
inkscape:isstock="true">
<path
id="path26464"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.4) rotate(180) translate(10,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker24282"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Mend"
inkscape:collect="always">
<path
transform="scale(0.4) rotate(180) translate(10,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path24280" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker18063"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Mend">
<path
transform="scale(0.4) rotate(180) translate(10,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path18061" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0.0"
refX="0.0"
id="marker16749"
style="overflow:visible;"
inkscape:isstock="true">
<path
id="path16747"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.4) rotate(180) translate(10,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker15177"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Mend"
inkscape:collect="always">
<path
transform="scale(0.4) rotate(180) translate(10,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path15175" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0.0"
refX="0.0"
id="marker14679"
style="overflow:visible;"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path14677"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.4) rotate(180) translate(10,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker13779"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Mend"
inkscape:collect="always">
<path
transform="scale(0.4) rotate(180) translate(10,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path13777" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0.0"
refX="0.0"
id="marker12309"
style="overflow:visible;"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path12307"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.4) rotate(180) translate(10,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker11613"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Mend">
<path
transform="scale(0.4) rotate(180) translate(10,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path11611" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0.0"
refX="0.0"
id="marker9945"
style="overflow:visible;"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path9943"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.4) rotate(180) translate(10,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="marker5313"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Mend"
inkscape:collect="always">
<path
transform="scale(0.4) rotate(180) translate(10,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path5311" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Mend"
style="overflow:visible;"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path4732"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.4) rotate(180) translate(10,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Lend"
style="overflow:visible;"
inkscape:isstock="true">
<path
id="path4726"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) rotate(180) translate(12.5,0)" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0.0"
refX="0.0"
id="marker5033"
style="overflow:visible;"
inkscape:isstock="true">
<path
id="path5031"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="scale(1.1) rotate(180) translate(1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Lstart"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path4723"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.8) translate(12.5,0)" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow2Lend"
style="overflow:visible;"
inkscape:isstock="true">
<path
id="path4744"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="scale(1.1) rotate(180) translate(1,0)" />
</marker>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1376"
id="namedview3791"
showgrid="false"
inkscape:zoom="1.7126796"
inkscape:cx="356.07349"
inkscape:cy="132.46132"
inkscape:window-x="3200"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg3789"
showguides="true"
inkscape:guide-bbox="true">
<sodipodi:guide
position="10.509846,117.79787"
orientation="1,0"
id="guide4717"
inkscape:locked="false" />
<sodipodi:guide
position="88.019964,219.39306"
orientation="0,1"
id="guide4719"
inkscape:locked="false" />
<sodipodi:guide
position="416.89059,151.51696"
orientation="0,1"
id="guide21702"
inkscape:locked="false" />
<sodipodi:guide
position="219.83096,105.97429"
orientation="0,1"
id="guide21704"
inkscape:locked="false" />
<sodipodi:guide
position="254.42587,56.052518"
orientation="0,1"
id="guide21706"
inkscape:locked="false" />
</sodipodi:namedview>
<g
id="g4690"
transform="translate(-95.026522,-3.0384519)">
<rect
id="rect4612"
width="127"
height="37"
x="194.48441"
y="61.797592"
style="fill:none;stroke:#000000;stroke-width:1.125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
id="text4622"
y="88.499252"
x="198.61234"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.75px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.75px"
y="88.499252"
x="198.61234"
id="tspan4620"
sodipodi:role="line">Provisional</tspan></text>
</g>
<g
id="g4675"
transform="translate(-0.490154,-0.39305957)">
<rect
id="rect4606"
width="127"
height="37"
x="11"
y="11"
style="fill:none;stroke:#000000;stroke-width:1.125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.75px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="45.952637"
y="37.70166"
id="text4630"><tspan
id="tspan4632"
sodipodi:role="line"
x="45.952637"
y="37.70166"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.75px">Draft</tspan></text>
</g>
<g
id="g4700"
transform="translate(26.712527,-17.52529)">
<rect
id="rect4616"
width="127"
height="37"
x="194.92232"
y="172.58888"
style="fill:none;stroke:#000000;stroke-width:1.125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.75px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="199.76997"
y="199.29054"
id="text4638"><tspan
sodipodi:role="line"
id="tspan4636"
x="199.76997"
y="199.29054"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.75px">Withdrawn</tspan></text>
</g>
<g
id="g4695"
transform="translate(-20.143873,-6.5596308)">
<rect
style="fill:none;stroke:#000000;stroke-width:1.125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="113.471"
x="180.90918"
height="37"
width="127"
id="rect4614" />
<text
id="text4642"
y="138.04034"
x="196.46143"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.75px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.75px"
y="138.04034"
x="196.46143"
id="tspan4640"
sodipodi:role="line">Rejected</tspan></text>
</g>
<g
id="g4710"
transform="translate(2.9753917,-0.39303668)">
<rect
style="fill:none;stroke:#000000;stroke-width:1.125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="11"
x="371"
height="37"
width="127"
id="rect3797" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.75px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="409.07324"
y="37.70166"
id="text4646"><tspan
sodipodi:role="line"
id="tspan4644"
x="409.07324"
y="37.70166"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.75px">Final</tspan></text>
</g>
<g
id="g4685"
transform="translate(-1.7850301,-1.7067669)">
<rect
style="fill:none;stroke:#000000;stroke-width:1.125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="12.31373"
x="192.29486"
height="37"
width="127"
id="rect4610" />
<text
id="text4650"
y="36.883068"
x="205.44623"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.75px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.75px"
y="36.883068"
x="205.44623"
id="tspan4648"
sodipodi:role="line">Accepted</tspan></text>
</g>
<g
id="g4680"
transform="translate(-0.490154,12.699399)">
<rect
style="fill:none;stroke:#000000;stroke-width:1.125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="173"
x="11"
height="37"
width="127"
id="rect4608" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.75px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="26.165527"
y="199.70166"
id="text4654"><tspan
sodipodi:role="line"
id="tspan4652"
x="26.165527"
y="199.70166"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.75px">Deferred</tspan></text>
</g>
<flowRoot
xml:space="preserve"
id="flowRoot4656"
style="fill:black;stroke:none;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;font-family:sans-serif;font-style:normal;font-weight:normal;font-size:40px;line-height:125%;letter-spacing:0px;word-spacing:0px"><flowRegion
id="flowRegion4658"><rect
id="rect4660"
width="8.7582054"
height="81.743256"
x="99.843544"
y="115.73779" /></flowRegion><flowPara
id="flowPara4662" /></flowRoot> <g
id="g4715"
transform="translate(2.9753917,12.699399)">
<rect
id="rect4604"
width="127"
height="37"
x="371"
y="173"
style="fill:none;stroke:#000000;stroke-width:1.125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.75px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="400.96826"
y="199.70166"
id="text4666"><tspan
sodipodi:role="line"
id="tspan4664"
x="400.96826"
y="199.70166"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.75px">Active</tspan></text>
</g>
<g
id="g4705"
transform="translate(0,7.4535255)">
<rect
style="fill:none;stroke:#000000;stroke-width:1.125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
y="90.699661"
x="374.46555"
height="37"
width="127"
id="rect4618" />
<text
id="text4670"
y="115.269"
x="387.37521"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.75px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:22px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.75px"
y="115.269"
x="387.37521"
id="tspan4668"
sodipodi:role="line">Replaced</tspan></text>
</g>
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
d="M 17.515858,48.274259 V 183.04703"
id="path4721"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path5309"
d="M 26.545549,185.99111 V 49.504289"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5313)" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3.00000001, 1.5;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker9945)"
d="M 439.22346,47.398438 V 96.65244"
id="path9941"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12309)"
d="m 137.13596,29.727733 h 52.04728"
id="path12305"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path13775"
d="M 318.43082,27.538182 H 370.4781"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker13779)" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker14679)"
d="M 69.843993,48.540525 V 77.774512 H 97.059211"
id="path14669"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path15173"
d="M 55.952177,47.433136 V 123.87614 H 158.23713"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker15177)" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker16749)"
d="M 42.113037,47.312202 V 173.81084 H 220.13598"
id="path16745"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path18059"
d="M 226.35002,69.110911 H 403.09174 V 50.174148"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker18063)" />
<path
inkscape:connector-curvature="0"
id="path24278"
d="m 226.85286,85.449036 h 29.78208 v 20.112814"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3.00000001,1.5;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker24282)" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3.00000001,1.5;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker26466)"
d="M 226.44001,77.758634 H 316.6304 V 153.39305"
id="path26462"
inkscape:connector-curvature="0" />
</svg>

After

Width:  |  Height:  |  Size: 27 KiB

View file

@ -1,14 +0,0 @@
---
title: "Services"
date: "2022-12-22"
---
{{< proposals_table "services" "Accepted" >}}
{{< proposals_table "services" "Active" >}}
{{< proposals_table "services" "Deferred" >}}
{{< proposals_table "services" "Draft" >}}
{{< proposals_table "services" "Final" >}}
{{< proposals_table "services" "Provisional" >}}
{{< proposals_table "services" "Rejected" >}}
{{< proposals_table "services" "Superseded" >}}
{{< proposals_table "services" "Withdrawn" >}}

View file

@ -0,0 +1,14 @@
---
title: "Standards Track"
date: "2023-01-01"
---
{{< proposals_table "std" "Accepted" >}}
{{< proposals_table "std" "Active" >}}
{{< proposals_table "std" "Deferred" >}}
{{< proposals_table "std" "Draft" >}}
{{< proposals_table "std" "Final" >}}
{{< proposals_table "std" "Provisional" >}}
{{< proposals_table "std" "Rejected" >}}
{{< proposals_table "std" "Superseded" >}}
{{< proposals_table "std" "Withdrawn" >}}