Internet-Draft | SVG Tests | March 2020 |
Fossati | Expires 11 September 2020 | [Page] |
This memo is for experimenting with SVG in the context of RFC production.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 11 September 2020.¶
Copyright (c) 2020 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.¶
This memo is for experimenting with SVG in the context of RFC production.¶
This document assumes a kramdown-rfc2629 based editing flow.¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
The code is structured as follows:¶
├── Makefile ├── art │ ├── cdni-delegation.ascii-art │ ├── cdni-dns-redirection.ascii-art │ ├── e2e-flow.ascii-art │ ├── stir-delegation.ascii-art │ └── stir-delegation.svg └── draft-fossati-svg-test.md¶
In particular, the art directory contains the diagrams in ASCII art.¶
The Makefile contains bunch of variables and a pattern rule to deal with automatic generation of SVG from ASCII using a Golang tool called goat. Another tool, svgcheck, is used to make sure xml2rfc will like the SVG.¶
# The "art" variables: art_src := $(wildcard $(art_dir)/*.ascii-art) art_svg := $(art_src:.ascii-art=.svg) # The pattern rule used to transform each and every ASCII # art into SVG: %.svg: %.ascii-art @$(goat) $< | $(svgcheck) -r -o $@ 2>/dev/null || true¶
To install goat and svgcheck, do:¶
$ go get github.com/blampe/goat $ pip install svgcheck¶
The Submit tool on the Datatracker wants the submitted XML to be self contained.¶
To inline the diagrams you need to do the following:¶
$ kramdown-rfc2629 --v3 \ draft-fossati-svg-test.md > draft-fossati-svg-test.xml $ xml2rfc --v3 --preptool draft-fossati-svg-test.xml $ xml2rfc --v3 --expand draft-fossati-svg-test.prepped.xml $ mv draft-fossati-svg-test.prepped.exp.xml \ draft-fossati-svg-test.xml $ rm -f draft-fossati-svg-test.prepped.xml¶
The "prepped" and "expanded" draft-fossati-svg-test.xml inlines both the ASCII and the SVG in the artset and is ready for submission.¶
Of course, from there you can also do the usual TXT / HTML generation:¶
$ xml2rfc --v3 draft-fossati-svg-test.xml \ draft-fossati-svg-test.txt $ xml2rfc --v3 --html draft-fossati-svg-test.xml \ draft-fossati-svg-test.html¶
kramdown does not support artset natively. So the artset must be inserted using native xml2rfc syntax. The SVG is included in artwork as a local file. The SVG file is created from its ASCII art equivalent as explained in Section 3.¶
<t> <figure anchor="fig-endtoend" title="End to end STAR delegation flow"> <artset> <artwork type="ascii-art" src="art/e2e-flow.ascii-art" /> <artwork type="svg" src="art/e2e-flow.svg" /> </artset> </figure> </t>¶
<t> <figure anchor="fig-cdni-dns-redirection" title="DNS Redirection"> <artset> <artwork type="ascii-art" src="art/cdni-dns-redirection.ascii-art" /> <artwork type="svg" src="art/cdni-dns-redirection.svg" /> </artset> </figure> </t>¶
<t> <figure anchor="fig-cdni-flow" title="Two levels delegation in CDNI"> <artset> <artwork type="ascii-art" src="art/cdni-delegation.ascii-art" /> <artwork type="svg" src="art/cdni-delegation.svg" /> </artset> </figure> </t>¶
<t> <figure anchor="fig-stir-flow" title="Delegation in STIR"> <artset> <artwork type="ascii-art" src="art/stir-delegation.ascii-art" /> <artwork type="svg" src="art/stir-delegation.svg" /> </artset> </figure> </t>¶
No requests are made to IANA.¶
There are none.¶
Yaron for pointing out the current limitations in the tooling and providing the workaround.¶