Skip to content

Commit 352106f

Browse files
committed
submitted 00 for ietf httpapi wg
0 parents  commit 352106f

File tree

6 files changed

+996
-0
lines changed

6 files changed

+996
-0
lines changed

CONTRIBUTING.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Contributing
2+
3+
This repository relates to activities in the Internet Engineering Task Force
4+
([IETF](https://www.ietf.org/)). All material in this repository is considered
5+
Contributions to the IETF Standards Process, as defined in the intellectual
6+
property policies of IETF currently designated as
7+
[BCP 78](https://www.rfc-editor.org/info/bcp78),
8+
[BCP 79](https://www.rfc-editor.org/info/bcp79) and the
9+
[IETF Trust Legal Provisions (TLP) Relating to IETF Documents](http://trustee.ietf.org/trust-legal-provisions.html).
10+
11+
Any edit, commit, pull request, issue, comment or other change made to this
12+
repository is considered to be a "Contribution to the IETF Standards Process"
13+
(https://www.ietf.org/).
14+
15+
You agree to comply with all applicable IETF policies and procedures, including,
16+
BCP 78, 79, the TLP, and the TLP rules regarding code components (e.g. being
17+
subject to a Simplified BSD License) in Contributions.
18+
19+
20+
## Other Resources
21+
22+
Discussion of this work occurs on the
23+
[HTTPAPI working group mailing list](https://mailarchive.ietf.org/arch/browse/httpapi/)
24+
([subscribe](https://www.ietf.org/mailman/listinfo/httpapi)). In addition to
25+
contributions on GitHub, you are encouraged to participate in discussions there.
26+
27+
You might also like to familiarize yourself with other
28+
[working group documents](https://datatracker.ietf.org/wg/httpapi/documents/).

LICENSE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# License
2+
3+
See the
4+
[guidelines for contributions](https://github.com/ietf-wg-httpapi/idempotency/blob/main/CONTRIBUTING.md).

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
LIBDIR := lib
2+
include $(LIBDIR)/main.mk
3+
4+
$(LIBDIR)/main.mk:
5+
ifneq (,$(shell grep "path *= *$(LIBDIR)" .gitmodules 2>/dev/null))
6+
git submodule sync
7+
git submodule update $(CLONE_ARGS) --init
8+
else
9+
git clone -q --depth 10 $(CLONE_ARGS) \
10+
-b main https://github.com/martinthomson/i-d-template $(LIBDIR)
11+
endif

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Idempotency-Key Header for HTTP
2+
3+
This is the working area for the HTTPAPI Internet-Draft, "The Idempotency-Key HTTP Header Field".
4+
5+
* [Editor's Copy](https://github.com/ietf-wg-httpapi/idempotency)
6+
* [Latest Published Draft](https://datatracker.ietf.org/doc/html/draft-ietf-httpapi-idempotency-key-header)
7+
* [Published earlier draft versions (`draft-idempotency-header`)](https://tools.ietf.org/html/draft-idempotency-header) (no longer updated)
8+
* [Repo for earlier draft versions (`draft-idempotency-header`)](https://github.com/sdatspun2/idempotency-header) (no longer used)
9+
10+
11+
## Building the Draft
12+
13+
Formatted text and HTML versions of the draft can be built using `make`.
14+
15+
```sh
16+
$ make
17+
```
18+
19+
This requires that you have the necessary software installed. See
20+
[the instructions](https://github.com/martinthomson/i-d-template/blob/master/doc/SETUP.md).
21+
22+
23+
## Contributing
24+
25+
See the
26+
[guidelines for contributions](https://github.com/ietf-wg-httpapi/draft-ietf-httpapi-idempotency-key-header/blob/master/CONTRIBUTING.md).

0 commit comments

Comments
 (0)