Skip to content

Commit

Permalink
5987bis is in RFC edqueue
Browse files Browse the repository at this point in the history
  • Loading branch information
mnot committed Jun 27, 2017
1 parent 35a275f commit d556a1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
7 changes: 2 additions & 5 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 := rfc5987bis rfc6265bis key client-hints cookie-prefixes cookie-alone origin-frame cookie-same-site cache-digest header-structure immutable expect-ct early-hints rand-access-live
names := rfc6265bis key client-hints cookie-prefixes cookie-alone origin-frame cookie-same-site cache-digest header-structure immutable expect-ct early-hints rand-access-live
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 := rfc5987bis rfc6265bis key client-hints cookie-prefixes cookie-alone origin-frame cookie-same-site cache-digest header-structure immutable expect-ct early-hints rand-access-live
friendly_names := rfc6265bis key client-hints cookie-prefixes cookie-alone origin-frame cookie-same-site cache-digest header-structure immutable expect-ct early-hints rand-access-live
FRIENDLY := $(addsuffix .txt,$(friendly_names)) \
$(addsuffix .html,$(friendly_names))

Expand All @@ -36,9 +36,6 @@ clean:
-rm -f $(addsuffix *-[0-9][0-9].xml,$(drafts))
-rm -f $(addsuffix *.html,$(drafts))

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

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

Expand Down
File renamed without changes.

0 comments on commit d556a1d

Please sign in to comment.