Skip to content

Commit 35cf27c

Browse files
Merge branch 'master' into reschke-patch-3
2 parents 24e3720 + e273a04 commit 35cf27c

16 files changed

+428
-261
lines changed

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ saxpath ?= "lib/saxon9.jar"
33
saxon ?= java -classpath $(saxpath) net.sf.saxon.Transform -l
44
kramdown2629 ?= XML_RESOURCE_ORG_PREFIX=https://xml2rfc.tools.ietf.org/public/rfc kramdown-rfc2629
55

6-
names := http2-encryption rfc5987bis rfc6265bis key client-hints encryption-encoding cookie-prefixes cookie-alone origin-frame cookie-same-site cache-digest header-structure
6+
names := http2-encryption rfc5987bis rfc6265bis key client-hints encryption-encoding cookie-prefixes cookie-alone origin-frame cookie-same-site cache-digest header-structure immutable
77
drafts := $(addprefix draft-ietf-httpbis-,$(names))
88
last_tag = $(shell git tag | grep "$(draft)" | sort | tail -1 | awk -F- '{print $$NF}')
99
next_ver = $(if $(last_tag),$(shell printf "%.2d" $$(( 1$(last_tag) - 99)) ),00)
1010
next := $(foreach draft, $(drafts), $(draft)-$(next_ver))
1111

1212
TARGETS := $(addsuffix .txt,$(drafts)) \
1313
$(addsuffix .html,$(drafts))
14-
friendly_names := opsec rfc5987bis rfc6265bis key client-hints encryption-encoding cookie-prefixes cookie-alone origin-frame cookie-same-site cache-digest header-structure
14+
friendly_names := opsec rfc5987bis rfc6265bis key client-hints encryption-encoding cookie-prefixes cookie-alone origin-frame cookie-same-site cache-digest header-structure immutable
1515
FRIENDLY := $(addsuffix .txt,$(friendly_names)) \
1616
$(addsuffix .html,$(friendly_names))
1717

@@ -72,6 +72,9 @@ cache-digest.%: draft-ietf-httpbis-cache-digest.%
7272
header-structure.%: draft-ietf-httpbis-header-structure.%
7373
cp -f $< $@
7474

75+
immutable.%: draft-ietf-httpbis-immutable.%
76+
cp -f $< $@
77+
7578
define makerule_submit_xml =
7679
$(1)
7780
sed -e"s/$$(basename $$<)-latest/$$(basename $$@)/" $$< > $$@

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ guidelines](CONTRIBUTING.md) for information about how to participate.
77

88
[![Build Status](https://travis-ci.org/httpwg/http-extensions.svg?branch=master)](https://travis-ci.org/httpwg/http-extensions)
99

10+
11+
### Header Common Structure
12+
13+
* [Editors' Draft](https://httpwg.github.io/http-extensions/header-structure.html) ([plain text](https://httpwg.github.io/http-extensions/header-structure.txt))
14+
* [Working Group Draft](https://tools.ietf.org/html/draft-ietf-httpbis-header-structure) (less recent, more official)
15+
* [Open Issues](https://github.com/httpwg/http-extensions/issues?q=is%3Aopen+is%3Aissue+label%3Aheader-structure) / [Document Status](https://datatracker.ietf.org/doc/draft-ietf-httpbis-header-structure/)
16+
17+
### Immutable Responses
18+
19+
* [Editors' Draft](https://httpwg.github.io/http-extensions/immutable.html) ([plain text](https://httpwg.github.io/http-extensions/immutable.txt))
20+
* [Working Group Draft](https://tools.ietf.org/html/draft-ietf-httpbis-immutable) (less recent, more official)
21+
* [Open Issues](https://github.com/httpwg/http-extensions/issues?q=is%3Aopen+is%3Aissue+label%3Aimmutable) / [Document Status](https://datatracker.ietf.org/doc/draft-ietf-httpbis-immutable/)
22+
23+
1024
### Cache Digest
1125

1226
* [Editors' Draft](https://httpwg.github.io/http-extensions/cache-digest.html) ([plain text](https://httpwg.github.io/http-extensions/cache-digest.txt))
@@ -52,7 +66,7 @@ _Parked; waiting for implementation feedback._
5266

5367
### Character Encoding and Language for Parameters
5468

55-
_Working Group Last Call ended; waiting for writeup._
69+
_Submitted to IESG._
5670

5771
* [Editors' Draft](https://httpwg.github.io/http-extensions/rfc5987bis.html) ([plain text](https://httpwg.github.io/http-extensions/rfc5987bis.txt))
5872
* [Working Group Draft](https://tools.ietf.org/html/draft-ietf-httpbis-rfc5987bis) (less recent, more official)

draft-ietf-httpbis-cache-digest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Cache Digests for HTTP/2
33
docname: draft-ietf-httpbis-cache-digest-latest
4-
date: 2016
4+
date: 2017
55
category: std
66

77
ipr: trust200902

draft-ietf-httpbis-client-hints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: HTTP Client Hints
33
abbrev:
44
docname: draft-ietf-httpbis-client-hints-latest
5-
date: 2016
5+
date: 2017
66
category: exp
77

88
ipr: trust200902

draft-ietf-httpbis-cookie-alone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Deprecate modification of 'secure' cookies from non-secure origins
33
abbrev: Leave Secure Cookies Alone
44
docname: draft-ietf-httpbis-cookie-alone-latest
5-
date: 2016
5+
date: 2017
66
category: std
77
updates: 6265
88

draft-ietf-httpbis-cookie-prefixes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Cookie Prefixes
33
docname: draft-ietf-httpbis-cookie-prefixes-00
4-
date: 2016
4+
date: 2017
55
category: std
66
updates: 6265
77

draft-ietf-httpbis-cookie-same-site.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Same-Site Cookies
33
docname: draft-ietf-httpbis-cookie-same-site-latest
4-
date: 2016
4+
date: 2017
55
category: std
66
updates: 6265
77

0 commit comments

Comments
 (0)