From 4ef6c0e151ad77142e876213238037f6f8763396 Mon Sep 17 00:00:00 2001 From: ID Bot Date: Wed, 22 Feb 2023 09:03:35 +0000 Subject: [PATCH] Setup repository for draft-ietf-add-resolver-info using https://github.com/martinthomson/i-d-template --- .editorconfig | 8 ++++++++ .github/CODEOWNERS | 3 +++ .gitignore | 23 +++++++++++++++++++++++ .note.xml | 7 +++++++ CONTRIBUTING.md | 31 +++++++++++++++++++++++++++++++ LICENSE.md | 4 ++++ Makefile | 11 +++++++++++ README.md | 30 ++++++++++++++++++++++++++++++ 8 files changed, 117 insertions(+) create mode 100644 .editorconfig create mode 100644 .github/CODEOWNERS create mode 100644 .gitignore create mode 100644 .note.xml create mode 100644 CONTRIBUTING.md create mode 100644 LICENSE.md create mode 100644 Makefile create mode 100644 README.md diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..8682023 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +# See http://editorconfig.org + +root = true + +[*.{md,xml,org}] +charset = utf-8 +insert_final_newline = true +trim_trailing_whitespace = true diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..7be1669 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,3 @@ +# Automatically generated CODEOWNERS +# Regenerate with `make update-codeowners` +draft-ietf-add-resolver-info.md kondtir@gmail.com mohamed.boucadair@orange.com diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b89bc76 --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +*.html +*.pdf +*.redxml +*.swp +*.txt +*.upload +*~ +.tags +/*-[0-9][0-9].xml +/.gems/ +/.refcache +/.targets.mk +/.venv/ +/.vscode/ +/lib +/node_modules/ +/versioned/ +Gemfile.lock +archive.json +draft-ietf-add-resolver-info.xml +package-lock.json +report.xml +!requirements.txt diff --git a/.note.xml b/.note.xml new file mode 100644 index 0000000..c8ef1e9 --- /dev/null +++ b/.note.xml @@ -0,0 +1,7 @@ + +Discussion of this document takes place on the + Adaptive DNS Discovery Working Group mailing list (add@ietf.org), + which is archived at . +Source for this draft and an issue tracker can be found at + . + diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..c7503a6 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,31 @@ +# Contributing + +This repository relates to activities in the Internet Engineering Task Force +([IETF](https://www.ietf.org/)). All material in this repository is considered +Contributions to the IETF Standards Process, as defined in the intellectual +property policies of IETF currently designated as +[BCP 78](https://www.rfc-editor.org/info/bcp78), +[BCP 79](https://www.rfc-editor.org/info/bcp79) and the +[IETF Trust Legal Provisions (TLP) Relating to IETF Documents](http://trustee.ietf.org/trust-legal-provisions.html). + +Any edit, commit, pull request, issue, comment or other change made to this +repository constitutes Contributions to the IETF Standards Process +(https://www.ietf.org/). + +You agree to comply with all applicable IETF policies and procedures, including, +BCP 78, 79, the TLP, and the TLP rules regarding code components (e.g. being +subject to a Simplified BSD License) in Contributions. +## Working Group Information + +Discussion of this work occurs on the [Adaptive DNS Discovery +Working Group mailing list](mailto:add@ietf.org) +([archive](https://mailarchive.ietf.org/arch/browse/add/), +[subscribe](https://www.ietf.org/mailman/listinfo/add)). +In addition to contributions in GitHub, you are encouraged to participate in +discussions there. + +**Note**: Some working groups adopt a policy whereby substantive discussion of +technical issues needs to occur on the mailing list. + +You might also like to familiarize yourself with other +[Working Group documents](https://datatracker.ietf.org/wg/add/documents/). diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..9ae566c --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,4 @@ +# License + +See the +[guidelines for contributions](https://github.com/boucadair/add-resolver-information/blob/main/CONTRIBUTING.md). diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..de46d56 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +LIBDIR := lib +include $(LIBDIR)/main.mk + +$(LIBDIR)/main.mk: +ifneq (,$(shell grep "path *= *$(LIBDIR)" .gitmodules 2>/dev/null)) + git submodule sync + git submodule update $(CLONE_ARGS) --init +else + git clone -q --depth 10 $(CLONE_ARGS) \ + -b main https://github.com/martinthomson/i-d-template $(LIBDIR) +endif diff --git a/README.md b/README.md new file mode 100644 index 0000000..4b21bc4 --- /dev/null +++ b/README.md @@ -0,0 +1,30 @@ +# DNS Resolver Information + +This is the working area for the IETF [ADD Working Group](https://datatracker.ietf.org/wg/add/documents/) Internet-Draft, "DNS Resolver Information". + +* [Editor's Copy](https://boucadair.github.io/add-resolver-information/#go.draft-ietf-add-resolver-info.html) +* [Datatracker Page](https://datatracker.ietf.org/doc/draft-ietf-add-resolver-info) +* [Working Group Draft](https://datatracker.ietf.org/doc/html/draft-ietf-add-resolver-info) +* [Compare Editor's Copy to Working Group Draft](https://boucadair.github.io/add-resolver-information/#go.draft-ietf-add-resolver-info.diff) + + +## Contributing + +See the +[guidelines for contributions](https://github.com/boucadair/add-resolver-information/blob/main/CONTRIBUTING.md). + +Contributions can be made by creating pull requests. +The GitHub interface supports creating pull requests using the Edit (✏) button. + + +## Command Line Usage + +Formatted text and HTML versions of the draft can be built using `make`. + +```sh +$ make +``` + +Command line usage requires that you have the necessary software installed. See +[the instructions](https://github.com/martinthomson/i-d-template/blob/main/doc/SETUP.md). +