Skip to content

Commit

Permalink
Starting rfc6265bis.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikewest committed Sep 30, 2016
1 parent 1503a7b commit 2b4f053
Show file tree
Hide file tree
Showing 2 changed files with 1,541 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ saxpath ?= "lib/saxon9.jar"
saxon ?= java -classpath $(saxpath) net.sf.saxon.Transform -l
kramdown2629 ?= XML_RESOURCE_ORG_PREFIX=https://xml2rfc.tools.ietf.org/public/rfc kramdown-rfc2629

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

TARGETS := $(addsuffix .txt,$(drafts)) \
$(addsuffix .html,$(drafts))
friendly_names := opsec rfc5987bis key client-hints encryption-encoding cookie-prefixes cookie-alone origin-frame cookie-same-site jfv cache-digest
friendly_names := opsec rfc5987bis rfc6265bis key client-hints encryption-encoding cookie-prefixes cookie-alone origin-frame cookie-same-site jfv cache-digest
FRIENDLY := $(addsuffix .txt,$(friendly_names)) \
$(addsuffix .html,$(friendly_names))

Expand Down Expand Up @@ -42,6 +42,9 @@ opsec.%: draft-ietf-httpbis-http2-encryption.%
rfc5987bis.%: draft-ietf-httpbis-rfc5987bis.%
cp -f $< $@

rfc6265bis.%: draft-ietf-httpbis-rfc6265bis.%
cp -f $< $@

key.%: draft-ietf-httpbis-key.%
cp -f $< $@

Expand Down
Loading

0 comments on commit 2b4f053

Please sign in to comment.