Skip to content

Commit a11f342

Browse files
committed
Add VPATCH draft in MMark format for easier editing
0 parents  commit a11f342

27 files changed

Lines changed: 7042 additions & 0 deletions

Makefile

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#
2+
# Makefile to build Internet Drafts using docker image "paulej/rfctools".
3+
#
4+
5+
SRC := $(wildcard draft-*.md)
6+
TXT := $(patsubst %.md,%.txt,$(SRC))
7+
UID := `id -u`
8+
GID := `id -g`
9+
CWD := `pwd`
10+
11+
# Ensure the xml2rfc cache directory exists locally
12+
IGNORE := $(shell mkdir -p $(HOME)/.cache/xml2rfc)
13+
14+
all: $(TXT) $(HTML)
15+
16+
clean:
17+
rm -f draft-*.txt draft-*.xml
18+
19+
%.txt: %.md
20+
docker run --rm \
21+
--user=$(UID):$(GID) \
22+
-v $(CWD):/rfc \
23+
-v $(HOME)/.cache/xml2rfc:/var/cache/xml2rfc \
24+
paulej/rfctools \
25+
md2rfc $^
26+
27+
open:
28+
open *.txt

draft-calconnect-vpatch.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{{sections/00-front.md}}
2+
{{sections/00-abstract.md}}
3+
{{sections/00-open-issues.md}}
4+
5+
{mainmatter}
6+
7+
{{sections/01-intro.md}}
8+
{{sections/02-conventions.md}}
9+
{{sections/03-overview.md}}
10+
{{sections/04-patch.md}}
11+
{{sections/05-icalendar-path.md}}
12+
{{sections/06-add-update-comp.md}}
13+
{{sections/07-add-update-prop.md}}
14+
{{sections/08-delete.md}}
15+
{{sections/09-add-update-propp.md}}
16+
{{sections/10-icalendar-ext.md}}
17+
{{sections/11-additional.md}}
18+
{{sections/12-itip.md}}
19+
{{sections/13-caldav.md}}
20+
{{sections/14-security.md}}
21+
{{sections/15-privacy.md}}
22+
{{sections/16-iana.md}}
23+
{{sections/97-examples.md}}
24+
{{sections/98-references.md}}
25+
{{sections/99-acknowledgements.md}}
26+
27+
{{sections/98-references.md}}
28+
29+
{backmatter}
30+
{{sections/aa-change-history.md}}
31+
{{sections/99-acknowledgements.md}}
32+
{{sections/97-examples.md}}
33+

draft-calconnect-vpatch.txt

Lines changed: 2744 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)